overseas/pages/users/user_nickname/index.vue

141 lines
3.0 KiB
Vue
Raw Normal View History

2024-03-21 17:52:58 +08:00
<template>
<view :style="viewColor">
<form report-submit='true'>
<h2>修改昵称</h2>
<view class="ChangePassword">
<view class="list">
<view class="item">
<input type='text' name='nickname' :value='userInfo.nickname' disabled></input>
</view>
<view class="item acea-row row-between-wrapper">
<input type='text' placeholder='新昵称(限8个字符以内)' maxlength="8" placeholder-class='placeholder' class="codeIput"
v-model="inputcontent"></input>
</view>
</view>
<button form-type="submit" @click="inputEdita" class="confirmBnt">确认修改</button>
</view>
</form>
</view>
</template>
<script>
2024-03-21 18:05:36 +08:00
2024-03-21 17:52:58 +08:00
import { getUserInfo, userEdit, editAvatar } from '@/api/user.js'
import { mapGetters } from "vuex";
import { toLogin } from '@/libs/login.js';
export default {
components: {},
data() {
return {
userInfo: {},
inputcontent: "",
};
},
computed: mapGetters(['isLogin', 'viewColor']),
onLoad() {
if (this.isLogin) {
this.getUserInfo();
} else {
toLogin()
};
},
methods: {
/**
* 获取用户详情
*/
getUserInfo: function() {
let that = this;
getUserInfo().then(res => {
that.$set(that, 'userInfo', res.data);
});
},
inputEdita() {
if (this.userInfo.nickname == this.inputcontent) {
uni.showToast({
title: '昵称重复,请重新修改!',
icon:'none',
});
} else if (this.inputcontent == '') {
uni.showToast({
title: '昵称不能为空!',
icon: 'none',
});
} else {
editAvatar({
nickname: this.inputcontent
}).then(res => {
return this.$util.Tips({
title: '修改成功!',
icon: 'success'
}, {
tab: 5,
url: '/pages/users/user_info/index'
});
}).catch(err => {
uni.showToast({
title: err,
icon: 'none'
});
});
}
},
}
}
</script>
<style lang="scss" scoped>
h2 {
text-align: center;
margin-top: 30rpx;
font-weight: 600;
}
page {
background-color: #fff !important;
}
.ChangePassword .phone {
font-size: 32rpx;
font-weight: bold;
text-align: center;
margin-top: 55rpx;
}
.ChangePassword .list {
width: 580rpx;
margin: 53rpx auto 0 auto;
}
.ChangePassword .list .item {
width: 100%;
height: 110rpx;
border-bottom: 2rpx solid #f0f0f0;
}
.ChangePassword .list .item input {
width: 100%;
height: 100%;
font-size: 32rpx;
}
.ChangePassword .list .item .placeholder {
color: #b9b9bc;
}
.ChangePassword .list .item input.codeIput {
width: 340rpx;
}
.ChangePassword .list .item .code {
font-size: 32rpx;
background-color: #fff;
color: var(--view-theme);
}
.ChangePassword .list .item .code.on {
color: #b9b9bc;
}
.ChangePassword .confirmBnt {
font-size: 32rpx;
width: 580rpx;
height: 90rpx;
border-radius: 45rpx;
color: #fff;
margin: 92rpx auto 0 auto;
text-align: center;
line-height: 90rpx;
background-color: var(--view-theme);
}
</style>