111
This commit is contained in:
parent
c4bd835fff
commit
ebbb4f3b69
|
@ -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){
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -2,27 +2,34 @@
|
|||
<view class="page">
|
||||
<u-navbar title="认证" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='40'></u-navbar>
|
||||
<view class="ipt_box">
|
||||
<view class="li">
|
||||
<view class="left">
|
||||
姓名
|
||||
</view>
|
||||
<input type="text" v-model="name" placeholder="填写本人真实姓名" placeholder-style=''/>
|
||||
<view class="tit">
|
||||
为了防范身份信息被冒用,需进行身份认证以确保 是本人操作
|
||||
</view>
|
||||
<view class="imgbox">
|
||||
<image class="img" src="https://lxnapi.ccttiot.com/bike/img/static/uxAqR8zizZddzadit9ms" mode=""></image>
|
||||
</view>
|
||||
|
||||
<view class="ipt_box">
|
||||
<view class="li">
|
||||
<view class="left">
|
||||
姓名
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="li">
|
||||
<view class="left">
|
||||
身份证号
|
||||
</view>
|
||||
<input type="number" v-model="idnum" placeholder="填写本人身份证号"/>
|
||||
<input type="text" v-model="name" placeholder="填写本人真实姓名" placeholder-style='' />
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="li">
|
||||
<view class="left">
|
||||
身份证号
|
||||
</view>
|
||||
<input type="text" v-model="idnum" placeholder="填写本人身份证号" />
|
||||
</view>
|
||||
<view class="tips">
|
||||
以上信息仅用于验证,我们将严格为您保密
|
||||
</view>
|
||||
<view class="btn" @click="test">
|
||||
认证
|
||||
</view>
|
||||
</view>
|
||||
<view class="tips">
|
||||
以上信息仅用于验证,我们将严格为您保密
|
||||
</view>
|
||||
<view class="btn" :class="istrue?'act1':''" @click="test">
|
||||
认证
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -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 @@
|
|||
<style lang="scss">
|
||||
.page {
|
||||
width: 750rpx;
|
||||
.tit{
|
||||
margin: 20rpx auto;
|
||||
width: 608rpx;
|
||||
height: 76rpx;
|
||||
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||||
font-weight: 600;
|
||||
font-size: 28rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.tips {
|
||||
text-align: center;
|
||||
margin: 10rpx auto;
|
||||
|
@ -102,6 +128,17 @@
|
|||
font-size: 28rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
.imgbox{
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;justify-content: center;
|
||||
.img{
|
||||
margin: 10rpx auto;
|
||||
width: 428rpx;
|
||||
height: 292.32rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
@ -115,13 +152,17 @@
|
|||
font-size: 40rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.act1{
|
||||
background: #4C97E7;
|
||||
}
|
||||
.ipt_box {
|
||||
padding: 30rpx 12rpx;
|
||||
margin: 48rpx auto;
|
||||
width: 610rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
|
||||
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
|
||||
border-radius: 12rpx;
|
||||
|
||||
.line {
|
||||
margin-top: 34rpx;
|
||||
margin-bottom: 34rpx;
|
||||
|
@ -129,20 +170,24 @@
|
|||
height: 2rpx;
|
||||
background: #F3F3F3;
|
||||
}
|
||||
|
||||
.li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.left {
|
||||
width: 96rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #979797;
|
||||
}
|
||||
|
||||
input {
|
||||
margin-left: 44rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
|
||||
.input-placeholder {
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
|
@ -152,4 +197,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
|
@ -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) {
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
"pages": [{
|
||||
"path": "pages/index/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "我的",
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarBackgroundColor": "#3996FD",
|
||||
"navigationBarTextStyle": "#FFFFFF",
|
||||
"navigationBarBackgroundColor": "#fff",
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
|
|
File diff suppressed because it is too large
Load Diff
38
pages/my.vue
38
pages/my.vue
|
@ -3,14 +3,17 @@
|
|||
<u-navbar title="个人中心" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='36'></u-navbar>
|
||||
<view class="topbg">
|
||||
<view class="topbox">
|
||||
<view class="info" v-if="false">
|
||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uZ5onboA1yozB2VFaCI2" mode=""></image>
|
||||
<view class="info" >
|
||||
<image :src='item.avatar' mode=""></image>
|
||||
<view class="cont">
|
||||
<view class="name">
|
||||
微信用户
|
||||
<view class="name" v-if="info.realName!=null">
|
||||
{{maskedName}}
|
||||
</view>
|
||||
<view class="name" v-if="info.realName==null" >
|
||||
未实名
|
||||
</view>
|
||||
<view class="phone">
|
||||
138****1123
|
||||
{{ maskedPhoneNumber }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -167,6 +170,16 @@
|
|||
onShow() {
|
||||
this.getuserInfo()
|
||||
},
|
||||
computed: {
|
||||
maskedPhoneNumber() {
|
||||
if (!this.info.phonenumber) return '';
|
||||
return this.info.phonenumber.slice(0, 3) + '****' + this.info.phonenumber.slice(7);
|
||||
},
|
||||
maskedName() {
|
||||
if (!this.info.realName) return '';
|
||||
return this.info.realName.charAt(0) + '*'.repeat(this.info.realName.length - 1);
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
topage(num){
|
||||
if(num==0){
|
||||
|
@ -211,18 +224,21 @@
|
|||
if (res.code == 200) {
|
||||
this.$store.commit('SET_USERID', res.user.userId);
|
||||
this.info=res.user
|
||||
uni.setStorageSync('role', res.user.role);
|
||||
if( res.user.role==2){
|
||||
uni.navigateTo({
|
||||
url:'/page_fix/fix_index'
|
||||
})
|
||||
}
|
||||
|
||||
// if( res.user.role==2){
|
||||
// uni.navigateTo({
|
||||
// url:'/page_fix/fix_index'
|
||||
// })
|
||||
// }
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '未登录,请登录后尝试',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
setTimeout(()=>{
|
||||
// if()
|
||||
},300)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -668,7 +668,7 @@
|
|||
|
||||
<style lang="scss">
|
||||
page {
|
||||
background-color: #F7FAFE;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.page {
|
||||
|
@ -739,6 +739,7 @@
|
|||
|
||||
.slider {
|
||||
padding: 15rpx 0 0 15rpx;
|
||||
margin-bottom: 20rpx;
|
||||
.tit {
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
|
@ -748,13 +749,13 @@
|
|||
width: 752rpx;
|
||||
height:160rpx;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
|
||||
// box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
|
||||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
}
|
||||
|
||||
.map {
|
||||
width: 750rpx;
|
||||
height: 906rpx;
|
||||
height:850rpx;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
</view> -->
|
||||
</view>
|
||||
<view class="info_li">
|
||||
<view class="txt">最近一笔订单:{{item.latestOrder.orderNo}}</view>
|
||||
<view class="txt" v-if="item.latestOrder.orderNo">最近一笔订单:{{item.latestOrder.orderNo}}</view>
|
||||
<span style="color:#4C97E7 ;" v-if="item.latestOrder.status==0||item.latestOrder.status==2">(进行中)</span>
|
||||
<span style="color:#4C97E7 ;" v-if="item.latestOrder.status==1||item.latestOrder.status==3">(待支付)</span>
|
||||
<span style="color:#4C97E7 ;" v-if="item.latestOrder.status==4">(已完成)</span>
|
||||
|
|
|
@ -16,5 +16,6 @@ const getters = {
|
|||
userId: state => state.app.userId,
|
||||
isMeal: state => state.app.isMeal,
|
||||
deposit: state => state.app.deposit,
|
||||
showTips: state => state.app.showTips,
|
||||
}
|
||||
export default getters
|
||||
|
|
|
@ -13,6 +13,7 @@ const state = {
|
|||
userId:null,
|
||||
isMeal:null,
|
||||
deposit:null,
|
||||
showTips:true,
|
||||
};
|
||||
|
||||
const mutations = {
|
||||
|
@ -50,6 +51,12 @@ const mutations = {
|
|||
console.log(fee,'feefeefeefee');
|
||||
state.deposit = fee;
|
||||
|
||||
},
|
||||
SET_SHOWTIPS(state, fee) {
|
||||
console.log(fee,'feefeefeefee');
|
||||
state.showTips = fee;
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user