| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567 | 
							- <!-- 用户信息 -->
 
- <template>
 
- 	<s-layout title="用户信息" class="set-userinfo-wrap">
 
- 		<uni-forms :model="state.model" :rules="state.rules" labelPosition="left" border class="form-box"
 
- 			labelWidth='160'>
 
- 			<!-- 头像 -->
 
- 			<view class="ss-flex ss-row-center ss-col-center ss-p-t-60 ss-p-b-0 bg-white">
 
- 				<view class="header-box-content">
 
- 					<su-image class="content-img" isPreview :current="0" :src="state.model?.avatar" :height="160"
 
- 						:width="160" :radius="80" mode="scaleToFill" />
 
- 					<view class="avatar-action">
 
- 						<!-- #ifdef MP -->
 
- 						<button class="ss-reset-button avatar-action-btn" open-type="chooseAvatar"
 
- 							@chooseavatar="onChooseAvatar">
 
- 							修改
 
- 						</button>
 
- 						<!-- #endif -->
 
- 						<!-- #ifndef MP -->
 
- 						<button class="ss-reset-button avatar-action-btn" @tap="onChangeAvatar">修改</button>
 
- 						<!-- #endif -->
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 			<view class="bg-white ss-p-x-30">
 
- 				<uni-forms-item name="username" label="用户名" :error-message="state.usernameErrorMsg">
 
- 					<uni-easyinput v-model="state.model.username" placeholder="设置用户名" :inputBorder="false"
 
- 						:placeholderStyle="placeholderStyle" @blur="verifyUsername" :clearable="false">
 
- 						<template v-slot:right>
 
- 							<view v-if="!state.verifyUsername" class="icon">
 
- 								<image style :src="sheep.$url.static('/static/images/shibai.png')" />
 
- 							</view>
 
- 							<view v-else class="icon">
 
- 								<image :src="sheep.$url.static('/static/images/chenggong.png')" />
 
- 							</view>
 
- 						</template>
 
- 					</uni-easyinput>
 
- 				</uni-forms-item>
 
- 				<uni-forms-item name="nickname" label="昵称">
 
- 					<uni-easyinput v-model="state.model.nickname" type="nickname" placeholder="设置昵称"
 
- 						:inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" />
 
- 				</uni-forms-item>
 
- 				<uni-forms-item name="sex" label="性别">
 
- 					<view class="ss-flex ss-col-center ss-h-100">
 
- 						<radio-group @change="onChangeGender" class="ss-flex ss-col-center">
 
- 							<label class="radio" v-for="item in sexRadioMap" :key="item.value">
 
- 								<view class="ss-flex ss-col-center ss-m-r-32">
 
- 									<radio :value="item.value" color="var(--ui-BG-Main)" style="transform: scale(0.8)"
 
- 										:checked="parseInt(item.value) === state.model?.sex" />
 
- 									<view class="gender-name">{{ item.name }}</view>
 
- 								</view>
 
- 							</label>
 
- 						</radio-group>
 
- 					</view>
 
- 				</uni-forms-item>
 
- 				<uni-forms-item name="mobile" label="手机号" @tap="onChangeMobile">
 
- 					<uni-easyinput v-model="userInfo.mobile" placeholder="请绑定手机号" :inputBorder="false" disabled
 
- 						:styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
 
- 						<template v-slot:right>
 
- 							<view class="ss-flex ss-col-center">
 
- 								<su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
 
- 								<button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
 
- 									<text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
 
- 								</button>
 
- 							</view>
 
- 						</template>
 
- 					</uni-easyinput>
 
- 				</uni-forms-item>
 
- 				<!-- <uni-forms-item name="mobile" label="支付宝账号" @tap="onChangeAlipayAccount">
 
- 					<uni-easyinput v-model="alipayAccount" placeholder="请绑定支付宝账号" :inputBorder="false" disabled
 
- 						:styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
 
- 						<template v-slot:right>
 
- 							<view class="ss-flex ss-col-center">
 
- 								<su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
 
- 								<button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
 
- 									<text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
 
- 								</button>
 
- 							</view>
 
- 						</template>
 
- 					</uni-easyinput>
 
- 				</uni-forms-item>
 
