From 2017abbc67c7baa5bf130c179d6d579b9f5dd810 Mon Sep 17 00:00:00 2001 From: "453530270@qq.com" Date: Wed, 1 Nov 2023 10:52:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home.vue | 4 +- pages/paySuccess/paySuccess.vue | 16 ++-- pages/verfiy/index.vue | 163 ++++++++++++++++++++++++++++++-- 3 files changed, 167 insertions(+), 16 deletions(-) diff --git a/pages/home.vue b/pages/home.vue index 8401460..f19dbea 100644 --- a/pages/home.vue +++ b/pages/home.vue @@ -213,8 +213,10 @@ showError("请登录后再操作",this.gotologin()) } }, + gotologin(){ - this.$navTo("pages/login/loginsms") + + this.$navTo("pages/login/index") }, // 获取当前用户信息 diff --git a/pages/paySuccess/paySuccess.vue b/pages/paySuccess/paySuccess.vue index 431948c..d45ce10 100644 --- a/pages/paySuccess/paySuccess.vue +++ b/pages/paySuccess/paySuccess.vue @@ -6,7 +6,7 @@ - 支付成功 + 支付完毕 @@ -16,15 +16,15 @@ 1.应用下载 - + 国家文化专网网络应用入口 - + - + 手机绑定关联程序 - + 2.输入设备安装码 @@ -33,7 +33,7 @@ 3.交易中心账号绑定 - + @@ -77,7 +77,7 @@ const tdd = dev.substring(2,-1).toUpperCase()+Date.now() this.installationCode = tdd - this.account = this.userInfo.mobile + // this.account = this.userInfo.mobile }, init(){ @@ -110,7 +110,7 @@ .then(result => { // console.log(result) app.userInfo = result.data.userInfo - app.account = result.data.userInfo.mobile + // app.account = result.data.userInfo.mobile resolve(app.userInfo) }) .catch(err => { diff --git a/pages/verfiy/index.vue b/pages/verfiy/index.vue index 2abb687..d2b02df 100644 --- a/pages/verfiy/index.vue +++ b/pages/verfiy/index.vue @@ -6,12 +6,26 @@ - + - + + + + + + + + + + + 上传图片 + + + + @@ -21,16 +35,22 @@ @@ -113,6 +192,76 @@ height: 100%; background-color: #F8F8F8; } + + .image-list { + padding: 0 20rpx; + margin-top: 20rpx; + margin-bottom: -20rpx; + + &:after { + clear: both; + content: " "; + display: table; + } + + .image { + display: block; + width: 100%; + height: 100%; + } + + .image-picker, + .image-preview { + width: 184rpx; + height: 184rpx; + margin-right: 30rpx; + margin-bottom: 30rpx; + float: left; + + &:nth-child(3n+0) { + margin-right: 0; + } + } + + .image-picker { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 1rpx dashed #ccc; + color: #ccc; + + .choose-icon { + font-size: 48rpx; + margin-bottom: 6rpx; + } + + .choose-text { + font-size: 24rpx; + } + } + + .image-preview { + position: relative; + + .image-delete { + position: absolute; + top: -15rpx; + right: -15rpx; + height: 42rpx; + width: 42rpx; + line-height: 42rpx; + background: rgba(0, 0, 0, 0.64); + border-radius: 50%; + color: #fff; + font-weight: bolder; + font-size: 22rpx; + z-index: 10; + text-align: center; + } + } + } + } }