|
@@ -96,7 +96,7 @@
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>单位通信地址</td>
|
|
|
- <td colspan="3">{{fixation.txdz}}</td>
|
|
|
+ <td colspan="3">{{fixation.szxzqhName + fixation.txdz}}</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="tdX">消防安全负责人姓名(法定代表人或主要负责人)</td>
|
|
@@ -672,6 +672,7 @@ export default {
|
|
|
]
|
|
|
},
|
|
|
fixation: {},
|
|
|
+ decodeStr:{},
|
|
|
// xfsspbqk:null,
|
|
|
pbqk: [],
|
|
|
pbqkqt: null,
|
|
@@ -824,8 +825,15 @@ export default {
|
|
|
},
|
|
|
selectYlJgMsg() {
|
|
|
selectYlJgMsg().then(response => {
|
|
|
- // this.fixation = response.data
|
|
|
- this.fixation = decryptData_ECB(response.data, ["frxm", "frlxfs", "frzjhm","txdz"], [1, 3, 2, 4]);
|
|
|
+ this.fixation = response.data
|
|
|
+ this.decodeStr = {
|
|
|
+ frxm: decrypt_ECB(response.data.frxm),
|
|
|
+ frzjhm: decrypt_ECB(response.data.frzjhm),
|
|
|
+ frlxfs: decrypt_ECB(response.data.frlxfs),
|
|
|
+ txdz: decrypt_ECB(response.data.txdz),
|
|
|
+ }
|
|
|
+ console.log(this.decodeStr);
|
|
|
+ // this.fixation = decryptData_ECB(response.data, ["frxm", "frzjhm", "frlxfs","txdz"], [1, 2, 3, 4]);
|
|
|
})
|
|
|
},
|
|
|
rightList() {
|
|
@@ -1074,20 +1082,6 @@ export default {
|
|
|
}
|
|
|
if (valid) {
|
|
|
this.hold('2');
|
|
|
- // this.submitFormLoading = true;
|
|
|
- // if (this.form.id != null) {
|
|
|
- // updateXfaqzcxx({ ...this.form, zt: '2', pbqk: this.form.pbqk.join(',') }).then(response => {
|
|
|
- // this.$modal.msgSuccess('修改成功')
|
|
|
- // this.open = false
|
|
|
- // this.getList()
|
|
|
- // }).finally(()=>this.submitFormLoading =false);
|
|
|
- // } else {
|
|
|
- // addXfaqzcxx({ ...this.form, zt: '2', pbqk: this.form.pbqk.join(',') }).then(response => {
|
|
|
- // this.$modal.msgSuccess('新增成功')
|
|
|
- // this.open = false
|
|
|
- // this.getList()
|
|
|
- // }).finally(()=>this.submitFormLoading =false);
|
|
|
- // }
|
|
|
}
|
|
|
})
|
|
|
},
|