- 				<uni-forms-item name="mobile" label="银行卡" @tap="onChangeBankAccount">
 
- 					<uni-easyinput v-model="bankAccount" placeholder="请绑定银行卡" :inputBorder="false" disabled
 
- 						:styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
 
- 						<template v-slot:right>
 
- 							<view class="ss-flex ss-col-center">
 
- 								<su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
 
- 								<button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
 
- 									<text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
 
- 								</button>
 
- 							</view>
 
- 						</template>
 
- 					</uni-easyinput>
 
- 				</uni-forms-item> -->
 
- 				<uni-forms-item name="password" label="登录密码" @tap="onSetPassword">
 
- 					<uni-easyinput v-model="userInfo.password" placeholder="点击修改登录密码" :inputBorder="false"
 
- 						:styles="{ disableColor: '#fff' }" disabled
 
- 						placeholderStyle="color:#BBBBBB;font-size:28rpx;line-height:normal" :clearable="false">
 
- 						<template v-slot:right>
 
- 							<view class="ss-flex ss-col-center">
 
- 								<su-radio class="ss-flex" v-if="userInfo.verification?.password" :modelValue="true" />
 
- 								<button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
 
- 									<text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx" />
 
- 								</button>
 
- 							</view>
 
- 						</template>
 
- 					</uni-easyinput>
 
- 				</uni-forms-item>
 
- 			</view>
 
- 			<!-- <view class="bg-white ss-m-t-14">
 
-         <uni-list>
 
-           <uni-list-item
 
-             clickable
 
-             @tap="sheep.$router.go('/pages/user/address/list')"
 
-             title="地址管理"
 
-             showArrow
 
-             :border="false"
 
-             class="list-border"
 
-           />
 
-         </uni-list>
 
-       </view> -->
 
- 		</uni-forms>
 
- 		<!-- 当前社交平台的绑定关系,只处理 wechat 微信场景 -->
 
- 		<view v-if="sheep.$platform.name !== 'H5'">
 
- 			<view class="title-box ss-p-l-30">第三方账号绑定</view>
 
- 			<view class="account-list ss-flex ss-row-between">
 
- 				<view v-if="'WechatOfficialAccount' === sheep.$platform.name" class="ss-flex ss-col-center">
 
- 					<image class="list-img" :src="sheep.$url.static('/static/images/WechatOfficialAccount.png')" />
 
- 					<text class="list-name">微信公众号</text>
 
- 				</view>
 
- 				<view v-if="'WechatMiniProgram' === sheep.$platform.name" class="ss-flex ss-col-center">
 
- 					<image class="list-img" :src="sheep.$url.static('/static/images/WechatMiniProgram.png')" />
 
- 					<text class="list-name">微信小程序</text>
 
- 				</view>
 
- 				<view v-if="'App' === sheep.$platform.name" class="ss-flex ss-col-center">
 
- 					<image class="list-img" :src="sheep.$url.static('/static/images/wechat.png')" />
 
- 					<text class="list-name">微信开放平台</text>
 
- 				</view>
 
- 				<view class="ss-flex ss-col-center">
 
- 					<view class="info ss-flex ss-col-center" v-if="state.thirdInfo">
 
- 						<image class="avatar ss-m-r-20" :src="sheep.$url.cdn(state.thirdInfo.avatar)" />
 
- 						<text class="name">{{ state.thirdInfo.nickname }}</text>
 
- 					</view>
 
- 					<view class="bind-box ss-m-l-20">
 
- 						<button v-if="state.thirdInfo.openid" class="ss-reset-button relieve-btn"
 
- 							@tap="unBindThirdOauth">
 
- 							解绑
 
- 						</button>
 
- 						<button v-else class="ss-reset-button bind-btn" @tap="bindThirdOauth">绑定</button>
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<su-fixed bottom placeholder bg="none">
 
- 			<view class="footer-box ss-p-20">
 
- 				<button class="ss-rest-button logout-btn" @tap="onSubmit">保存</button>
 
- 			</view>
 
- 		</su-fixed>
 
- 	</s-layout>
 
- </template>
 
- <script setup>
 
- 	import {
 
- 		computed,
 
- 		reactive,
 
- 		onBeforeMount,
 
- 		ref
 
- 	} from 'vue';
 
