a43f28a2 by 任超

style:bug修改

1 parent 092e13f5
1 <template> 1 <template>
2 <div> 2 <div>
3 <dialogBox title="查询权利信息" @submitForm="submitForm" saveButton="发起申请" width="85%" @closeDialog="closeDialog" 3 <dialogBox title="查询权利信息" @submitForm="submitForm" saveButton="发起申请" width="85%" @closeDialog="closeDialog"
4 v-model="value"> 4 v-model="myValue">
5 <div class="from-clues"> 5 <div class="from-clues">
6 <!-- 表单部分 --> 6 <!-- 表单部分 -->
7 <div class="from-clues-header"> 7 <div class="from-clues-header">
...@@ -80,13 +80,15 @@ export default { ...@@ -80,13 +80,15 @@ export default {
80 }, 80 },
81 bdcdyid: '', 81 bdcdyid: '',
82 bdcdyh: '', 82 bdcdyh: '',
83 myValue: this.value,
83 }; 84 };
84 }, 85 },
85 mounted () { 86 mounted () {
86 sendThis(this); 87 sendThis(this);
87 }, 88 },
88 watch: { 89 watch: {
89 value () { 90 value (val) {
91 this.myValue = val
90 this.fetchData() 92 this.fetchData()
91 }, 93 },
92 }, 94 },
......