123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <!-- 修改个人信息 -->
- <template>
- <view class="container fs28" :style="{ height: screenHeight + 'px' }">
- <JHeader title="个人信息" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view class="headBox">
- <view class="personalHead-box flex-sp-between flex-display flex-items">
- <label>头像</label>
- <image v-if="$store.getters.userInfo.headImage" class="user-headImg" :src="common.seamingImgUrl($store.getters.userInfo.headImage)"></image>
- <image v-else class="user-headImg" src="../../../static/images/new-user/default-user-avatar.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>
- <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">{{ $store.getters.userInfo.sex }}</label>
- </view>
- <view class="personalHead-box1">
- <picker
- mode="date" :value="$store.getters.userInfo.birthday" start="1970-01-01"
- :disabled="!(($store.getters.userInfo.birthday === '1970-01-01') || !$store.getters.userInfo.birthday)"
- @change="handleConfirmTime"
- >
- <view class="flex-sp-between flex-display flex-items">
- <label>生日</label>
- <label class="font-color-999">{{ $store.getters.userInfo.birthday }}</label>
- </view>
- </picker>
- </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="$store.getters.userInfo.phone" class="font-color-C5AA7B">{{ $store.getters.userInfo.phone }}</label>
- <label v-else class="font-color-C5AA7B">
- <!-- #ifdef MP-ALIPAY -->
- <button class="verifyPhone" open-type="getAuthorize" scope="phoneNumber" @getAuthorize="onGetAuthorize">
- 去验证
- </button>
- <!-- #endif -->
- <!-- #ifndef MP-ALIPAY -->
- 去验证
- <!-- #endif -->
- </label>
- </view>
- </view>
- <view class="agreement">
- <view class="agreement agreement_top" @click="protocol('app_privacy_agreement')">
- <text>用户隐私协议</text>
- <tui-icon :size="60" color="#999999" name="arrowright" unit="upx" margin="0"></tui-icon>
- </view>
- <view class="agreement" @click="protocol('app_user_agreement')">
- <text>用户服务协议</text>
- <tui-icon :size="60" color="#999999" name="arrowright" unit="upx" margin="0"></tui-icon>
- </view>
- </view>
- <view style="margin-top: 30upx;background-color: #ffffff;">
- <view style="padding: 28upx 38upx;" @click="isShowResettingPasswordDialog = true">重置密码 ></view>
- </view>
- <view class="mar-top-100">
- <view class="exitLoginBut flex-items-plus" @click="handleQuit">退出登录</view>
- <!-- #ifdef APP-PLUS -->
- <view class="cancellation" @click="cancellation">注销账号</view>
- <!-- #endif -->
- </view>
- <!-- 修改性别弹窗 -->
- <tui-select :list="sexList" reverse :show="sexShow" @confirm="handleConfirmSex" @close="sexShow = false"></tui-select>
- <tui-dialog
- style="position: relative;z-index: 888;" :buttons="[{ text: '取消' }, { text: '确定', color: '#586c94' }]"
- :show="isShowResettingPasswordDialog" title="重置密码" @click="handleResettingPassword"
- >
- <template #content>
- <tui-input v-model="resettingFormData.phone" label="手机号" type="number" placeholder="请输入手机号"></tui-input>
- <tui-input v-model="resettingFormData.password" label="密码" type="password" placeholder="请输入密码"></tui-input>
- <tui-input
- v-model="resettingFormData.passwordAgain" label="确认密码" type="password"
- placeholder="请再次输入密码"
- ></tui-input>
- <tui-input v-model="resettingFormData.verificationCode" label="验证码" type="number" placeholder="请输入验证码">
- <template #right>
- <tui-countdown-verify
- ref="refResettingPasswordVerify" width="144upx"
- @send="handleSendVerify"
- ></tui-countdown-verify>
- </template>
- </tui-input>
- </template>
- </tui-dialog>
- </view>
- </template>
- <script>
- import { updateAliPhoneAppApi, getVerifyCodeApi, updatePasswordUserApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'PersonalDetails',
- data() {
- return {
- userId: '',
- screenHeight: 0,
- sexShow: false,
- timeShow: false,
- name: '',
- sexList: [
- { value: '1', text: '男' },
- { value: '2', text: '女' }
- ],
- resettingFormData: {
- phone: '',
- password: '',
- passwordAgain: '',
- verificationCode: ''
- },
- isShowResettingPasswordDialog: false
- }
- },
- onLoad() {
- this.getUserInfoData()
- },
- onShow() {
- },
- mounted() {
- // 获取手机的屏幕高度
- uni.getSystemInfo({
- success: (res) => {
- this.screenHeight = res.screenHeight
- }
- })
- },
- methods: {
- // 多商户用户协议
- protocol(type) {
- uni.navigateTo({
- url: '/another-tf/another-serve/protocol/index?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: '/another-tf/another-serve/unsubscribe/index'
- })
- }
- }
- })
- },
- // 修改昵称
- changeName() {
- const newName = this.name
- if (!newName) {
- uni.showToast({
- title: '请输入新的内容',
- icon: 'none'
- })
- return false
- }
- this.$store.dispatch('auth/updateUserInfoAction', {
- name: newName
- })
- },
- // 提交修改生日
- handleConfirmTime(e) {
- if ((this.$store.getters.userInfo.birthday == '1970-01-01') || (this.$store.getters.userInfo.birthday == '')) {
- const birthday = e.detail.value
- this.$store.dispatch('auth/updateUserInfoAction', {
- birthday
- })
- }
- },
- // 点击弹窗修改性别
- sexShowClick() {
- this.sexShow = true
- },
- // 提交修改性别
- handleConfirmSex(e) {
- this.sexShow = false
- uni.showLoading()
- const sex = e.options.text
- this.$store.dispatch('auth/updateUserInfoAction', {
- sex
- })
- },
- // 获取用户信息
- getUserInfoData() {
- this.$store.dispatch('auth/refrshUserInfoAction', () => {
- this.name = this.$store.getters.userInfo.name
- })
- },
- handleQuit() {
- this.$store.dispatch('auth/logoutAction', true)
- },
- onGetAuthorize() {
- uni.showLoading({
- mask: true,
- title: '验证中...'
- })
- my.getPhoneNumber({
- success: (res) => {
- const encryptedData = res.response
- updateAliPhoneAppApi({
- 'phone': encryptedData
- }).then((res) => {
- this.$store.dispatch('auth/refrshUserInfoAction', () => {
- uni.showToast({
- title: '验证成功',
- icon: 'none'
- })
- })
- uni.hideLoading()
- })
- .catch((e) => {
- uni.hideLoading()
- })
- },
- fail: (res) => {
- uni.hideLoading()
- uni.showToast({
- title: '验证失败',
- icon: 'none'
- })
- }
- })
- },
- handleSendVerify() {
- if (!this.resettingFormData.phone) {
- this.$refs.refResettingPasswordVerify.reset()
- return this.$showToast('请填写手机号')
- }
- if (!/^1[3-9]\d{9}$/.test(this.resettingFormData.phone)) {
- this.$refs.refResettingPasswordVerify.reset()
- return this.$showToast('请输入正确的手机号')
- }
- getVerifyCodeApi({ phone: this.resettingFormData.phone })
- .then((res) => {
- this.$refs.refResettingPasswordVerify.success()
- this.$showToast('发送成功,请注意查看手机短信')
- })
- .catch(() => {
- this.$refs.refResettingPasswordVerify.reset()
- })
- },
- handleResettingPassword(e) {
- if (e.index === 0) { } else if (e.index === 1) {
- if (!this.resettingFormData.phone) return this.$showToast('请填写手机号')
- if (!this.resettingFormData.verificationCode) return this.$showToast('请填写验证码')
- if (!this.resettingFormData.password) return this.$showToast('请设置密码!')
- if (this.resettingFormData.password !== this.resettingFormData.passwordAgain) return this.$showToast('密码不一致')
- uni.showLoading({
- title: '操作中'
- })
- updatePasswordUserApi({ ...this.resettingFormData })
- .then(({ data }) => {
- uni.hideLoading()
- this.$showToast('重置成功')
- })
- .catch(() => {
- uni.hideLoading()
- })
- }
- this.resettingFormData.phone = ''
- this.resettingFormData.verificationCode = ''
- this.resettingFormData.password = ''
- this.resettingFormData.passwordAgain = ''
- this.isShowResettingPasswordDialog = false
- }
- }
- }
- </script>
- <style lang='less' scoped>
- .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;
- }
- }
- .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;
- }
- .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>
|