<template>
|
<view class="driver-my">
|
<view class="driver-banner">
|
<view class="navgation">我的</view>
|
<view class="avatar">
|
<view class="avatar-imgage"
|
style="background: url('https://mr1.res.jzeg.cn:9096/appimg/image/banner/driverava.png')no-repeat;background-size: cover;">
|
</view>
|
<view class="avatar-name">{{ userInfo.name || '' }}</view>
|
<view class="edit-button"><u-button type="primary"
|
@click="editBtnClick"
|
shape="circle"
|
plain>编辑个人资料</u-button></view>
|
</view>
|
<view class="personal-information">
|
<view class="personal-information-block">
|
<view class="block-main">
|
<view class="information-line"
|
@click="">
|
<view class="line-label">
|
<image src="https://mr1.res.jzeg.cn:9096/appimg/image/banner/personalicon.png"
|
mode="widthFix"></image>
|
<view class="label-text">身份证号</view>
|
</view>
|
<view class="information-value">
|
{{ userInfo.idCard || '' }}
|
</view>
|
</view>
|
<view class="information-line">
|
<view class="line-label">
|
<image src="https://mr1.res.jzeg.cn:9096/appimg/image/banner/phonenum.png"
|
mode="widthFix"></image>
|
<view class="label-text">手机号</view>
|
</view>
|
<view class="information-value">
|
{{ userInfo.phone || '' }}
|
</view>
|
</view>
|
<view class="information-line">
|
<view class="line-label">
|
<image src="https://mr1.res.jzeg.cn:9096/appimg/image/banner/phonenum.png"
|
mode="widthFix"></image>
|
<view class="label-text">账号</view>
|
</view>
|
<view class="information-value">
|
{{ userInfo.username || '' }}
|
</view>
|
</view>
|
<view class="information-line last">
|
<view class="line-label">
|
<image src="https://mr1.res.jzeg.cn:9096/appimg/image/banner/weighnum.png"
|
mode="widthFix"></image>
|
<view class="label-text">体重</view>
|
</view>
|
<view class="information-value">
|
{{ userInfo.weight || '' }}
|
</view>
|
</view>
|
</view>
|
</view>
|
</view>
|
</view>
|
<view class="loginout">
|
<view class="loginout-main"><u-button text="退出登录"
|
type="primary"
|
@click="logout"
|
shape="circle"
|
plain></u-button></view>
|
</view>
|
<!-- 修改弹出框 -->
|
<view class="editDriverPopup-container">
|
<u-popup :show="editDriverPopupShow"
|
mode="bottom"
|
@close="editDriverPopupClose"
|
@open="editDriverPopupOpen"
|
:closeable="true">
|
<combined-title title="修改个人信息"
|
style="margin-left:20rpx"></combined-title>
|
<view class="editDriverPopup-container-box">
|
<u--form labelPosition="left"
|
:model="editUserInfo"
|
ref="editRef">
|
<u-form-item labelWidth="20%"
|
label="姓名"
|
prop="name"
|
required>
|
<u--input v-model="editUserInfo.name"
|
border="none"
|
inputAlign="left"></u--input>
|
</u-form-item>
|
<u-form-item labelWidth="20%"
|
label="身份证号"
|
prop="idCard"
|
required>
|
<u--input v-model="editUserInfo.idCard"
|
border="none"
|
inputAlign="left"></u--input>
|
</u-form-item>
|
<u-form-item labelWidth="20%"
|
label="手机号"
|
prop="phone"
|
required>
|
<u--input v-model="editUserInfo.phone"
|
border="none"
|
inputAlign="left"></u--input>
|
</u-form-item>
|
<u-form-item labelWidth="20%"
|
label="账号"
|
prop="username"
|
required>
|
<u--input v-model="editUserInfo.username"
|
border="none"
|
inputAlign="left"></u--input>
|
</u-form-item>
|
<u-form-item labelWidth="20%"
|
label="体重"
|
prop="weight"
|
required>
|
<u--input v-model="editUserInfo.weight"
|
border="none"
|
inputAlign="left"
|
placeholder="体重以kg作为单位"></u--input>
|
</u-form-item>
|
</u--form>
|
<view style="margin-top: 30rpx;">
|
<u-button text="提交"
|
@click="updateUser"
|
type="primary"></u-button>
|
</view>
|
</view>
|
</u-popup>
|
</view>
|
<view class="logoutModel">
|
<u-modal :show="logoutShow"
|
:title="logoutTitle"
|
showCancelButton
|
:content="logoutContent"
|
@confirm="logoutConfirm"
|
@cancel="logoutCancel"></u-modal>
|
</view>
|
</view>
|
</template>
|
|
<script>
|
import { customerId, userInfo, redirectLogin } from '@/utils/status';
|
import { BaseUrl } from '@/api/publicInterface.js';
|
import { mapMutations } from 'vuex';
|
export default {
|
data() {
|
return {
|
// 获取的司机详情
|
userInfo: {},
|
// 修改司机详情
|
editUserInfo: {
|
phone: '',
|
name: '',
|
username: '',
|
type: 3,
|
idCard: '',
|
carNo: '',
|
carImg: '',
|
drivingImg: '',
|
axleNum: '',
|
weight: '',
|
userId: ''
|
},
|
rules: {
|
name: {
|
type: 'string',
|
required: true,
|
message: '请填写姓名',
|
trigger: ['blur', 'change']
|
},
|
idCard: [{
|
type: 'string',
|
required: true,
|
message: '请输入身份证号',
|
trigger: ['blur', 'change']
|
},
|
{
|
pattern: /^([1-6][1-9]|50)\d{4}(18|19|20)\d{2}((0[1-9])|10|11|12)(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/,
|
message: '身份证号格式不正确'
|
}
|
],
|
phone: [{
|
required: true,
|
message: '此项为必填项',
|
// blur和change事件触发检验
|
trigger: ['blur', 'change']
|
},
|
{
|
min: 11,
|
max: 11,
|
message: '请输入合法手机号'
|
},
|
{
|
validator: (rule, value, callback) => {
|
return uni.$u.test.mobile(value);
|
},
|
message: '手机号码格式不正确',
|
trigger: ['change', 'blur']
|
}
|
],
|
weight: {
|
type: 'number',
|
required: true,
|
message: '请填写体重',
|
trigger: ['blur', 'change']
|
},
|
username: {
|
type: 'string',
|
required: true,
|
message: '请填写账号',
|
trigger: ['blur', 'change']
|
}
|
},
|
src: '',
|
fileList1: [],
|
fileList2: [],
|
// 修改信息弹出框
|
editDriverPopupShow: false,
|
// previewImage
|
previewImageShow: false,
|
previewImageSrc: '',
|
// 退出模态框
|
logoutShow: false,
|
logoutTitle: '提示',
|
logoutContent: '是否确认退出',
|
BaseUrl
|
};
|
},
|
onShow() {
|
this.init();
|
},
|
onReady() {
|
this.$refs.editRef.setRules(this.rules);
|
},
|
methods: {
|
...mapMutations(['changeisUploadimg']),
|
init() {
|
this.getUserEntity();
|
},
|
getUserEntity() {
|
uni.showLoading({
|
title: '加载中...'
|
});
|
this.$reqGet('getUserEntity').then(res => {
|
uni.hideLoading();
|
this.userInfo = res.data;
|
Object.keys(this.editUserInfo).map(item => {
|
if (res.data[item]) {
|
this.editUserInfo[item] = res.data[item];
|
}
|
});
|
});
|
},
|
// 修改按钮点击
|
editBtnClick() {
|
this.editDriverPopupShow = true;
|
},
|
/**
|
* @editPopup 修改弹出框事件
|
*/
|
editDriverPopupClose() {
|
this.editDriverPopupShow = false;
|
},
|
editDriverPopupOpen() {},
|
// 修改用户信息
|
updateUser() {
|
this.editUserInfo = {
|
...this.editUserInfo,
|
carImg: uni.getStorageSync('carImg'),
|
drivingImg: uni.getStorageSync('drivingImg')
|
};
|
this.$refs.editRef
|
.validate()
|
.then(res => {
|
this.$reqPost('updateUser', this.editUserInfo, 'json').then(res => {
|
console.log('更新数据', res);
|
this.editDriverPopupShow = false;
|
if (res.code == 0) {
|
this.$u.toast('修改成功');
|
this.init();
|
} else {
|
uni.showToast({
|
title: res.msg,
|
icon: 'none',
|
duration: 2000
|
});
|
}
|
});
|
})
|
.catch(err => {
|
this.$u.toast('修改失败');
|
});
|
},
|
logout() {
|
this.logoutShow = true;
|
},
|
logoutConfirm() {
|
redirectLogin();
|
this.$store.commit('changeisLogin', false)
|
this.$store.dispatch('websocketOnClose')
|
},
|
logoutCancel() {
|
this.logoutShow = false;
|
},
|
}
|
};
|
</script>
|
|
<style lang="scss"
|
scoped>
|
@mixin flex {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
|
.statistics {
|
margin-top: vww(10);
|
margin-bottom: vww(10);
|
}
|
|
::v-deep.driver-my {
|
width: 100%;
|
margin: 0 auto;
|
padding-bottom: vww(60);
|
|
.driver-banner {
|
width: 100%;
|
height: 430rpx;
|
background: linear-gradient(0deg, #ffffff 0%, #0055fe 100%);
|
background-size: contain;
|
position: fixed;
|
top: 0;
|
|
.navgation {
|
width: 80rpx;
|
height: 37rpx;
|
font-size: 40rpx;
|
font-weight: normal;
|
color: #ffffff;
|
line-height: 69rpx;
|
margin: vww(60) auto;
|
}
|
|
.avatar {
|
width: 100%;
|
height: 430rpx;
|
display: flex;
|
align-items: center;
|
position: fixed;
|
top: 0;
|
|
.avatar-imgage {
|
width: 98rpx;
|
height: 98rpx;
|
margin-left: vww(18);
|
@include flex;
|
justify-content: center;
|
}
|
|
.avatar-name {
|
width: 200rpx;
|
display: flex;
|
flex-wrap: wrap;
|
height: 32rpx;
|
font-size: 34rpx;
|
font-weight: bold;
|
color: #ffffff;
|
margin-left: vww(17);
|
}
|
|
.edit-button {
|
position: relative;
|
left: vww(73);
|
top: vww(4);
|
}
|
}
|
|
.personal-information {
|
width: 100%;
|
display: flex;
|
justify-content: center;
|
position: relative;
|
top: vww(20);
|
|
&-block {
|
width: 690rpx;
|
height: 400rpx;
|
background: #ffffff;
|
box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
|
border-radius: 20rpx;
|
display: flex;
|
flex-direction: column;
|
justify-content: space-between;
|
|
.block-main {
|
width: 636rpx;
|
margin: vww(10) vww(14);
|
}
|
|
.information-line {
|
@include flex width: 636rpx;
|
height: vww(45);
|
border-bottom: 1rpx solid #f0f1f6;
|
|
.line-label {
|
width: 188rpx;
|
height: 90rpx;
|
|
@include flex image {
|
width: 50rpx;
|
height: 50rpx;
|
}
|
|
.label-text {
|
width: 120rpx;
|
font-size: 30rpx;
|
font-weight: 400;
|
color: #000000;
|
line-height: 85rpx;
|
}
|
}
|
|
.information-value {
|
min-width: vww(125);
|
@include flex;
|
font-size: 30rpx;
|
font-weight: 400;
|
color: #000000;
|
line-height: 85rpx;
|
}
|
}
|
|
.last {
|
border-bottom: 0;
|
}
|
}
|
}
|
}
|
|
.car-information {
|
width: 100%;
|
position: relative;
|
top: vww(410);
|
@include flex justify-content: center;
|
|
.information-main {
|
width: 690rpx;
|
height: 552rpx;
|
background: #ffffff;
|
box-shadow: 0rpx 0rpx 14rpx 0rpx rgba(73, 120, 240, 0.14), 0rpx 7rpx 45rpx 0rpx rgba(73, 120, 240, 0.12);
|
border-radius: 20rpx;
|
|
.information-body {
|
width: 636rpx;
|
margin: vww(15) vww(14);
|
@include flex flex-direction: column;
|
|
.car-img {
|
height: 246rpx;
|
width: 100%;
|
@include flex;
|
flex-direction: column;
|
align-items: flex-start;
|
|
.label-title {
|
@include flex;
|
width: 220rpx;
|
height: 100rpx;
|
|
.label-text {
|
width: 100%;
|
height: 50rpx;
|
}
|
|
image {
|
width: 50rpx;
|
height: 50rpx;
|
}
|
}
|
}
|
}
|
}
|
}
|
|
.loginout {
|
width: 100%;
|
height: 74rpx;
|
@include flex;
|
justify-content: center;
|
position: relative;
|
bottom: vww(-430);
|
|
.loginout-main {
|
width: 84%;
|
}
|
}
|
|
// 表单
|
.personal-information-form {
|
margin-top: vww(200);
|
|
.push-information-button {
|
display: flex;
|
margin: vww(20) auto 0;
|
width: 80%;
|
|
.u-button {
|
&:nth-of-type(2) {
|
margin-left: vww(10);
|
}
|
}
|
}
|
}
|
|
// 预览图片
|
.previewImage-container {}
|
|
// 修改弹出框
|
.editDriverPopup-container {
|
.u-popup {
|
.u-transition {
|
height: 50%;
|
|
.u-popup__content {
|
overflow: scroll !important;
|
|
.editDriverPopup-container-box {
|
width: 90%;
|
margin: 0 auto;
|
}
|
|
//closeIcon
|
.u-popup__content__close--top-right {
|
top: vww(20) !important;
|
|
.u-icon {
|
.u-icon__icon {
|
font-size: vww(20) !important;
|
}
|
}
|
}
|
}
|
}
|
}
|
}
|
}
|
</style>
|