Blame view

src/views/xtjk/czrz/components/viewDialog.vue 901 Bytes
1 2 3 4
<!--
 * @Autor: renchao
 * @LastEditTime: 2023-04-13 10:31:50
-->
蔡俊立 committed
5 6 7
<template>
  <div>
    <el-row :gutter="8">
8 9 10 11
      <el-col :span="16">
        api接口地址:
        <el-input v-model="formData.apiUri"></el-input>
      </el-col>
蔡俊立 committed
12 13
    </el-row>
    <el-row :gutter="8">
14 15 16 17
      <el-col :span="24" class="margin-top-middle">
        操作人员:
        <el-input v-model="formData.creater"></el-input>
      </el-col>
蔡俊立 committed
18 19
    </el-row>
    <el-row :gutter="8">
20 21 22 23
      <el-col :span="24" class="margin-top-middle">
        操作内容:
        <el-input type="textarea" :rows="10" v-model="formData.cznr"></el-input>
      </el-col>
蔡俊立 committed
24 25 26 27 28 29 30 31
    </el-row>
  </div>
</template>
<script>
export default {
  props: {
    formData: {
      type: Object,
32 33 34 35
      default: () => { }
    }
  }
}
蔡俊立 committed
36 37 38
</script>
<style scoped lang='scss'>
@import "~@/styles/public.scss";
39

蔡俊立 committed
40
.margin-top-middle {
41
  margin-top: 10px
蔡俊立 committed
42 43
}
</style>