Blame view

src/views/xtjk/cwrz/components/viewDialog.vue 1.15 KB
1 2 3 4 5
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-04-13 10:24:49
-->
蔡俊立 committed
6 7 8
<template>
  <div>
    <el-row :gutter="8">
9 10
      api接口地址:
      <el-input v-model="formData.apiUri" class="width100"></el-input>
蔡俊立 committed
11 12
    </el-row>
    <el-row :gutter="8">
13 14 15 16
      <el-col :span="24" class="margin-top-middle">
        传入参数:
        <el-input type="textarea" :rows="4" v-model="formData.crcs"></el-input>
      </el-col>
蔡俊立 committed
17 18
    </el-row>
    <el-row :gutter="8">
19 20 21 22
      <el-col :span="24" class="margin-top-middle">
        错误内容:
        <el-input type="textarea" :rows="10" v-model="formData.cwnr"></el-input>
      </el-col>
蔡俊立 committed
23 24
    </el-row>
    <el-row :gutter="8">
25 26 27 28
      <el-col :span="24" class="margin-top-middle">
        错误位置:
        <el-input type="textarea" :rows="10" v-model="formData.cwdmwz"></el-input>
      </el-col>
蔡俊立 committed
29 30 31 32 33 34 35 36
    </el-row>
  </div>
</template>
<script>
export default {
  props: {
    formData: {
      type: Object,
37
      default: () => { }
蔡俊立 committed
38 39
    },
  },
40 41
  created () {
    console.log(this.formData);
蔡俊立 committed
42 43 44 45 46
  },
};
</script>
<style scoped lang='scss'>
@import "~@/styles/public.scss";
47

蔡俊立 committed
48
.margin-top-middle {
49
  margin-top: 10px
蔡俊立 committed
50 51
}
</style>