- 	import sheep from '@/sheep';
 
- 	import {
 
- 		clone
 
- 	} from 'lodash';
 
- 	import {
 
- 		onLoad
 
- 	} from '@dcloudio/uni-app';
 
- 	import {
 
- 		showAuthModal
 
- 	} from '@/sheep/hooks/useModal';
 
- 	import FileApi from '@/sheep/api/infra/file';
 
- 	import UserApi from '@/sheep/api/member/user';
 
- 	import AuthUtil from '@/sheep/api/member/auth';
 
- 	import {
 
- 		closeAuthModal,
 
- 	} from '@/sheep/hooks/useModal';
 
- 	const state = reactive({
 
- 		verifyUsername: true,
 
- 		usernameErrorMsg: '',
 
- 		model: {
 
- 		}, // 个人信息
 
- 		rules: {},
 
- 		thirdInfo: {}, // 社交用户的信息
 
- 	});
 
- 	const userInfo = computed(() => sheep.$store('user').userInfo);
 
- 	const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
 
- 	const sexRadioMap = [{
 
- 			name: '男',
 
- 			value: '1',
 
- 		},
 
- 		{
 
- 			name: '女',
 
- 			value: '2',
 
- 		}
 
- 	];
 
- 	// 选择性别
 
- 	function onChangeGender(e) {
 
- 		state.model.sex = e.detail.value;
 
- 	}
 
- 	// 修改手机号
 
- 	const onChangeMobile = () => {
 
- 		showAuthModal('changeMobile');
 
- 	};
 
- 	// 选择微信的头像,进行上传
 
- 	function onChooseAvatar(e) {
 
- 		const tempUrl = e.detail.avatarUrl || '';
 
- 		uploadAvatar(tempUrl);
 
- 	}
 
- 	// 手动选择头像,进行上传
 
- 	function onChangeAvatar() {
 
- 		uni.chooseImage({
 
- 			success: async (chooseImageRes) => {
 
- 				const tempUrl = chooseImageRes.tempFilePaths[0];
 
- 				await uploadAvatar(tempUrl);
 
- 			},
 
- 		});
 
- 	}
 
- 	// 上传头像文件
 
- 	async function uploadAvatar(tempUrl) {
 
- 		if (!tempUrl) {
 
- 			return;
 
- 		}
 
- 		// 压缩图片
 
- 		const compressedImage = await compressImage(tempUrl);
 
- 		let {
 
- 			data
 
- 		} = await FileApi.uploadFile(compressedImage);
 
- 		state.model.avatar = data;
 
- 	}
 
- 	function compressImage(imagePath, scale = 0.5) { // 这里的 scale 是压缩比例,默认为 0.5(即 50%)
 
- 	  return new Promise((resolve, reject) => {
 
- 	    const canvas = document.createElement('canvas');
 
- 	    const ctx = canvas.getContext('2d');
 
- 	    const img = new Image();
 
- 	    img.src = imagePath;
 
- 	
 
- 	    img.onload = () => {
 
- 	      const originalWidth = img.width;
 
- 	      const originalHeight = img.height;
 
- 	
 
- 	      // 根据原始尺寸进行比例压缩
 
- 	      const newWidth = originalWidth * scale;
 
- 	      const newHeight = originalHeight * scale;
 
- 	
 
- 	      // 设置 canvas 尺寸为压缩后的尺寸
 
- 	      canvas.width = newWidth;
 
- 	      canvas.height = newHeight;
 
- 	
 
- 	      // 在 canvas 上绘制压缩后的图片
 
- 	      ctx.drawImage(img, 0, 0, newWidth, newHeight);
 
- 	
 
- 	      // 将 canvas 转换为 base64 格式图片,压缩质量0.7
 
- 	      const compressedImage = canvas.toDataURL('image/jpeg', 0.7);
 
- 	      resolve(compressedImage);
 
- 	    };
 
- 	
 
- 	    img.onerror = (err) => {
 
- 	      reject(err);
 
- 	    };
 
- 	  });
 
- 	}
 
- 	// 修改密码
 
- 	function onSetPassword() {
 
- 		showAuthModal('changePassword');
 
- 	}
 
- 	// 绑定第三方账号
 
