|
@@ -654,7 +654,7 @@ export default {
|
|
|
this.reset()
|
|
|
const id = row.id || this.ids
|
|
|
this.request.getQtaqzc(id).then(response => {
|
|
|
- this.form = response.data
|
|
|
+ this.form = decryptData_ECB(response.data, ["jcr", "zgzrr"], [1, 1]);
|
|
|
this.fixation = response.data
|
|
|
/****** sks 需要改动的地方 start ******/
|
|
|
this.copyForm = this.deepCopy(response.data)
|
|
@@ -666,8 +666,10 @@ export default {
|
|
|
handleUpdateXQ(row) {
|
|
|
const id = row.id || this.ids
|
|
|
this.request.getQtaqzc(id).then(response => {
|
|
|
- this.fixation = response.data
|
|
|
- this.form = response.data
|
|
|
+ this.fixation = decryptData_ECB(response.data, ["jcr", "zgzrr"], [1, 1]);
|
|
|
+ this.form = decryptData_ECB(response.data, ["jcr", "zgzrr"], [1, 1]);
|
|
|
+ // this.fixation = response.data
|
|
|
+ // this.form = response.data
|
|
|
this.openXQ = true
|
|
|
this.title = '详情'
|
|
|
})
|