123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498 |
- <!-- 修改个人信息 -->
- <template>
- <view class="container fs28" :style="{ height: screenHeight + 'px' }">
- <global-loading />
- <view class="headBox">
- <view class="personalHead-box flex-sp-between flex-display flex-items">
- <label>头像</label>
- <image v-if="item.headImage" class="user-headImg" :src="item.headImage"></image>
- <image v-else class="user-headImg" src="../../static/images/origin/morentouxiang.png">
- </image>
- </view>
- </view>
- <view class="personalBack-box flex-items-plus flex-column">
- <view class="personalHead-box flex-sp-between flex-display flex-items">
- <label>昵称</label>
- <!-- <label class="font-color-999" v-if="item.name">{{item.name}}</label> -->
- <!-- <label class="font-color-999" v-else>{{item.phone}}</label> -->
- <!-- <input class="nameInput" v-if="name" v-model="name" type="text" placeholder="请输入内容" @blur="changeName(1)" /> -->
- <!-- <input class="nameInput" v-else type="text" v-model="phone" placeholder="请输入内容" @blur="changeName(2)" /> -->
- <input v-model="name" class="nameInput" type="text" placeholder="请输入内容" @blur="changeName" />
- </view>
- <view class="personalHead-box flex-sp-between flex-display flex-items" @click="sexShowClick">
- <label>性别</label>
- <label class="font-color-999">{{ item.sex }}</label>
- </view>
- <view class="personalHead-box1 flex-sp-between flex-display flex-items" @click="changeTime">
- <label>生日</label>
- <label class="font-color-999">{{ birthday | parsebirthday }}</label>
- <!-- <u-calendar v-model="birthdateShow" :mode="mode"></u-calendar> -->
- </view>
- </view>
- <view class="iphoneNumback-box flex-items-plus">
- <view class="iphoneNum-box flex-row-plus flex-sp-between flex-items">
- <label style="width: 50%;">手机号</label>
- <label v-if="phone" class="font-color-C5AA7B">{{ phone }}</label>
- <label v-else class="font-color-C5AA7B">
- <!-- #ifdef MP-ALIPAY -->
- <button
- class="verifyPhone" open-type="getAuthorize" scope="phoneNumber" @getAuthorize="onGetAuthorize"
- @error="onAuthError"
- >
- 去验证
- </button>
- <!-- #endif -->
- <!-- #ifndef MP-ALIPAY -->
- 去验证
- <!-- #endif -->
- </label>
- </view>
- </view>
- <view class="agreement">
- <view class="agreement agreement_top" @click="protocol('app_privacy_agreement')">
- <text>用户隐私协议</text>
- <image src="../../static/images/origin/right.png" mode=""></image>
- </view>
- <view class="agreement" @click="protocol('app_user_agreement')">
- <text>用户服务协议</text>
- <image src="../../static/images/origin/right.png" mode=""></image>
- </view>
- </view>
- <view class="mar-top-100">
- <view class="exitLoginBut flex-items-plus" @click="quit">退出登录</view>
- <!-- #ifdef APP-PLUS -->
- <view class="cancellation" @click="cancellation">注销账号</view>
- <!-- #endif -->
- </view>
- <!-- 修改性别弹窗 -->
- <u-select v-model="sexShow" title="修改性别" :list="sexList" @confirm="ConfirmSex"></u-select>
- <!-- 修改生日弹窗 -->
- <u-picker v-model="timeShow" mode="time" title="修改生日" :params="params" start-year="1970" @confirm="ConfirmTime">
- </u-picker>
- <!-- <view>
- <u-popup v-model="sexShow" mode="center" close-icon-size ="20" border-radius="10" :closeable='true' close-icon-pos = "top-right">
- <view class="flex-items-plus flex-column">
- <label class="mar-top-50 fs-bold">性别</label>
- <u-radio-group class="sexRadio-box flex-items-plus flex-column" v-model="item.sex" @change="sexRadioGroupChange">
- <u-radio class="sexRadio"
- v-for="(item, index) in sexList" :key="index"
- :name="item.id"
- :disabled="item.disabled"
- active-color="#C5AA7B"
- >
- {{item.name}}
- </u-radio>
- </u-radio-group>
- </view>
- </u-popup>
- </view> -->
- </view>
- </template>
- <script>
- import { J_STORAGE_KEY } from '../../config/constant'
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- export default {
- filters: {
- parsebirthday(birthday) {
- if (birthday == '') {
- return '1970-01-01'
- }
- return birthday
- }
- },
- data() {
- return {
- screenHeight: 0,
- birthdateShow: false,
- mode: 'date',
- birthday: '',
- // sexList: [{
- // id: 1,
- // name: '男',
- // disabled: false
- // }, {
- // id: 2,
- // name: '女',
- // disabled: false
- // }],
- sexShow: false,
- timeShow: false,
- item: {},
- UpdateInfoQuery: {
- headimg: '',
- sex: '',
- nickname: ''
- },
- code: '',
- phone: '',
- name: '',
- sexList: [{
- value: '1',
- label: '男'
- },
- {
- value: '2',
- label: '女'
- }],
- params: { // 日期
- year: true,
- month: true,
- day: true,
- hour: false,
- minute: false,
- second: false
- }
- }
- },
- onLoad() {
- this.GetUser()
- },
- mounted() {
- // 获取手机的屏幕高度
- uni.getSystemInfo({
- success: (res) => {
- this.screenHeight = res.screenHeight
- }
- })
- },
- methods: {
- // 多商户用户协议
- protocol(type) {
- uni.navigateTo({
- url: 'protocol?type=' + type
- })
- },
- cancellation() {
- uni.showModal({
- title: '温馨提示',
- content: '是否注销此账号!',
- confirmText: '前往注销',
- success(res) {
- if (res.cancel) {
- uni.showToast({
- icon: 'none',
- title: '已取消'
- })
- } else if (res.confirm) {
- uni.navigateTo({
- url: 'unsubscribe'
- })
- }
- }
- })
- },
- // 修改生日
- changeTime() {
- if (this.birthday == '1970-01-01' || this.birthday == '') {
- this.timeShow = true
- }
- },
- // 修改昵称
- changeName() {
- const newName = this.name || this.phone
- if (!newName) {
- uni.showToast({
- title: '请输入新的内容',
- icon: 'none'
- })
- return false
- }
- // uni.showLoading({
- // mask: true,
- // title: "正在加载中"
- // })
- NET.request(API.UpdateUser, {
- name: newName
- }, 'POST').then((res) => {
- this.GetUser()
- uni.hideLoading()
- uni.showToast({
- title: '修改成功',
- icon: 'success'
- })
- })
- .catch((res) => {
- uni.hideLoading()
- })
- },
- // 提交修改生日
- ConfirmTime(content) {
- if (this.birthday == '1970-01-01' || this.birthday == '') {
- const birthday = content.year + '-' + content.month + '-' + content.day
- // uni.showLoading({
- // mask: true,
- // title: "正在加载中"
- // })
- NET.request(API.UpdateUser, {
- birthday
- }, 'POST').then((res) => {
- this.GetUser()
- uni.hideLoading()
- uni.showToast({
- title: '修改成功',
- icon: 'success'
- })
- })
- .catch((res) => {
- uni.hideLoading()
- })
- }
- },
- // 点击弹窗修改性别
- sexShowClick() {
- this.sexShow = true
- },
- // 提交修改性别
- ConfirmSex(content) {
- // uni.showLoading({
- // mask: true,
- // title: "正在加载中"
- // })
- const sex = content[0].label
- NET.request(API.UpdateUser, {
- sex
- }, 'POST').then((res) => {
- this.GetUser()
- uni.hideLoading()
- uni.showToast({
- title: '修改成功',
- icon: 'success'
- })
- })
- .catch((res) => {
- uni.hideLoading()
- })
- },
- // 获取用户信息
- GetUser() {
- NET.request(API.GetUser, {}, 'GET').then((res) => {
- this.item = res.data
- this.phone = res.data.phone
- this.name = res.data.name
- this.birthday = res.data.birthday
- })
- .catch((res) => {
- })
- },
- userHeadTap() {
- return
- uni.chooseImage({
- count: 1,
- sizeType: [ 'compressed' ],
- success: (res) => { }
- })
- },
- // 生日
- birthdateChange(e) {
- return
- this.item.birth = e.result
- },
- // 性别
- sexRadioGroupChange(e) {
- },
- quit() {
- // uni.showLoading({
- // mask: true,
- // title: '正在退出...',
- // duration: 2000,
- // });
- setTimeout(function () {
- uni.removeStorageSync(J_STORAGE_KEY)
- uni.removeStorageSync('distributorId')
- uni.removeStorageSync('allCartNum')
- uni.reLaunch({
- url: 'login',
- success() {
- uni.hideLoading()
- }
- })
- }, 1000)
- },
- onGetAuthorize() {
- const that = this
- // uni.showLoading({
- // mask: true,
- // title: '验证中...',
- // })
- this.$showLoading()
- my.getPhoneNumber({
- success: (res) => {
- this.$hideLoading()
- const encryptedData = res.response
- NET.request(API.UpdateAliPhone, {
- 'phone': encryptedData
- }, 'POST').then((res) => {
- const item = res.data
- uni.setStorageSync(J_STORAGE_KEY, item)
- that.phone = item.phone
- // uni.hideLoading()
- })
- .finally((res) => {
- uni.hideLoading()
- })
- },
- fail: (res) => {
- this.$hideLoading()
- uni.hideLoading()
- uni.showToast({
- title: '验证失败',
- icon: 'none'
- })
- }
- })
- },
- onAuthError() {
- }
- }
- }
- </script>
- <style lang='scss'>
- .agreement {
- width: 710rpx;
- margin: 20rpx auto 0;
- background-color: #fff;
- .agreement_top {
- &::after {
- content: "";
- display: block;
- position: absolute;
- left: 32rpx;
- bottom: 0;
- width: 646rpx;
- height: 4rpx;
- background: #F5F7FA;
- }
- }
- .agreement {
- width: 100%;
- height: 108rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #333;
- padding: 0 10rpx 0 32rpx;
- box-sizing: border-box;
- position: relative;
- image {
- width: 60rpx;
- height: 60rpx;
- }
- }
- }
- .phoneWxBut {
- width: 160rpx;
- height: 60rpx;
- border: 1rpx solid #FF7800;
- border-radius: 44rpx;
- font-size: 28rpx;
- line-height: 60rpx;
- }
- .container {
- width: 100%;
- background-color: #F7F7F7;
- padding: 20rpx;
- .personalBack-box {
- width: 100%;
- background-color: #FFFFFF;
- .personalHead-box {
- width: 90%;
- border-bottom: 1upx solid #E5E5E5;
- padding-bottom: 20upx;
- margin-top: 36upx;
- .nameInput {
- text-align: right;
- }
- }
- .personalHead-box1 {
- width: 90%;
- margin-top: 36upx;
- padding-bottom: 20upx;
- .user-headImg {
- width: 120upx;
- height: 112upx;
- border-radius: 50%;
- }
- }
- }
- .iphoneNumback-box {
- width: 100%;
- background-color: #FFFFFF;
- height: 100upx;
- margin-top: 20upx;
- .iphoneNum-box {
- width: 90%;
- .verifyPhone {
- color: #C5AA7B;
- font-size: 30upx;
- border: 0;
- }
- }
- }
- .exitLoginBut {
- height: 100upx;
- background: #333333;
- color: #FFEBC4;
- }
- .cancellation {
- height: 100rpx;
- margin: 24rpx auto 0;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #C5AA7B;
- font-size: 28rpx;
- background: #FFFFFF;
- border: 3rpx solid #F3F4F5;
- }
- .sexRadio-box {
- width: 520upx;
- height: 328upx;
- .sexRadio {
- margin-top: 30upx;
- padding-bottom: 44upx;
- }
- }
- .headBox {
- margin-bottom: 20rpx;
- background: #FFFFFF;
- padding: 25rpx 0;
- .personalHead-box {
- width: 90%;
- margin: 0 auto;
- }
- .user-headImg {
- width: 120upx;
- height: 112upx;
- border-radius: 50%;
- }
- }
- }
- </style>
|