From 5a0242ebc0345a78278ac8d323eda75333102951 Mon Sep 17 00:00:00 2001 From: noendlearning Date: Sat, 28 Mar 2020 11:41:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B7=A5=E4=BD=9C=E5=8F=B0,?= =?UTF-8?q?=E6=88=90=E7=BB=A9=E7=AE=A1=E7=90=86=E4=BB=A5=E5=8F=8A=E6=A0=A1?= =?UTF-8?q?=E5=9B=AD=E7=94=9F=E6=B4=BB=E7=9A=84=E7=94=A8=E6=88=B7=E5=8A=A9?= =?UTF-8?q?=E6=89=8B=E7=9A=84=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/bannerHeader/BannerHeader.vue | 99 +++++----- src/views/application/Application.vue | 2 +- .../childComps/section/Section.vue | 1 + .../campusLife/ctAssistant/CtAssistant.vue | 17 +- .../cashOfferSettings/CashOfferSettings.vue | 60 +++++- .../children/AddBankCard.vue | 87 +++++++++ .../cashOfferSettings/children/MainPage.vue | 69 +++++++ .../children/PresentationPassword.vue | 84 +++++++++ .../children/SuccessPage.vue | 57 ++++++ .../childCpns/cashWithdrawal/CashPage.vue | 175 ++++++++++++++++-- .../cashWithdrawal/CashWithdrawal.vue | 21 ++- .../cashWithdrawal/TransactionRecord.vue | 7 +- src/views/loading/Loading.vue | 12 +- 13 files changed, 612 insertions(+), 79 deletions(-) create mode 100644 src/views/campusLife/ctAssistant/childCpns/cashOfferSettings/children/AddBankCard.vue create mode 100644 src/views/campusLife/ctAssistant/childCpns/cashOfferSettings/children/MainPage.vue create mode 100644 src/views/campusLife/ctAssistant/childCpns/cashOfferSettings/children/PresentationPassword.vue create mode 100644 src/views/campusLife/ctAssistant/childCpns/cashOfferSettings/children/SuccessPage.vue diff --git a/src/components/common/bannerHeader/BannerHeader.vue b/src/components/common/bannerHeader/BannerHeader.vue index 19afb6f..cd10e0e 100644 --- a/src/components/common/bannerHeader/BannerHeader.vue +++ b/src/components/common/bannerHeader/BannerHeader.vue @@ -1,7 +1,7 @@ @@ -199,11 +194,13 @@ .user { width: 100px; display: flex; + cursor: pointer; align-items: center; } .dropdown{ display: flex; flex-wrap: wrap; + padding-bottom: 20px; width: 350px; position:absolute; top: 45px; @@ -224,4 +221,18 @@ cursor: pointer; margin-top: 15px; } + .information { + z-index: 9999; + position: absolute; + top: 45px; + right: 0; + padding: 10px 20px; + background: #fff; + border-radius: 3px; + border-top: 6px solid #107fff; + box-shadow: 0 0 3px 0 rgba(0,0,0,.22); + } + .information > div { + margin-top: 10px; + } \ No newline at end of file diff --git a/src/views/application/Application.vue b/src/views/application/Application.vue index c72505e..25172ae 100644 --- a/src/views/application/Application.vue +++ b/src/views/application/Application.vue @@ -1,6 +1,6 @@ @@ -36,13 +39,16 @@ components: {CashPage, TransactionRecord}, data() { return { - tabData, + isCashWithdrawal:false } }, methods: { cashWithdrawal() { - console.log(11) + this.isCashWithdrawal=true; + }, + forget() { + this.$emit('forget') } } } @@ -50,10 +56,11 @@ \ No newline at end of file diff --git a/src/views/loading/Loading.vue b/src/views/loading/Loading.vue index 1615b4a..ab59ceb 100644 --- a/src/views/loading/Loading.vue +++ b/src/views/loading/Loading.vue @@ -58,12 +58,12 @@ created() { this.id = this.$route.query.corpid localStorage.setItem('cropId',this.id) - this.signIn() - // setTimeout(()=>{ - // this.$router.replace({ - // name:'application' - // }) - // },500) + // this.signIn() + setTimeout(()=>{ + this.$router.replace({ + name:'application' + }) + },500) } } -- Gitee