From 9deace50e9a1c02702d998a41035b482bba82954 Mon Sep 17 00:00:00 2001 From: "luoJunYong.123" Date: Fri, 21 Jan 2022 16:19:55 +0800 Subject: [PATCH] update --- src/components/dialog/index.vue | 24 +- src/components/dialog2/index.vue | 169 ++++++++++ .../ImportantCash/controlCash/cashOut.vue | 43 ++- .../ImportantCash/controlCash/cashPaid.vue | 8 +- .../controlCash/cashRecipients.vue | 8 +- .../list/ImportantCash/controlCash/index.vue | 17 +- .../ImportantCash/controlCash2/cashOut.vue | 307 ++++++++++-------- .../ImportantCash/controlCash2/cashPaid.vue | 158 +++++---- .../controlCash2/cashRecipients.vue | 152 +++++---- .../controlCash2/cashTransferInto.vue | 277 +++++++++------- .../list/ImportantCash/controlCash2/index.vue | 16 +- .../manage/list/client/consumerClient.vue | 51 +-- .../personal/callDeposits/accountClosed.vue | 55 ++-- .../list/personal/currentAccount/deposit.vue | 8 +- .../personal/currentAccount/openAccount.vue | 36 +- .../currentAccount/transferAccounts.vue | 6 +- .../personal/currentAccount/withdrawal.vue | 22 +- src/store/modules/system.js | 20 +- src/utils/utilFunction.js | 60 +++- 19 files changed, 927 insertions(+), 510 deletions(-) create mode 100644 src/components/dialog2/index.vue diff --git a/src/components/dialog/index.vue b/src/components/dialog/index.vue index 7ba3f9d..2a4095b 100644 --- a/src/components/dialog/index.vue +++ b/src/components/dialog/index.vue @@ -14,6 +14,9 @@

本业务需要授权

+
+

提交后将不可更改,您确认提交吗?

+
@@ -40,7 +43,7 @@
-
+
取 消 确 定
@@ -72,7 +75,7 @@ export default { }, created() { if(!this.needAuth) { - this.flow = 3 + this.flow = 4 } let num = 0; for(const key in this.showForm) { @@ -86,7 +89,20 @@ export default { } num++; } - this.leftObj['流水号'] = '2333333333333' + // 客户号:A100000001一个字母跟9位数字随机生成不可重复、证件类型:身份证 + // 、证件号码、客户名称、联系电话、通讯地址、流水号:9位数字随机生成不可重 + // 复、经办柜员:6位数字固定使用、经办机构:7位数字固定使用、会计日期:默认 + // 示当前虚拟日期)点击确定按钮收起成功提示弹窗; + const tmpFunc2 = () => { + const $chars2 = '1234567890' + const maxPos = $chars2.length; + let str = ''; + for (let i = 0; i < 9; i++) { + str += $chars2.charAt(Math.floor(Math.random() * maxPos)); + } + return str; + } + this.leftObj['流水号'] = tmpFunc2() this.leftObj['经办机构'] = '国税支行营业部' this.rightObj['经办柜员'] = '002110' const tmpFunc = () => { @@ -122,6 +138,8 @@ export default { this.flow = 2 }else if(this.flow === 2) { this.flow = 3 + }else if(this.flow === 4) { + this.flow = 3 }else { // 调用父函数 // 然后关掉 diff --git a/src/components/dialog2/index.vue b/src/components/dialog2/index.vue new file mode 100644 index 0000000..4f1d969 --- /dev/null +++ b/src/components/dialog2/index.vue @@ -0,0 +1,169 @@ + + + + + \ No newline at end of file diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue index 97a7bf0..992a0ac 100644 --- a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue +++ b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue @@ -1,27 +1,22 @@ // 存款