|
@@ -613,7 +613,7 @@ export default {
|
|
this.queryParams.params["endSbrq"] = this.daterangeSbrq[1];
|
|
this.queryParams.params["endSbrq"] = this.daterangeSbrq[1];
|
|
}
|
|
}
|
|
listXmsbCommon(this.queryParams).then((response) => {
|
|
listXmsbCommon(this.queryParams).then((response) => {
|
|
- this.xmsbCommonList = response.rows;
|
|
|
|
|
|
+ this.xmsbCommonList = decryptRowData_ECB(response.rows, ["sbr", "sbrdh", "sbryx", "xmlxr", "xmlxrdh", "xmlxryx"], [1, 3, 5, 1, 3, 5]);
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
@@ -756,7 +756,7 @@ export default {
|
|
this.kzList = [];
|
|
this.kzList = [];
|
|
const id = row.id || this.ids;
|
|
const id = row.id || this.ids;
|
|
getXmsbCommon(id).then((response) => {
|
|
getXmsbCommon(id).then((response) => {
|
|
- this.form = response.data;
|
|
|
|
|
|
+ this.form = decryptData_ECB(response.data, ["sbr", "sbrdh", "sbryx", "xmlxr", "xmlxrdh", "xmlxryx"], [1, 3, 5, 1, 3, 5]);
|
|
if (this.form.szdq) {
|
|
if (this.form.szdq) {
|
|
this.form.szdq = JSON.stringify(this.form.szdq.split(","));
|
|
this.form.szdq = JSON.stringify(this.form.szdq.split(","));
|
|
} else {
|
|
} else {
|
|
@@ -772,7 +772,7 @@ export default {
|
|
this.resetXq();
|
|
this.resetXq();
|
|
const id = row.id || this.ids;
|
|
const id = row.id || this.ids;
|
|
getXmsbCommon(id).then((response) => {
|
|
getXmsbCommon(id).then((response) => {
|
|
- this.xqForm = response.data;
|
|
|
|
|
|
+ this.xqForm = decryptData_ECB(response.data, ["sbr", "sbrdh", "sbryx", "xmlxr", "xmlxrdh", "xmlxryx"], [1, 3, 5, 1, 3, 5]);
|
|
this.openXq = true;
|
|
this.openXq = true;
|
|
this.changFormXmlxXq(this.xqForm.xmlx);
|
|
this.changFormXmlxXq(this.xqForm.xmlx);
|
|
});
|
|
});
|
|
@@ -782,7 +782,7 @@ export default {
|
|
this.reset();
|
|
this.reset();
|
|
const id = row.id || this.ids;
|
|
const id = row.id || this.ids;
|
|
getXmsbCommon(id).then((response) => {
|
|
getXmsbCommon(id).then((response) => {
|
|
- this.form = response.data;
|
|
|
|
|
|
+ this.form = decryptData_ECB(response.data, ["sbr", "sbrdh", "sbryx", "xmlxr", "xmlxrdh", "xmlxryx"], [1, 3, 5, 1, 3, 5]);
|
|
this.shform.sbId = this.form.id;
|
|
this.shform.sbId = this.form.id;
|
|
this.shOpen = true;
|
|
this.shOpen = true;
|
|
this.shTitle = "审核项目申报信息";
|
|
this.shTitle = "审核项目申报信息";
|