- 	async function bindThirdOauth() {
 
- 		let result = await sheep.$platform.useProvider('wechat').bind();
 
- 	}
 
- 	// 解绑第三方账号
 
- 	function unBindThirdOauth() {
 
- 		uni.showModal({
 
- 			title: '解绑提醒',
 
- 			content: '解绑后您将无法通过微信登录此账号',
 
- 			cancelText: '再想想',
 
- 			confirmText: '确定',
 
- 			success: async function(res) {
 
- 				if (!res.confirm) {
 
- 					return;
 
- 				}
 
- 				const result = await sheep.$platform.useProvider('wechat').unbind(state.thirdInfo.openid);
 
- 				if (result) {
 
- 					await getUserInfo();
 
- 				}
 
- 			},
 
- 		});
 
- 	}
 
- 	let lastUsername = ref('')
 
- 	async function verifyUsername(e) {
 
- 		// console.log(e.detail.value,state.username)
 
- 		const username = e.detail.value;
 
- 		if (username == '' || username == lastUsername.value) {
 
- 			// 为空或者没改东西,不调校验
 
- 			return false;
 
- 		} else if (username === state.username) {
 
- 			// 如果输入的用户名跟原来的本身的用户名一致,不做查询,默认正确(即点进来又点出去,没改变的)
 
- 			state.usernameErrorMsg = '';
 
- 			state.verifyUsername = true
 
- 			return false;
 
- 		}
 
- 		lastUsername.value = username
 
- 		// 提交数据
 
- 		const {
 
- 			data
 
- 		} = await AuthUtil.verifyUsername(username);
 
- 		// false就是已经有这个用户名,可以登录,true是没有,可以使用
 
- 		if (!data) {
 
- 			state.usernameErrorMsg = '用户名已被使用!'
 
- 			state.verifyUsername = data
 
- 		} else {
 
- 			state.usernameErrorMsg = ''
 
- 			state.verifyUsername = data
 
- 		}
 
- 	}
 
- 	// 保存信息
 
- 	async function onSubmit() {
 
- 		const {
 
- 			code
 
- 		} = await UserApi.updateUser({
 
- 			avatar: state.model.avatar,
 
- 			nickname: state.model.nickname,
 
- 			username: state.model.username,
 
- 			sex: state.model.sex,
 
- 		});
 
- 		if (code === 0 && state.model.username !== state.username) {
 
- 			// 修改成功并且是修改了用户名退出登录
 
- 			uni.showToast({
 
- 				icon: 'success',
 
- 				title: "修改成功,请重新登录",
 
- 			});
 
- 			// 成功后,只需要1秒后推出登录关闭弹窗
 
- 			setTimeout(function() {
 
- 				sheep.$store('user').logout();
 
- 				closeAuthModal();
 
- 				sheep.$router.go('/pages/index/user')
 
- 			}, 1000)
 
- 		}
 
- 		if (code === 0) {
 
- 			await getUserInfo();
 
- 		}
 
- 	}
 
- 	// 获得用户信息
 
- 	const getUserInfo = async () => {
 
- 		// 个人信息
 
- 		const userInfo = await sheep.$store('user').getInfo();
 
- 		state.model = clone(userInfo);
 
- 		state.username = userInfo.username
 
- 		// 获得社交用户的信息
 
- 		if (sheep.$platform.name !== 'H5') {
 
- 			let result = await sheep.$platform.useProvider('wechat').getInfo();
 
- 			state.thirdInfo = result || {};
 
- 		}
 
- 	};
 
- 	onLoad(async (options) => {
 
- 		getUserInfo();
 
- 		// uni.$on('submitComplete', getUserInfo);
 
- 		// setTimeout(getUserInfo, 2000)
 
- 	});
 
- </script>
 
- <style lang="scss" scoped>
 
- 	.icon {
 
- 		display: flex;
 
- 		align-items: center;
 
- 		margin-right: 7rpx
 
- 	}
 
- 	.icon image {
 
- 		width: 35rpx;
 
- 		height: 35rpx;
 
- 	}
 
