123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <view class="content">
- <view class="row1">
- <text class="tit">头像</text>
- <view class="background-img" @click="upload"><image class="background-img" v-model="avatar" :src="avatar" mode="aspectFill"></image></view>
- </view>
- <view class="row">
- <text class="tit">昵称</text>
- <input class="input" type="button" v-model="name" placeholder-class="placeholder" />
- </view>
- <view class="row">
- <text class="tit">邀请码</text>
- <input class="input" disabled type="text" v-model="uid" placeholder-class="placeholder" />
- </view>
- <view class="row">
- <text class="tit">账号</text>
- <input class="input" disabled type="text" v-model="phone" placeholder-class="placeholder" />
- </view>
- <button class="add-btn" @click="confirm">修改</button>
- <button class="loginout" @click="loginout">退出登录</button>
- </view>
- </template>
- <script>
- import { mapState,mapMutations } from 'vuex';
- import { userEdit,logout } from '@/api/set.js';
- import { upload } from '@/api/order.js'
- export default {
- data() {
- return {
- name: '', // 昵称
- uid: '',
- phone:'',
- avatar: '',
- };
- },
- computed: {
- ...mapState('user',['userInfo']),
- startDate() {
- console.log('start');
- },
- endDate() {
- console.log('end');
- }
- },
- onShow(option) {
- // 获取生日日期
- console.log(this.userInfo);
- this.name = this.userInfo.nickname + '';
- this.uid = this.userInfo.uid || '';
- this.avatar = this.userInfo.avatar || '';
- this.phone = this.userInfo.phone || '';
- },
- methods: {
- ...mapMutations('user', ['logout']),
- // 上传头像
- upload() {
- console.log("111111")
- upload({
- filename: ''
- }).then(data => {
- this.avatar = data[0].url;
- console.log(this.avatar, 'tup')
- setTimeout(() => {
- uni.hideLoading()
- }, 500)
- });
- },
- switchChange(e) {
- this.addressData.default = e.value;
- },
- confirm() {
- userEdit({
- nickname: this.name,
- avatar: this.avatar,
- }).then(e => {
- this.$api.msg('修改成功');
- setTimeout(() => {
- uni.switchTab({
- url: '/pages/user/user'
- });
- }, 1000);
- console.log(e);
- })
- .catch(e => {
- console.log(e);
- });
- },
- loginout() {
- let obj = this;
- uni.showModal({
- content: '确定要退出登录么',
- success: e => {
- if (e.confirm) {
- uni.removeStorageSync('canChange')
- logout({}).then()
- uni.navigateBack();
- obj.logout();
- }
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: $page-color-base;
- }
- .row1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- padding: 0 30upx;
- height: 110upx;
- background: #fff;
- margin-bottom: 20upx;
- .tit {
- flex-shrink: 0;
- width: 120upx;
- font-size: $font-lg;
- color: $font-color-dark;
- }
-
- .background-img {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- background: #f2f2f2;
- }
- }
- .row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: relative;
- padding: 0 30upx;
- height: 110upx;
- background: #fff;
- .tit {
- flex-shrink: 0;
- width: 120upx;
- font-size: $font-lg;
- color: $font-color-dark;
- }
- .tit1 {
- flex-shrink: 0;
- width: 150upx;
- font-size: $font-lg;
- color: $font-color-dark;
-
- }
- .input {
- text-align: right;
- flex: 1;
- font-size: $font-base;
- color: $color-gray;
- }
- .iconlocation {
- font-size: 36upx;
- color: $font-color-light;
- }
- }
- .add-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 560upx;
- height: 80upx;
- margin: 60upx auto;
- font-size: $font-lg;
- color: #fff;
- background: $base-color;
- border-radius: 40upx;
- }
- .loginout {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 560upx;
- height: 80upx;
- margin: 60upx auto;
- font-size: $font-lg;
- color: $base-color;
- background: #FFFFFF;
- border: 1px solid $base-color;
- border-radius: 40upx;
- }
- </style>
|