From 5066d14e034e28bc10fd217450255d8e1348a5b0 Mon Sep 17 00:00:00 2001 From: "luoJunYong.123" Date: Mon, 24 Jan 2022 11:24:03 +0800 Subject: [PATCH] update --- src/components/case/index.vue | 11 ++++++ src/pages/counter/list/index.vue | 22 +++++------ .../currentAccount/accountCancellation.vue | 16 ++++++-- .../list/personal/currentAccount/deposit.vue | 31 ++++++++++----- .../personal/currentAccount/openAccount.vue | 38 ++++++++++++++++--- .../list/personal/currentAccount/settle.vue | 18 +++++++-- .../currentAccount/transferAccounts.vue | 16 +++++--- .../personal/currentAccount/withdrawal.vue | 32 ++++++++++------ .../list/personal/timeDeposit/openAccount.vue | 35 +++++++++++------ src/utils/utilFunction.js | 18 ++++++--- 10 files changed, 170 insertions(+), 67 deletions(-) diff --git a/src/components/case/index.vue b/src/components/case/index.vue index 7683520..98b794d 100644 --- a/src/components/case/index.vue +++ b/src/components/case/index.vue @@ -543,6 +543,17 @@ export default { this.loading = true; submit(params).then((data)=>{ if(data.status == 200){ + // 清空缓存 + let token = sessionStorage.getItem('token') + let cid = sessionStorage.getItem('cid') + let systemId = sessionStorage.getItem('systemId') + let projectId = sessionStorage.getItem('projectId') + sessionStorage.clear() + sessionStorage.setItem('token', token) + sessionStorage.setItem('cid', cid) + sessionStorage.setItem('systemId', systemId) + sessionStorage.setItem('projectId', projectId) + // 初始化vuex中的state this.initState(); let datas= data.data.retMap.scoreInfo; diff --git a/src/pages/counter/list/index.vue b/src/pages/counter/list/index.vue index 6ca23ee..dbe8284 100644 --- a/src/pages/counter/list/index.vue +++ b/src/pages/counter/list/index.vue @@ -124,10 +124,10 @@
- + - +
@@ -1005,16 +1005,16 @@ export default { console.log('新的id值') console.log(newVal) }, - 'passwordForm.password'(newVal) { - // passwordForm:{ - // password:'', - // passwordAgain: '' - // }, + // 'passwordForm.password'(newVal) { + // // passwordForm:{ + // // password:'', + // // passwordAgain: '' + // // }, - this.passwordForm.passwordAgain = newVal - console.log('???xxxxxxxxxx') - console.log(this.passwordForm.passwordAgain) - } + // this.passwordForm.passwordAgain = newVal + // console.log('???xxxxxxxxxx') + // console.log(this.passwordForm.passwordAgain) + // } }, created() { let arr = this.$route.path.split('/').slice(-2); diff --git a/src/pages/manage/list/personal/currentAccount/accountCancellation.vue b/src/pages/manage/list/personal/currentAccount/accountCancellation.vue index 68aea15..583f2db 100644 --- a/src/pages/manage/list/personal/currentAccount/accountCancellation.vue +++ b/src/pages/manage/list/personal/currentAccount/accountCancellation.vue @@ -43,7 +43,7 @@