diff --git a/src/components/case/index.vue b/src/components/case/index.vue index d0cf833..31b81fb 100644 --- a/src/components/case/index.vue +++ b/src/components/case/index.vue @@ -424,9 +424,9 @@ export default { // schoolId: this.schoolId schoolId: '' } - this.$get(`${this.api.queryTestProject}`,data).then(res => { - this.handleData(res.message,2) - }).catch(res => {}); + // this.$get(`${this.api.queryTestProject}`,data).then(res => { + // this.handleData(res.message,2) + // }).catch(res => {}); }, selectProject(){ this.isSelected = true diff --git a/src/pages/manage/index/index.vue b/src/pages/manage/index/index.vue index 27985fa..cbd2a79 100644 --- a/src/pages/manage/index/index.vue +++ b/src/pages/manage/index/index.vue @@ -13,7 +13,9 @@
- + + +
@@ -114,4 +116,10 @@ export default { } } } + .fade-enter-active, .fade-leave-active { + transition: opacity .5s; + } + .fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ { + opacity: 0.5; + } \ No newline at end of file diff --git a/src/pages/manage/list/personal/callDeposits.vue b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue similarity index 100% rename from src/pages/manage/list/personal/callDeposits.vue rename to src/pages/manage/list/ImportantCash/controlCash/cashOut.vue diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue b/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue b/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashTransferInto.vue b/src/pages/manage/list/ImportantCash/controlCash/cashTransferInto.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/ImportantCash/controlCash/index.vue b/src/pages/manage/list/ImportantCash/controlCash/index.vue new file mode 100644 index 0000000..7de46f2 --- /dev/null +++ b/src/pages/manage/list/ImportantCash/controlCash/index.vue @@ -0,0 +1,194 @@ + + + + + + diff --git a/src/pages/manage/list/business/deposit.vue b/src/pages/manage/list/business/deposit.vue new file mode 100644 index 0000000..30a0afe --- /dev/null +++ b/src/pages/manage/list/business/deposit.vue @@ -0,0 +1,200 @@ +// 存款 + + + + + diff --git a/src/pages/manage/list/business/openAccount.vue b/src/pages/manage/list/business/openAccount.vue new file mode 100644 index 0000000..efe2a38 --- /dev/null +++ b/src/pages/manage/list/business/openAccount.vue @@ -0,0 +1,247 @@ +// 开户 + + + + + diff --git a/src/pages/manage/list/business/transfer.vue b/src/pages/manage/list/business/transfer.vue new file mode 100644 index 0000000..41a40ed --- /dev/null +++ b/src/pages/manage/list/business/transfer.vue @@ -0,0 +1,235 @@ +// 转账 + + + + + diff --git a/src/pages/manage/list/business/withdrawal.vue b/src/pages/manage/list/business/withdrawal.vue new file mode 100644 index 0000000..6408f75 --- /dev/null +++ b/src/pages/manage/list/business/withdrawal.vue @@ -0,0 +1,224 @@ +// 取款 + + + + + diff --git a/src/pages/manage/list/client/consumerClient.vue b/src/pages/manage/list/client/consumerClient.vue index 4b6440b..79e6bdf 100644 --- a/src/pages/manage/list/client/consumerClient.vue +++ b/src/pages/manage/list/client/consumerClient.vue @@ -53,8 +53,8 @@ @@ -144,7 +144,25 @@ export default { this.success&&(this.visible = false) this.authorization&&(this.success=true) this.authorization = true - } + }, + throttle(fn,wait=1000){// 节流函数 + var timer = null; + console.log(timer,'触发节流,查看timer') + return function(){ + console.log('进入timer0') + + var context = this; + var args = fn; + if(!timer){ + console.log('进入timer') + timer = setTimeout(function(){ + fn.apply(context,fn); + timer = null; + },wait) + } + } + }, + } }; diff --git a/src/pages/manage/list/client/corporateClient.vue b/src/pages/manage/list/client/corporateClient.vue index a100d08..d02f261 100644 --- a/src/pages/manage/list/client/corporateClient.vue +++ b/src/pages/manage/list/client/corporateClient.vue @@ -91,6 +91,9 @@ export default { name: 'index', data() { return { + visible:false,// 表单 + authorization:false,// 切授权 + success:false,// 切成功 form:{ }, @@ -108,6 +111,9 @@ export default { popUp(){// 唤起弹窗 this.$store.commit('system/changePop',{show:true,text:'身份证扫描仪'}) }, + popSure(){ + + }, } }; diff --git a/src/pages/manage/list/dayEnd/branchDayEnd.vue b/src/pages/manage/list/dayEnd/branchDayEnd.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/dayEnd/tellerCash.vue b/src/pages/manage/list/dayEnd/tellerCash.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/dayEnd/tellerCertificate.vue b/src/pages/manage/list/dayEnd/tellerCertificate.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/manage/list/personal/accountService.vue b/src/pages/manage/list/personal/accountService.vue deleted file mode 100644 index cfa6a36..0000000 --- a/src/pages/manage/list/personal/accountService.vue +++ /dev/null @@ -1 +0,0 @@ -// 账户服务 \ No newline at end of file diff --git a/src/pages/manage/list/personal/accountService/accountService.vue b/src/pages/manage/list/personal/accountService/accountService.vue new file mode 100644 index 0000000..75b023b --- /dev/null +++ b/src/pages/manage/list/personal/accountService/accountService.vue @@ -0,0 +1,195 @@ +// 账户服务 + + + + + diff --git a/src/pages/manage/list/personal/accountService/changePassword.vue b/src/pages/manage/list/personal/accountService/changePassword.vue new file mode 100644 index 0000000..000f89f --- /dev/null +++ b/src/pages/manage/list/personal/accountService/changePassword.vue @@ -0,0 +1,86 @@ +/*修改密码 */ + + + \ No newline at end of file diff --git a/src/pages/manage/list/personal/callDeposits/accountClosed.vue b/src/pages/manage/list/personal/callDeposits/accountClosed.vue new file mode 100644 index 0000000..df4ebe5 --- /dev/null +++ b/src/pages/manage/list/personal/callDeposits/accountClosed.vue @@ -0,0 +1,123 @@ +// 销户 + + + \ No newline at end of file diff --git a/src/pages/manage/list/personal/callDeposits/callDeposits.vue b/src/pages/manage/list/personal/callDeposits/callDeposits.vue new file mode 100644 index 0000000..cfccf91 --- /dev/null +++ b/src/pages/manage/list/personal/callDeposits/callDeposits.vue @@ -0,0 +1,192 @@ + + + + + diff --git a/src/pages/manage/list/personal/callDeposits/openAccount.vue b/src/pages/manage/list/personal/callDeposits/openAccount.vue new file mode 100644 index 0000000..1ba2b60 --- /dev/null +++ b/src/pages/manage/list/personal/callDeposits/openAccount.vue @@ -0,0 +1,113 @@ +// 开户 + + + \ No newline at end of file diff --git a/src/pages/manage/list/personal/currentAccount/accountCancellation.vue b/src/pages/manage/list/personal/currentAccount/accountCancellation.vue index e957b5b..e3c419a 100644 --- a/src/pages/manage/list/personal/currentAccount/accountCancellation.vue +++ b/src/pages/manage/list/personal/currentAccount/accountCancellation.vue @@ -1,9 +1,39 @@ +/* 个人业务>活期业务>销户 */ \ No newline at end of file diff --git a/src/pages/manage/list/personal/currentAccount/openAccount.vue b/src/pages/manage/list/personal/currentAccount/openAccount.vue index 344e663..dd1ae7d 100644 --- a/src/pages/manage/list/personal/currentAccount/openAccount.vue +++ b/src/pages/manage/list/personal/currentAccount/openAccount.vue @@ -1,4 +1,4 @@ -/* 个人业务>活期业务 */ +/* 个人业务>活期业务>开户 */