You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
224 lines
5.7 KiB
224 lines
5.7 KiB
<template>
|
|
<view>
|
|
<lf-nav :spreadOut="true" :showIcon="true" bgColor="#F8F8F8" title="会员资料"></lf-nav>
|
|
<view class="lf-font-26 lf-color-primary lf-p-30 lf-row-center">
|
|
尊敬的会员,完善资料可以让我们为您提供更贴切的服务
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
*姓名
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" v-model="info.name" placeholder="请输入姓名" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
国籍
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" v-model="info.native_place" placeholder="请输入你的国籍" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
性别
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" :value="info.sex" :disabled="true" placeholder="未填写" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
出生日期
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" :value="info.birthday" :disabled="true" placeholder="未填写" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
身份证号
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" :value="info.id_number" :disabled="true" placeholder="未填写" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
通讯地址
|
|
</view>
|
|
<view class="lf-flex">
|
|
<picker mode="region" :value="info.address" @change="addressChange" >
|
|
<text class="address-picker">{{ info.address.join('') || '请选择' }}</text>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black"></view>
|
|
<view class="lf-flex lf-w-100">
|
|
<input type="text" class="edit-input lf-w-100" v-model="info.address_detail" placeholder="请输入您的详细地址" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
家庭地址
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" v-model="info.home_address" placeholder="请输入您的家庭地址" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lf-p-l-32 lf-p-r-32">
|
|
<view class="set-tag lf-border-bottom">
|
|
<view class="lf-font-28 lf-color-black">
|
|
学历
|
|
</view>
|
|
<view class="lf-flex">
|
|
<input type="text" class="edit-input" v-model="info.education" placeholder="请输入您的学历" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="lf-font-26 lf-color-999 lf-p-30 lf-row-center">
|
|
温馨提示:身份证号出生日期不支持线上修改,如需修改请前往服务台办理。
|
|
</view>
|
|
|
|
<button class="set-btn" hover-class="lf-opacity" @click="submit">保存</button>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
info: {
|
|
name: '',
|
|
native_place: '',
|
|
sex: '',
|
|
birthday: '',
|
|
id_number: '',
|
|
address: [],
|
|
address_detail: '',
|
|
home_address: '',
|
|
education: ''
|
|
},
|
|
token: ''
|
|
}
|
|
},
|
|
onLoad(){
|
|
var token = this.$cookieStorage.get('user_token');
|
|
this.token = token;
|
|
this.getMeInfo();
|
|
},
|
|
methods: {
|
|
getMeInfo(){
|
|
this.$http.get({
|
|
api: 'api/me',
|
|
header: {
|
|
Authorization: this.token
|
|
}
|
|
}).then(res => {
|
|
let detail = res.data.data;
|
|
let info = this.info;
|
|
info.name = detail.name;
|
|
info.sex = detail.sex;
|
|
info.birthday = detail.birthday;
|
|
// todo 其他信息待补充...
|
|
this.info = info;
|
|
})
|
|
},
|
|
getValue(current, event){
|
|
this[current +'_index'] = event.detail.value;
|
|
},
|
|
addressChange(event){
|
|
this.info.address = event.detail.value;
|
|
},
|
|
submit(){
|
|
console.log(this.info);
|
|
uni.showLoading({
|
|
title: '正在保存中'
|
|
});
|
|
// TODO 其他参数待传入对接
|
|
this.$http.post({
|
|
api: 'api/users/update/info',
|
|
data: {
|
|
name: this.info.name,
|
|
// education: this.info.education
|
|
},
|
|
header: {
|
|
Authorization: this.token,
|
|
Accept: 'application/json'
|
|
}
|
|
}).then(res => {
|
|
uni.hideLoading();
|
|
this.$msg('保存成功', {icon: 'success'});
|
|
}).catch(err => {
|
|
uni.hideLoading();
|
|
this.$msg('保存失败', {icon: 'error'});
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
// .input{
|
|
// width: 400rpx;
|
|
// text-align: right;
|
|
// }
|
|
.picker-w{
|
|
width: 400rpx;
|
|
text-align: right;
|
|
}
|
|
.set-btn {
|
|
width: 550rpx;
|
|
height: 100rpx;
|
|
background: #15716E;
|
|
border-radius: 50rpx;
|
|
margin: 40rpx auto;
|
|
font-size: 32rpx;
|
|
color: white;
|
|
line-height: 100rpx;
|
|
}
|
|
.edit-input {
|
|
text-align: right;
|
|
font-size: 28rpx;
|
|
color: #777;
|
|
}
|
|
.set-tag {
|
|
height: 100rpx;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
// border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
.address-picker{
|
|
font-size: 28rpx;
|
|
color: #777777;
|
|
display: inline-block;
|
|
width: 400rpx;
|
|
text-align: right;
|
|
}
|
|
/deep/.input-placeholder {
|
|
font-size: 28rpx;
|
|
color: #777;
|
|
}
|
|
</style>
|