|
@@ -111,6 +111,8 @@ import {defineComponent,getCurrentInstance,reactive} from "vue";
|
|
|
import { ElMessageBox } from 'element-plus'
|
|
|
import {gettreedata,jcxxList} from "@/api/home";
|
|
|
import {mapState} from 'vuex';
|
|
|
+import {encrypt_ECB,decrypt_ECB,encrypt_CBC,decrypt_CBC,encrypt_ECBA} from "@/api/tool/sm4";
|
|
|
+
|
|
|
let MyDict= {};
|
|
|
export default {
|
|
|
setup() {
|
|
@@ -342,8 +344,15 @@ export default {
|
|
|
szxzqh: this.formLabelAlign.szxzqh
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
jcxxList(quer).then(response => {
|
|
|
this.jgList = response.rows;
|
|
|
+ for (let i = 0; i <this.jgList.length ; i++) {
|
|
|
+ this.jgList[i].txdz= decrypt_ECB( this.jgList[i].txdz);
|
|
|
+ this.jgList[i].frlxfs= decrypt_ECB( this.jgList[i].frlxfs);
|
|
|
+ }
|
|
|
this.totalcount=response.total;
|
|
|
});
|
|
|
},
|