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