|
@@ -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) {
|