kitchendDevice/pageTwo/me/userEdit.vue

298 lines
6.7 KiB
Vue
Raw Normal View History

2023-09-08 15:17:21 +08:00
<template>
<view class="content">
<view class="lanBox">
<view class="headbox">
2025-11-08 16:50:26 +08:00
<view class="touxiang" v-if="user.head_pic">
2025-03-25 10:17:30 +08:00
<image :src="user.head_pic" class="headimage" />
2023-09-08 15:17:21 +08:00
</view>
2025-11-08 16:50:26 +08:00
<view class="touxiang" v-else>
<image src="/static/tou.png" class="headimage" />
</view>
2023-09-08 15:17:21 +08:00
</view>
<view class="lan border-bottom">
<view class="left">昵称</view>
<view class="right">
2025-11-08 16:50:26 +08:00
<input name="name" type="text" v-model="memInfo.nickname" placeholder="请输入" class="name" />
2025-03-25 10:17:30 +08:00
<icon class="iconfont icon-bianji" v-if="!memInfo.nickname"></icon>
<icon class="iconfont icon-error" v-else @click="memInfo.nickname=''"></icon>
2023-09-08 15:17:21 +08:00
</view>
</view>
<view class="lan border-bottom">
<view class="left">性别</view>
<view class="right">
<picker mode="selector" :range="sexItem" @change="onsexArr">
2025-11-08 16:50:26 +08:00
<view class="uni-input">{{memInfo.gender==0?'请选择':memInfo.gender==1?'男':'女'}}</view>
2023-09-08 15:17:21 +08:00
<icon class="iconfont icon-arrow-down"></icon>
</picker>
</view>
</view>
<view class="lan border-bottom">
2025-11-08 16:50:26 +08:00
<view class="left">出生日期</view>
<view class="right">
<picker mode="date" :end="endDate" @change="maskClick"
:value="memInfo.birthday?memInfo.birthday:endDate">
<view class="uni-input">{{memInfo.birthday?memInfo.birthday:"请选择"}}</view>
<icon class="iconfont icon-arrow-down"></icon>
</picker>
</view>
</view>
<!-- <view class="lan border-bottom">
2023-09-08 15:17:21 +08:00
<view class="left">年龄</view>
<view class="right">
<picker mode="selector" :range="ageArr" @change="onageArr">
<view class="uni-input">{{!memInfo.age?'请选择年龄':memInfo.age+'岁'}}</view>
<icon class="iconfont icon-arrow-down"></icon>
</picker>
</view>
2025-11-08 16:50:26 +08:00
</view> -->
2023-09-08 15:17:21 +08:00
<view class="lan border-bottom">
<view class="left">身高</view>
<view class="right">
2025-11-08 16:50:26 +08:00
<input type="digit" v-model="memInfo.height" placeholder="请输入" />
2023-09-08 15:17:21 +08:00
<text>cm</text>
</view>
</view>
<view class="lan border-bottom">
<view class="left">体重</view>
<view class="right">
2025-11-08 16:50:26 +08:00
<input type="digit" v-model="memInfo.weight" placeholder="请输入" />
2023-09-08 15:17:21 +08:00
<text>kg</text>
</view>
</view>
2025-11-27 15:04:25 +08:00
<view class="lan border-bottom">
<view class="left">活动系数</view>
<view class="right">
<picker mode="selector" @change="changeClickType" :range="activityLevel" range-key="name" :value="levelInd">
<view>
{{activityLevel[levelInd].name}}
<icon class="iconfont icon-arrow-down"></icon>
</view>
</picker>
</view>
</view>
2023-09-08 15:17:21 +08:00
</view>
<view class="btn" @click="confirmInfo">提交</view>
</view>
</template>
<script>
import {
mapState
} from "vuex";
export default {
data() {
return {
sexItem: [
"男",
"女"
],
2025-11-27 15:04:25 +08:00
levelInd: 0,
2023-09-08 15:17:21 +08:00
isEdit: false,
memInfo: {
2025-11-08 16:50:26 +08:00
birthday: "",
2023-09-08 15:17:21 +08:00
height: "",
weight: "",
2025-11-08 16:50:26 +08:00
gender: 0,
2025-03-25 10:17:30 +08:00
nickname: "",
2025-11-27 15:04:25 +08:00
activity_level: 0,
2023-09-08 15:17:21 +08:00
},
};
},
computed: {
2025-11-27 15:04:25 +08:00
...mapState(["user", "configInfo"]),
2025-11-08 16:50:26 +08:00
endDate() {
return this.$tools.getDate("start")
},
2025-11-27 15:04:25 +08:00
activityLevel() {
return this.configInfo.activity_level
}
2023-09-08 15:17:21 +08:00
},
2025-03-25 10:17:30 +08:00
onLoad(options) {
// 编辑
if (options.familayData) {
let info = options.familayData
this.memInfo = JSON.parse(info)
this.isEdit = true
2025-11-08 16:50:26 +08:00
} else if (this.user.aud_id) {
2025-03-25 10:17:30 +08:00
this.memInfo = this.user
2025-11-27 15:04:25 +08:00
this.levelInd = this.activityLevel.findIndex(ite => ite.val == this.memInfo.activity_level)
if (this.memInfo.activity_level == null) {
this.levelInd = 0
this.memInfo.activity_level = this.activityLevel[0].val
}
2025-03-25 10:17:30 +08:00
}
2025-11-27 15:04:25 +08:00
2025-03-25 10:17:30 +08:00
},
2023-09-08 15:17:21 +08:00
methods: {
// 提交
confirmInfo() {
let that = this
2025-11-27 15:04:25 +08:00
console.log("activity_level", this.memInfo)
2025-03-25 10:17:30 +08:00
if (!this.memInfo.nickname) {
2023-09-08 15:17:21 +08:00
this.$tools.msg("请输入昵称")
return;
}
2025-03-25 10:17:30 +08:00
if (!this.memInfo.gender) {
2023-09-08 15:17:21 +08:00
this.$tools.msg("请选择性别")
return;
}
2025-11-08 16:50:26 +08:00
if (!this.memInfo.birthday) {
this.$tools.msg("请选择出生日期")
2023-09-08 15:17:21 +08:00
return;
}
if (!this.memInfo.height) {
this.$tools.msg("请输入身高")
return;
}
if (!this.memInfo.weight) {
this.$tools.msg("请输入体重")
return;
}
2025-11-27 15:04:25 +08:00
if (!this.memInfo.activity_level) {
this.$tools.msg("请选择活动系数")
return;
}
2023-09-08 15:17:21 +08:00
that.subInfo(this.memInfo)
},
subInfo(data) {
let that = this
2025-03-25 10:17:30 +08:00
that.$model.getUserInfoEdit(data).then(res => {
2023-09-08 15:17:21 +08:00
if (res.code == 0) {
that.$tools.msg("提交成功");
2025-04-02 09:49:39 +08:00
that.handleHomeUserInfo()
2023-09-08 15:17:21 +08:00
uni.navigateBack({
delta: 1
});
} else {
that.$tools.msg(res.message);
}
});
},
2025-04-02 09:49:39 +08:00
// 获取账号信息
handleHomeUserInfo() {
let that = this
that.$model.getHomeUserInfo({}).then(res => {
if (res.code != 0) return
that.$store.commit('changeUserInfo', res.data)
})
},
2025-11-08 16:50:26 +08:00
//确定年龄
maskClick(e) {
console.log("出生日期", e.detail.value)
this.memInfo.birthday = e.detail.value
},
2023-09-08 15:17:21 +08:00
//确定性别
onsexArr(e) {
2025-03-25 10:17:30 +08:00
this.memInfo.gender = this.sexItem[e.target.value] == "男" ? 1 : 2
2023-09-08 15:17:21 +08:00
},
2025-11-27 15:04:25 +08:00
changeClickType(e) {
this.levelInd = e.target.value
this.memInfo.activity_level = this.activityLevel[e.target.value].val
}
2023-09-08 15:17:21 +08:00
},
};
</script>
<style scoped="scoped" lang="scss">
.content {
2025-11-25 14:21:22 +08:00
padding: 0 30rpx;
2023-09-08 15:17:21 +08:00
}
.lanBox {
2025-11-25 14:21:22 +08:00
margin-top: 30rpx;
padding: 30rpx 30rpx 0;
width: calc(100% - 60rpx);
2023-09-08 15:17:21 +08:00
background: #fff;
2025-11-25 14:21:22 +08:00
border-radius: 20rpx;
2023-09-08 15:17:21 +08:00
.headbox {
text-align: center;
position: relative;
display: flex;
justify-content: center;
height: 65px;
2025-11-25 14:21:22 +08:00
margin-bottom: 30rpx;
2023-09-08 15:17:21 +08:00
.headimage {
display: block;
width: 65px;
height: 65px;
font-size: 65px;
border-radius: 50%;
}
}
}
.lan {
display: flex;
align-items: center;
font-size: 14px;
2025-11-25 14:21:22 +08:00
height: 100rpx;
line-height: 100rpx;
2023-09-08 15:17:21 +08:00
border-bottom: 1px solid #f7f7f7;
.left {
width: 24%;
text-align: left;
}
.right {
display: flex;
align-items: center;
justify-content: flex-end;
width: 76%;
2025-11-25 14:21:22 +08:00
height: 100rpx;
2023-09-08 15:17:21 +08:00
position: relative;
text-align: right;
/deep/input {
2025-11-25 14:21:22 +08:00
height: 100rpx;
line-height: 100rpx;
2023-09-08 15:17:21 +08:00
border: none;
background: inherit;
width: 100%;
}
.name {
2025-11-25 14:21:22 +08:00
padding-right: 50rpx;
2023-09-08 15:17:21 +08:00
}
picker {
width: 100%;
text-align: right;
border: none;
margin-right: 8px;
view {
padding-right: 18px;
color: #828282;
font-size: 14px;
}
}
text {
display: inline-block;
2025-11-25 14:21:22 +08:00
width: 60rpx;
2023-09-08 15:17:21 +08:00
text-align: right;
color: #828282;
}
.iconfont {
color: #828282;
position: absolute;
right: 0px;
top: 0;
2025-11-25 14:21:22 +08:00
width: 60rpx;
2023-09-08 15:17:21 +08:00
justify-content: flex-end;
}
}
}
.btn {
color: #fff;
width: 100%;
}
2025-03-25 10:17:30 +08:00
</style>