Bladeren bron

修改弹窗文字问题

修改弹窗文字问题
Liao 1 jaar geleden
bovenliggende
commit
649eefa0ae

+ 1 - 1
src/pages/index/components/credential_management_function.vue

@@ -118,7 +118,7 @@ export default {
118 118
       },
119 119
       handleEdit(row) {
120 120
         this.title = '修改凭证'
121
-        this.formLabelAlign = row
121
+        this.formLabelAlign = {...row}
122 122
         this.dialogVisible = true
123 123
       },
124 124
       handleAdd () {

+ 5 - 5
src/pages/index/components/data_docking.vue

@@ -7,15 +7,15 @@
7 7
       <form action="/dash/data/docking/save" method="post" name="form1">
8 8
         <h4 style="color: #FFFFFF">模块名称</h4>
9 9
         <br>
10
-        <el-input style="margin-bottom: 10px" v-model="formLabelAlign.moduleName" placeholder="模块名称" name="moduleName"></el-input>
10
+        <el-input style="margin-bottom: 10px"  placeholder="模块名称" name="moduleName"></el-input>
11 11
         <br>
12 12
         <h4 style="color: #FFFFFF">接口地址</h4>
13 13
         <br>
14
-        <el-input style="margin-bottom: 10px" v-model="formLabelAlign.apiUrl" placeholder="接口地址" name="apiUrl"></el-input>
14
+        <el-input style="margin-bottom: 10px" placeholder="接口地址" name="apiUrl"></el-input>
15 15
         <br>
16 16
         <h4 style="color: #FFFFFF">api秘钥</h4>
17 17
         <br>
18
-        <el-input style="margin-bottom: 10px" v-model="formLabelAlign.apiKey" placeholder="api秘钥" name="apiKey"></el-input>
18
+        <el-input style="margin-bottom: 10px" placeholder="api秘钥" name="apiKey"></el-input>
19 19
         <br>
20 20
           <el-button class="btn_save" type="primary" @click="handleConfirm">保存配置</el-button>
21 21
       </form>
@@ -115,7 +115,7 @@ export default {
115 115
       this.getTableData()
116 116
     },
117 117
     handleAudit(row) {
118
-      this.selRow = row
118
+      this.selRow = {...row}
119 119
       this.dialogVisible = true
120 120
     },
121 121
     handleCancelApply(row) {
@@ -123,7 +123,7 @@ export default {
123 123
     },
124 124
     handleEdit(row) {
125 125
       this.title = '修改配置'
126
-      this.formLabelAlign = row
126
+      this.formLabelAlign = {...row}
127 127
       this.dialogVisible = true
128 128
     },
129 129
     deleteRow (record) {

+ 1 - 1
src/pages/index/components/ip_white_list.vue

@@ -105,7 +105,7 @@ export default {
105 105
     },
106 106
     handleEdit(row) {
107 107
       this.title = '修改白名单'
108
-      this.formLabelAlign = row
108
+      this.formLabelAlign = {...row}
109 109
       this.dialogVisible = true
110 110
     },
111 111
     indexMethod(index) {

+ 1 - 1
src/pages/index/components/personalized_configuration.vue

@@ -144,7 +144,7 @@ export default {
144 144
     },
145 145
     handleEdit(row) {
146 146
       this.title = '配置'
147
-      this.formLabelAlign = row
147
+      this.formLabelAlign = {...row}
148 148
       this.dialogVisible = true
149 149
     },
150 150
     handleConfirm() {

+ 1 - 1
src/pages/index/components/support.vue

@@ -100,7 +100,7 @@ export default {
100 100
     },
101 101
     handleAudit(row) {
102 102
       this.title = '修改技术支持'
103
-      this.formLabelAlign= row
103
+      this.formLabelAlign= {...row}
104 104
       this.dialogVisible = true
105 105
     },
106 106
     deleteRow (record) {