diff --git a/src/views/canteen/accountCenter/account/accountManager/index.vue b/src/views/canteen/accountCenter/account/accountManager/index.vue index bf388814..1a88ab18 100644 --- a/src/views/canteen/accountCenter/account/accountManager/index.vue +++ b/src/views/canteen/accountCenter/account/accountManager/index.vue @@ -555,6 +555,7 @@ import { updateAccRechargeSingleApi,checkAccRechargeBatchApi,updateAccRechargeBatchApi } from "@/api/accountCenter/butie"; import { rechargeAccWalletApi,withdrawAccWalletApi } from "@/api/accountCenter/manager"; import { accCardApi } from "@/api/accountCenter/card"; + import { decryptWithSM4,encryptWithSM4 } from '@/utils/sm'; export default { name: "", dicts: ['sys_user_type'], @@ -695,6 +696,9 @@ accInfoPageApi(param).then(response => { this.tableListData = response.rows; this.total = Number(response.total); + this.tableListData.forEach(item=>{ + this.$set(item,"phoneNumber",decryptWithSM4(item.phoneNumber)) + }) accInfoSumPageApi(param).then(response => { this.tableListData.push(response.data) }); diff --git a/src/views/canteen/accountCenter/account/tradeRecords/index.vue b/src/views/canteen/accountCenter/account/tradeRecords/index.vue index 95542974..82498cd5 100644 --- a/src/views/canteen/accountCenter/account/tradeRecords/index.vue +++ b/src/views/canteen/accountCenter/account/tradeRecords/index.vue @@ -129,6 +129,7 @@