From ebbb4f3b69ff17c0ee3842e67009dfc7977bae52 Mon Sep 17 00:00:00 2001 From: Sliverber <2622874537@qq.com> Date: Tue, 4 Jun 2024 18:12:12 +0800 Subject: [PATCH] 111 --- common/http.interceptor.js | 6 +- components/tab-bar/tab-bar.vue | 8 +- page_user/idcard_test.vue | 91 ++- page_user/yj.vue | 8 +- pages.json | 6 +- pages/index/index.vue | 931 +++++++++++++++++++------------ pages/my.vue | 38 +- pages_admin/admin_index.vue | 7 +- pages_admin/worke/worke_user.vue | 2 +- store/getters.js | 1 + store/modules/app.js | 7 + 11 files changed, 706 insertions(+), 399 deletions(-) diff --git a/common/http.interceptor.js b/common/http.interceptor.js index fcb718c..accae8c 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -124,9 +124,9 @@ const install = (Vue, vm) => { uni.hideLoading(); if (res.code == 200) { uni.setStorageSync('token', res.token); - uni.navigateTo({ - url:'/pages/index/index' - }) + // uni.navigateTo({ + // url:'/pages/index/index' + // }) }else if(res.code == 501){ diff --git a/components/tab-bar/tab-bar.vue b/components/tab-bar/tab-bar.vue index d1e2e7f..2ae89bc 100644 --- a/components/tab-bar/tab-bar.vue +++ b/components/tab-bar/tab-bar.vue @@ -53,7 +53,7 @@ // this._switchTabbarPage(index) if(index==0){ - uni.navigateTo({ + uni.redirectTo({ url:'/pages_admin/admin_worke', routeType: 'wx://modal', success() { @@ -62,7 +62,7 @@ }) console.log('点击了',index); }else if(index==1){ - uni.navigateTo({ + uni.redirectTo({ url:'/pages_admin/admin_index', routeType: 'wx://modal', success() { @@ -70,7 +70,7 @@ } }) }else if(index==2){ - uni.navigateTo({ + uni.redirectTo({ url:'/pages_admin/admin_order', routeType: 'wx://modal', success() { @@ -100,7 +100,7 @@ // left: 60rpx; bottom: 0rpx; width: 750rpx; - height: 118rpx; + height: 150rpx; background: #FFFFFF; box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(53, 140, 255, 0.1); // border-radius: 60rpx; diff --git a/page_user/idcard_test.vue b/page_user/idcard_test.vue index ed5d1ee..e456d7f 100644 --- a/page_user/idcard_test.vue +++ b/page_user/idcard_test.vue @@ -2,27 +2,34 @@ - - - - 姓名 - - + + 为了防范身份信息被冒用,需进行身份认证以确保 是本人操作 + + + + + + + + + 姓名 - - - - 身份证号 - - + + + + + + 身份证号 + - - 以上信息仅用于验证,我们将严格为您保密 - - - 认证 - + + + 以上信息仅用于验证,我们将严格为您保密 + + + 认证 + @@ -34,9 +41,18 @@ backgroundColor: "#fff", }, name: '', - idnum: '' + idnum: null, + istrue:false } }, + watch: { + idnum(newVal) { + // 正则表达式用于校验 15 位或 18 位身份证号码 + const regex = /^\d{17}(\d|X|x)$/; + this.istrue = regex.test(newVal); + + } + }, computed: { userId() { return this.$store.getters.userId; @@ -48,7 +64,8 @@ return nameRegex.test(name); }, validateIdnum(idnum) { - const idnumRegex = /^(^[1-9]\d{7}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$)$/; + const idnumRegex = + /^(^[1-9]\d{7}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$)$/; return idnumRegex.test(idnum); }, test() { @@ -76,7 +93,7 @@ this.$u.get('/appVerify/user/authentication?', data).then((res) => { if (res.code === 200) { uni.navigateBack({ - delta: 1 // delta值为1时表示返回的页面层数 + delta: 1 // delta值为1时表示返回的页面层数 }); } else { uni.showToast({ @@ -94,6 +111,15 @@ + \ No newline at end of file diff --git a/page_user/yj.vue b/page_user/yj.vue index bb797f6..5c36f5d 100644 --- a/page_user/yj.vue +++ b/page_user/yj.vue @@ -229,7 +229,7 @@ money: this.areaInfo.deposit, mark: "押金充值", type: '4', - areaId:this.areaId + areaId:id } @@ -246,10 +246,14 @@ paySign: res.data.paySign, success(res) { // 支付成功逻辑 + uni.showLoading({ + title:'加载中' + }) setTimeout(() => { + uni.hideLoading() that.getinfo() that.getlist() - }, 1000) + }, 2000) }, fail(err) { diff --git a/pages.json b/pages.json index 528d158..426abc1 100644 --- a/pages.json +++ b/pages.json @@ -6,10 +6,10 @@ "pages": [{ "path": "pages/index/index", "style": { - "navigationBarTitleText": "我的", + "navigationBarTitleText": "", "enablePullDownRefresh": false, - "navigationBarBackgroundColor": "#3996FD", - "navigationBarTextStyle": "#FFFFFF", + "navigationBarBackgroundColor": "#fff", + "navigationBarTextStyle": "black", "navigationStyle": "custom" } }, diff --git a/pages/index/index.vue b/pages/index/index.vue index 0a0beb5..d37ab38 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,15 +1,25 @@