- 	:deep() {
 
- 		.uni-file-picker {
 
- 			border-radius: 50%;
 
- 		}
 
- 		.uni-file-picker__container {
 
- 			margin: -14rpx -12rpx;
 
- 		}
 
- 		.file-picker__progress {
 
- 			height: 0 !important;
 
- 		}
 
- 		.uni-list-item__content-title {
 
- 			font-size: 28rpx !important;
 
- 			color: #333333 !important;
 
- 			line-height: normal !important;
 
- 		}
 
- 		.uni-icons {
 
- 			font-size: 40rpx !important;
 
- 		}
 
- 		.is-disabled {
 
- 			color: #333333;
 
- 		}
 
- 	}
 
- 	:deep(.disabled) {
 
- 		opacity: 1;
 
- 	}
 
- 	.gender-name {
 
- 		font-size: 28rpx;
 
- 		font-weight: 500;
 
- 		line-height: normal;
 
- 		color: #333333;
 
- 	}
 
- 	.title-box {
 
- 		font-size: 28rpx;
 
- 		font-weight: 500;
 
- 		color: #666666;
 
- 		line-height: 100rpx;
 
- 	}
 
- 	.logout-btn {
 
- 		width: 710rpx;
 
- 		height: 80rpx;
 
- 		background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
 
- 		border-radius: 40rpx;
 
- 		font-size: 30rpx;
 
- 		font-weight: 500;
 
- 		color: $white;
 
- 	}
 
- 	.radio-dark {
 
- 		filter: grayscale(100%);
 
- 		filter: gray;
 
- 		opacity: 0.4;
 
- 	}
 
- 	.content-img {
 
- 		border-radius: 50%;
 
- 	}
 
- 	.header-box-content {
 
- 		position: relative;
 
- 		width: 160rpx;
 
- 		height: 160rpx;
 
- 		overflow: hidden;
 
- 		border-radius: 50%;
 
- 	}
 
- 	.avatar-action {
 
- 		position: absolute;
 
- 		left: 50%;
 
- 		transform: translateX(-50%);
 
- 		bottom: 0;
 
- 		z-index: 1;
 
- 		width: 160rpx;
 
- 		height: 46rpx;
 
- 		background: rgba(#000000, 0.3);
 
- 		.avatar-action-btn {
 
- 			width: 160rpx;
 
- 			height: 46rpx;
 
- 			font-weight: 500;
 
- 			font-size: 24rpx;
 
- 			color: #ffffff;
 
- 		}
 
- 	}
 
- 	// 绑定项
 
- 	.account-list {
 
- 		background-color: $white;
 
- 		height: 100rpx;
 
- 		padding: 0 20rpx;
 
- 		.list-img {
 
- 			width: 40rpx;
 
- 			height: 40rpx;
 
- 			margin-right: 10rpx;
 
- 		}
 
- 		.list-name {
 
- 			font-size: 28rpx;
 
- 			color: #333333;
 
- 		}
 
- 		.info {
 
- 			.avatar {
 
- 				width: 38rpx;
 
- 				height: 38rpx;
 
- 				border-radius: 50%;
 
- 				overflow: hidden;
 
- 			}
 
- 			.name {
 
- 				font-size: 28rpx;
 
- 				font-weight: 400;
 
- 				color: $dark-9;
 
- 			}
 
- 		}
 
- 		.bind-box {
 
- 			width: 100rpx;
 
- 			height: 50rpx;
 
- 			line-height: normal;
 
- 			display: flex;
 
- 			justify-content: center;
 
- 			align-items: center;
 
- 			font-size: 24rpx;
 
- 			.bind-btn {
 
- 				width: 100%;
 
- 				height: 100%;
 
- 				border-radius: 25rpx;
 
- 				background: #f4f4f4;
 
- 				color: #999999;
 
- 			}
 
- 			.relieve-btn {
 
- 				width: 100%;
 
- 				height: 100%;
 
- 				border-radius: 25rpx;
 
- 				background: var(--ui-BG-Main-opacity-1);
 
- 				color: var(--ui-BG-Main);
 
- 			}
 
- 		}
 
- 	}
 
- 	.list-border {
 
- 		font-size: 28rpx;
 
- 		font-weight: 400;
 
- 		color: #333333;
 
- 		border-bottom: 2rpx solid #eeeeee;
 
- 	}
 
- 	image {
 
- 		width: 100%;
 
- 		height: 100%;
 
- 	}
 
- </style>
 
 
  |