Vue3 + Pinia + Vite5 仿抖音,完全度90% . Vue3 + Pinia + Vite5 imitate TikTok with 90% completeness
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.
 
 
 
 
 

245 lines
5.8 KiB

<template>
<div class="edit">
<BaseHeader>
<template v-slot:center>
<div class="title">
<span class="f16">编辑资料</span>
<span class="sub f10">已完成85%</span>
</div>
</template>
</BaseHeader>
<div class="userinfo">
<div class="change-avatar">
<div class="avatar-ctn" @click="showAvatarDialog">
<img class="avatar" src="../../../assets/img/icon/avatar/6.png" alt="">
<img class="change" src="../../../assets/img/icon/me/camera-light.png" alt="">
</div>
<span>点击更换头像</span>
</div>
<div class="row" @click="$nav('/edit-userinfo-item',{type:1})">
<div class="left">名字</div>
<div class="right">
<span>{{ isEmpty(userinfo.name) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="$nav('/edit-userinfo-item',{type:2})">
<div class="left">抖音号</div>
<div class="right">
<span>{{ isEmpty(userinfo.account) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="$nav('/edit-userinfo-item',{type:3})">
<div class="left">简介</div>
<div class="right">
<span>{{ isEmpty(userinfo.desc) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="showSexDialog">
<div class="left">性别</div>
<div class="right">
<span>{{ isEmpty(userinfo.sex) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="showBirthdayDialog">
<div class="left">生日</div>
<div class="right">
<span>{{ isEmpty(userinfo.birthday) }}</span>
<div v-show="false" id="trigger1"></div>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="$nav('/choose-location')">
<div class="left">所在地</div>
<div class="right">
<span>{{ isEmpty(userinfo.location) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
<div class="row" @click="$nav('/add-school')">
<div class="left">学校</div>
<div class="right">
<span>{{ isEmpty(userinfo.school.name) }}</span>
<back scale=".8" direction="right"></back>
</div>
</div>
</div>
</div>
</template>
<script>
import MobileSelect from "mobile-select";
import {mapState} from "vuex";
export default {
name: "EditUserInfo",
components: {},
data() {
return {
sexList: [
{id: 1, name: '男'},
{id: 2, name: '女'},
{id: 3, name: '不展示'},
],
avatarList: [
{id: 1, name: '拍一张'},
{id: 2, name: '从相册选择'},
{id: 3, name: '查看大图'},
{id: 4, name: '查看大图'},
]
}
},
computed: {
...mapState({
userinfo: 'userinfo',
})
},
methods: {
isEmpty(val) {
if (val) return val
return '点击设置'
},
showSexDialog() {
this.$showSelectDialog(this.sexList, async e => {
this.$showLoading()
await this.$sleep(500)
this.$store.commit('setUserinfo', {...this.userinfo, sex: e.name})
this.$hideLoading()
})
},
showAvatarDialog() {
this.$showSelectDialog(this.avatarList, e => {
console.log(e)
})
},
showBirthdayDialog() {
new MobileSelect({
trigger: "#trigger1",
title: "生日",
connector: "生日",
wheels: [
{
data: Array.apply(null, {length: 100}).map((v, i) => new Date().getFullYear() - i)
},
{
data: Array.apply(null, {length: 12}).map((v, i) => 12 - i)
},
{
data: Array.apply(null, {length: 31}).map((v, i) => 31 - i)
},
],
callback: async (indexArr, data) => {
console.log(data)
this.$showLoading()
await this.$sleep(500)
this.$store.commit('setUserinfo', {...this.userinfo, birthday: data.join('-')})
this.$hideLoading()
// this.localSchool.joinTime = ~~data[0]
}
}).show()
},
}
}
</script>
<style scoped lang="less">
@import "../../../assets/scss/index";
.edit {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
overflow: auto;
font-size: 1.4rem;
}
.title {
display: flex;
flex-direction: column;
align-items: center;
.sub {
color: @second-text-color;
}
}
.userinfo {
padding-top: 6rem;
color: white;
.change-avatar {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 3rem 0;
@avatar-width: 8rem;
.avatar-ctn {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1rem;
width: @avatar-width;
height: @avatar-width;
.avatar {
opacity: .5;
position: absolute;
width: @avatar-width;
height: @avatar-width;
border-radius: 50%;
}
.change {
width: 2.8rem;
z-index: 9;
position: relative;
}
}
}
}
.change-dialog {
z-index: 10;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #000000bb;
display: flex;
justify-content: center;
align-items: center;
.content {
background: white;
width: 80%;
padding: .5rem 0;
border-radius: 2px;
box-sizing: border-box;
.item {
font-size: 1.5rem;
padding: 1.5rem 2rem;
transition: all .2s;
&:active {
background: darkgray;
}
}
}
}
</style>