123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <template>
- <view class="container">
- <view class="row b-b flex">
- <text class="tit">头像</text>
- <image :src="userInfo.avatar" @click.stop="imgsub"></image>
- </view>
- <view class="row b-b flex">
- <text class="tit">昵称</text>
- <input class="input" v-model="userInfo.nickname" type="text" placeholder-class="placeholder" />
- </view>
- <view class="row b-b flex">
- <text class="tit">ID</text>
- <input class="input" v-model="userInfo.uid" type="text" disabled="true" placeholder-class="placeholder" />
- </view>
- <view class="row b-b flex">
- <text class="tit">用户账号</text>
- <input class="input" v-model="userInfo.account" type="number" disabled="true" placeholder-class="placeholder" />
- </view>
- <view class="submit-box flex" >
- <view class="submit" @click="edit">确认修改</view>
- <view class="submit" @click="toLogout">退出登录</view>
- </view>
-
- </view>
- </template>
- <script>
- import uniList from '@/components/uni-list/uni-list.vue';
- import uniListItem from '@/components/uni-list-item/uni-list-item.vue';
- import { mapState, mapMutations } from 'vuex';
- import { logout } from '@/api/set.js';
- import {
- uploads,edit
- } from '@/api/user.js';
- export default {
- components: {
- uniList,
- uniListItem
- },
- data() {
- return {
- // nickName:'李淡淡',
- // id:'HFBNXISN',
- // account:'13745262356',
- userInfo:'',
- };
- },
- onLoad() {
- this.userInfo = uni.getStorageSync('userInfo') || '';
- },
- methods: {
- ...mapMutations('user',['logout']),
- //退出登录
- toLogout() {
- let obj = this;
- uni.showModal({
- content: '确定要退出登录么',
- success: e => {
- if (e.confirm) {
- logout({}).then(e => {
- obj.logout();
- uni.navigateTo({
- url:'/pages/public/login'
- })
- })
- .catch(e => {
- console.log(e);
- });
- }
- }
- });
- },
- imgsub() {
- console.log('上传头像')
- uploads({
- filename: ''
- }).then(data => {
- console.log("data",data);
- this.userInfo.avatar = data[0].url;
- })
- },
- edit() {
- const that = this;
- edit({
- avatar: this.userInfo.avatar,
- nickname: this.userInfo.nickname
- }).then( e =>{
- that.$api.msg('修改成功');
- setTimeout(()=> {
- uni.switchTab({
- url:'/pages/user/user'
- });
- }, 1000);
- }).catch(e =>{
- console.log(e);
- that.$api.msg('修改失败');
- })
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- min-height: 100%;
- .container{
- height: 100%;
-
- }
- }
- .row {
- padding: 42rpx 25rpx;
- font-size: 30rpx;
- color: #333333;
- image{
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- }
- .input {
- text-align: right;
- color: #333333;
- }
- }
- .submit-box{
- padding-top: 157rpx;
- .submit{
- margin: 40rpx;
- width: 50%;
- background-color: #5771DF;
- color: #FFFFFF;
- text-align: center;
- padding:26rpx 0rpx;
- border-radius: 50rpx;
- }
- }
- </style>
|