浏览代码

修改弹窗文字问题

修改弹窗文字问题
Liao 1 年之前
父节点
当前提交
649eefa0ae

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

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

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

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

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

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

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

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

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

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