new-mshop-view/pages/users/user_nickname/index.vue

223 lines
4.7 KiB
Vue

<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>
<authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize>
</view>
</template>
<script>
import {
getUserInfo,
userEdit,
editAvatar
} from '@/api/user.js'
import {
mapGetters
} from "vuex";
import authorize from '@/components/Authorize';
import spread from "../../../libs/spread";
export default {
components: {
authorize
},
data() {
return {
userInfo: {},
inputcontent: "",
isAuto: false,
isShowAuth: false, //是否隐藏授权
};
},
computed: mapGetters(['isLogin','uid', 'viewColor']),
onLoad(options) {
if (this.isLogin) {
this.getUserInfo();
} else {
this.isAuto = true;
this.isShowAuth = true
};
// 关系处理
if(options.spread) spread(options.spread, this.isLogin)
},
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'
});
});
}
},
/**
* 授权回调
*/
onLoadFun: function() {
this.isShowAuth = false;
this.getUserInfo();
},
// 授权关闭
authColse: function(e) {
this.isShowAuth = e
},
// #ifdef MP
// 分享给好友
onShareAppMessage () {
let pages = getCurrentPages();
let page = pages[pages.length - 1]
let shareData = {
title: '昵称',
path: page.$page.fullPath || '/' + page.route,
};
// 判断:用户是否登录 已经登录则添加分享人信息,未登录则正常分享
if (this.isLogin) shareData.path = shareData.path + '?spread=' + this.uid;
// 返回最终的分享配置信息
return shareData
},
// 分享到朋友圈
onShareTimeline() {
let shareData = {
title: '昵称',
query: {},
};
// 判断:用户是否登录 已经登录则添加分享人信息,未登录则正常分享
if (this.isLogin) shareData.query.spread = this.uid;
// 返回最终的分享配置信息
return shareData
},
// #endif
}
}
</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);
}
.getPhoneBtn {
font-size: 32rpx;
width: 580rpx;
height: 90rpx;
border-radius: 45rpx;
border: 1px solid #3CB625;
color: #3CB625;
margin: 40rpx auto 0 auto;
text-align: center;
line-height: 90rpx;
.iconfont {
font-size: 32rpx;
margin-right: 12rpx;
}
}
</style>