| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <template>
- <view class="address-form">
- <view class="bg-white p-0-30 f30">
- <view class="d-b-c border-b info-item avatar">
- <text class="key-name">头像</text>
- <view class="d-e-c" @click="changeAvatarUrl">
- <view class="info-image">
- <image :src="userInfo.avatarUrl || '/static/default.png'" mode=""></image>
- </view>
- <text class="icon iconfont icon-jiantou"></text>
- </view>
- </view>
- <view class="d-b-c p-30-0 border-b">
- <text class="key-name">会员ID</text>
- <view class="d-e-c">
- <text class="mr20">{{userInfo.user_id}}</text>
- </view>
- </view>
- <view class="d-b-c p-30-0 border-b">
- <text class="key-name">昵称</text>
- <view class="d-e-c" @click="changeName('nickName')">
- <text class="mr20">{{userInfo.nickName}}</text>
- <text class="icon iconfont icon-jiantou"></text>
- </view>
- </view>
- <view class="d-b-c p-30-0">
- <text class="key-name">手机号码</text>
- <view class="d-e-c" v-if="userInfo.mobile">
- <text class="mr20">{{userInfo.mobile}}</text>
- </view>
- <view class="d-e-c" v-if="!userInfo.mobile" @click="gotoBind">
- <text class="mr20">未绑定</text>
- <text class="iconfont icon-jiantou"></text>
- </view>
- </view>
- <view class="setup-btn" @tap="logout()">退出登录</view>
- </view>
- <!-- 修改资料 -->
- <Popup :show="isPopup" type='bottom' :width="750" :padding="0" @hidePopup="hidePopupFunc">
- <view class="d-s-s d-c p20 mpservice-wrap">
- <view class="tc f32 fb ww100">修改</view>
- <template v-if="type=='mobile' || type=='nickName' ||type=='user_name' ||type=='email'||type=='idcard'">
- <view class="pop-input d-b-c">
- <input type="text" class="flex-1" placeholder="请输入" :value="newName" @input="changeinput" />
- <view class="icon-guanbi icon iconfont" @click="clearName"></view>
- </view>
- </template>
- <view class="d-a-c ww100">
- <button class="btn-gray-border" @click="hidePopupFunc">取消</button>
- <button class="btn-gcred" @click="subName">确认</button>
- </view>
- </view>
- </Popup>
- <!-- 上传头像 -->
- <Upload v-if="isUpload" :num='1' @getImgs="getImgsFunc"></Upload>
- </view>
- </template>
- <script>
- import Upload from '@/components/upload/upload.vue';
- import Popup from '@/components/uni-popup.vue';
- export default {
- components: {
- Upload,
- Popup
- },
- data() {
- return {
- userInfo: {},
- isUpload: false,
- isPopup: false,
- newName: '',
- type: ''
- };
- },
- onShow() {
- /*获取个人中心数据*/
- this.getData();
- },
- methods: {
- /*获取数据*/
- getData() {
- let self = this;
- uni.showLoading({
- title: '加载中'
- });
- self._get('user.index/setting', {}, function(res) {
- self.userInfo = res.data.userInfo;
- uni.hideLoading();
- });
- },
- gotoBind() {
- this.gotoPage("/pages/user/modify-phone/modify-phone");
- },
- logout() {
- uni.removeStorageSync('token');
- uni.removeStorageSync('user_id');
- this.gotoPage('/pages/index/index');
- },
- changeName(type) {
- let self = this;
- if (type == 'mobile') {
- self.oldmobile = self.userInfo.mobile;
- }
- self.type = type;
- self.newName = self.userInfo[type];
- self.isPopup = true;
- },
- hidePopupFunc() {
- this.newName = '';
- this.isPopup = false;
- },
- changeinput(e) {
- this.newName = e.target.value;
- },
- clearName() {
- this.newName = '';
- },
- subName() {
- let self = this;
- if (self.loading) {
- return
- }
- self.userInfo[self.type] = this.newName;
- self.update()
- },
- /* 修改头像 */
- changeAvatarUrl() {
- let self = this;
- self.isUpload = true;
- },
- /*获取上传的图片*/
- getImgsFunc(e) {
- let self = this;
- self.isUpload = false;
- if (e && typeof(e) != 'undefined') {
- let self = this;
- self.userInfo.avatarUrl = e[0].file_path;
- self.update();
- }
- },
- update() {
- let self = this;
- if (self.loading) {
- return
- }
- uni.showLoading({
- title: '加载中'
- })
- let params = self.userInfo;
- self.loading = true;
- self._post('user.user/updateInfo', params, function(res) {
- self.showSuccess('修改成功', function() {
- self.loading = false;
- self.isPopup = false;
- uni.hideLoading();
- self.getData();
- },
- function(err) {
- uni.hideLoading();
- self.loading = false;
- self.isPopup = false;
- }
- )
- });
- },
- }
- };
- </script>
- <style lang="scss">
- .address-form .key-name {
- width: 200rpx;
- }
- .address-form .btn-red {
- height: 88rpx;
- line-height: 88rpx;
- border-radius: 44rpx;
- box-shadow: 0 8rpx 16rpx 0 rgba(226, 35, 26, .6);
- }
- .setup-btn {
- position: fixed;
- bottom: 20rpx;
- left: 5%;
- width: 90%;
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 80rpx;
- background-color: #fd3826;
- color: #fff;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- margin: 0 auto;
- }
- .info-item.avatar {
- height: 162rpx;
- }
- .info-image {
- width: 112rpx;
- height: 112rpx;
- border-radius: 10rpx;
- margin-right: 20rpx;
- image {
- width: 112rpx;
- height: 112rpx;
- border-radius: 10rpx;
- }
- }
- .make-item {
- height: 60rpx;
- }
- .btn-red.code-btn {
- height: 54rpx;
- line-height: 54rpx;
- }
- .btn-red.code-btn.issend {
- background: #666666;
- border: none;
- color: #FFFFFF;
- box-shadow: none;
- }
- .pop-input {
- width: 100%;
- margin: 26rpx 0;
- box-sizing: border-box;
- border-bottom: 2rpx solid #D9D9D9;
- }
- .pop-input input {
- width: 100%;
- padding-left: 15rpx;
- font-size: 26rpx;
- color: #333333;
- margin: 16rpx 0;
- text-align: left;
- height: 60rpx;
- line-height: 60rpx;
- }
- .pop-input .icon.icon-guanbi {
- width: 38rpx;
- height: 38rpx;
- background-color: #999999;
- color: #FFFFFF;
- font-size: 22rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- opacity: 0.8;
- }
- .sub-box {
- padding: 40rpx 0;
- .setup-btn {
- width: 686rpx;
- height: 84rpx;
- background: #E03325;
- border-radius: 6rpx;
- line-height: 84rpx;
- color: #fff;
- font-size: 30rpx;
- display: flex;
- justify-content: center;
- margin: 0 auto;
- }
- }
- </style>
|