2025-03-28 15:46:11 +08:00
|
|
|
|
<template>
|
2025-04-25 18:10:54 +08:00
|
|
|
|
<view class="page">
|
|
|
|
|
<view class="line"></view>
|
|
|
|
|
<view class="single-line-box">
|
|
|
|
|
<input
|
|
|
|
|
class="description-input"
|
|
|
|
|
type="text"
|
|
|
|
|
:value="description"
|
|
|
|
|
:model="description"
|
|
|
|
|
placeholder="请填入简介~"
|
|
|
|
|
maxlength="16"
|
|
|
|
|
@input="typingContent"
|
|
|
|
|
/>
|
|
|
|
|
<view class="length-cal">
|
|
|
|
|
<text class="length-text">{{ wordsLength }}/16</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-28 15:46:11 +08:00
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
<view class="notice">
|
|
|
|
|
<text class="tips">*注:请设置0-16字的个人简介</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2025-03-28 15:46:11 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-04-25 18:10:54 +08:00
|
|
|
|
import storage from '@/utils/storage.js'; //缓存
|
|
|
|
|
import { vlogModifyUserInfo } from '@/api/vlog';
|
2025-03-28 15:46:11 +08:00
|
|
|
|
export default {
|
2025-04-25 18:10:54 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
description: storage.getVlogUserInfo().description,
|
|
|
|
|
wordsLength: 0
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onNavigationBarButtonTap() {
|
|
|
|
|
this.updateDesc();
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
|
|
|
|
this.wordsLength = this.description.length;
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
async updateDesc() {
|
|
|
|
|
let me = this;
|
|
|
|
|
let userId = storage.getVlogUserInfo().id;
|
|
|
|
|
let description = this.description == '' ? '这家伙很懒,什么都没留下~' : this.description;
|
|
|
|
|
let pendingUserInfo = {
|
|
|
|
|
id: userId,
|
|
|
|
|
description: description,
|
|
|
|
|
type: 6
|
|
|
|
|
};
|
|
|
|
|
var result = await vlogModifyUserInfo(pendingUserInfo, 6);
|
|
|
|
|
if (result.data.status == 200) {
|
|
|
|
|
let userInfoUpdated = result.data.data;
|
|
|
|
|
// 重置本地用户信息
|
|
|
|
|
storage.setVlogUserInfo(userInfoUpdated);
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: result.data.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 3000
|
|
|
|
|
});
|
|
|
|
|
var timer = setTimeout(() => {
|
|
|
|
|
clearTimeout(timer);
|
|
|
|
|
uni.navigateBack({
|
|
|
|
|
delta: 1,
|
|
|
|
|
animationType: 'fade-out'
|
|
|
|
|
});
|
|
|
|
|
}, 1000);
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: result.data.msg,
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 3000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-03-28 15:46:11 +08:00
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
typingContent(e) {
|
|
|
|
|
this.description = e.detail.value;
|
|
|
|
|
this.wordsLength = this.description.length;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-28 15:46:11 +08:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
<style lang="scss" scoped>
|
2025-03-28 15:46:11 +08:00
|
|
|
|
.page {
|
2025-04-25 18:10:54 +08:00
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: #181b27;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
overflow: hidden;
|
2025-03-28 15:46:11 +08:00
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
.line {
|
|
|
|
|
height: 1rpx;
|
|
|
|
|
background-color: #393a41;
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
}
|
2025-03-28 15:46:11 +08:00
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
.single-line-box {
|
|
|
|
|
align-self: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
.description-input {
|
|
|
|
|
padding-left: 20rpx;
|
|
|
|
|
padding-top: 30rpx;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
width: 700rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
background-color: #4a4c52;
|
|
|
|
|
border-top-left-radius: 20rpx;
|
|
|
|
|
border-top-right-radius: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.length-cal {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background-color: #4a4c52;
|
|
|
|
|
padding-right: 20rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
padding-bottom: 12rpx;
|
|
|
|
|
border-bottom-left-radius: 20rpx;
|
|
|
|
|
border-bottom-right-radius: 20rpx;
|
|
|
|
|
.length-text {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #f1f1f1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-28 15:46:11 +08:00
|
|
|
|
|
2025-04-25 18:10:54 +08:00
|
|
|
|
.notice {
|
|
|
|
|
align-self: center;
|
|
|
|
|
.tips {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #bfbfbf;
|
|
|
|
|
width: 700rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-03-28 15:46:11 +08:00
|
|
|
|
}
|
|
|
|
|
</style>
|