소스 검색

Merge branch '陈航-其他安全检查提交' of sckj/mz-cloud into master

953954216 2 년 전
부모
커밋
3aed57bb27
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      ruoyi-ui/src/views/business/fwjggl/ajgsx/qtaqjc/index.vue

+ 5 - 3
ruoyi-ui/src/views/business/fwjggl/ajgsx/qtaqjc/index.vue

@@ -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 = '详情'
       })