info.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. <!-- 用户信息 -->
  2. <template>
  3. <s-layout title="用户信息" class="set-userinfo-wrap">
  4. <uni-forms :model="state.model" :rules="state.rules" labelPosition="left" border class="form-box"
  5. labelWidth='160'>
  6. <!-- 头像 -->
  7. <view class="ss-flex ss-row-center ss-col-center ss-p-t-60 ss-p-b-0 bg-white">
  8. <view class="header-box-content">
  9. <su-image class="content-img" isPreview :current="0" :src="state.model?.avatar" :height="160"
  10. :width="160" :radius="80" mode="scaleToFill" />
  11. <view class="avatar-action">
  12. <!-- #ifdef MP -->
  13. <button class="ss-reset-button avatar-action-btn" open-type="chooseAvatar"
  14. @chooseavatar="onChooseAvatar">
  15. 修改
  16. </button>
  17. <!-- #endif -->
  18. <!-- #ifndef MP -->
  19. <button class="ss-reset-button avatar-action-btn" @tap="onChangeAvatar">修改</button>
  20. <!-- #endif -->
  21. </view>
  22. </view>
  23. </view>
  24. <view class="bg-white ss-p-x-30">
  25. <uni-forms-item name="username" label="用户名" :error-message="state.usernameErrorMsg">
  26. <uni-easyinput v-model="state.model.username" placeholder="设置用户名" :inputBorder="false"
  27. :placeholderStyle="placeholderStyle" @blur="verifyUsername" :clearable="false">
  28. <template v-slot:right>
  29. <view v-if="!state.verifyUsername" class="icon">
  30. <image style :src="sheep.$url.static('/static/images/shibai.png')" />
  31. </view>
  32. <view v-else class="icon">
  33. <image :src="sheep.$url.static('/static/images/chenggong.png')" />
  34. </view>
  35. </template>
  36. </uni-easyinput>
  37. </uni-forms-item>
  38. <uni-forms-item name="nickname" label="昵称">
  39. <uni-easyinput v-model="state.model.nickname" type="nickname" placeholder="设置昵称"
  40. :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" />
  41. </uni-forms-item>
  42. <uni-forms-item name="sex" label="性别">
  43. <view class="ss-flex ss-col-center ss-h-100">
  44. <radio-group @change="onChangeGender" class="ss-flex ss-col-center">
  45. <label class="radio" v-for="item in sexRadioMap" :key="item.value">
  46. <view class="ss-flex ss-col-center ss-m-r-32">
  47. <radio :value="item.value" color="var(--ui-BG-Main)" style="transform: scale(0.8)"
  48. :checked="parseInt(item.value) === state.model?.sex" />
  49. <view class="gender-name">{{ item.name }}</view>
  50. </view>
  51. </label>
  52. </radio-group>
  53. </view>
  54. </uni-forms-item>
  55. <uni-forms-item name="mobile" label="手机号" @tap="onChangeMobile">
  56. <uni-easyinput v-model="userInfo.mobile" placeholder="请绑定手机号" :inputBorder="false" disabled
  57. :styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
  58. <template v-slot:right>
  59. <view class="ss-flex ss-col-center">
  60. <su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
  61. <button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
  62. <text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
  63. </button>
  64. </view>
  65. </template>
  66. </uni-easyinput>
  67. </uni-forms-item>
  68. <uni-forms-item name="mobile" label="支付宝账号" @tap="onChangeAlipayAccount">
  69. <uni-easyinput v-model="alipayAccount" placeholder="请绑定支付宝账号" :inputBorder="false" disabled
  70. :styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
  71. <template v-slot:right>
  72. <view class="ss-flex ss-col-center">
  73. <su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
  74. <button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
  75. <text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
  76. </button>
  77. </view>
  78. </template>
  79. </uni-easyinput>
  80. </uni-forms-item>
  81. <uni-forms-item name="mobile" label="银行卡" @tap="onChangeBankAccount">
  82. <uni-easyinput v-model="bankAccount" placeholder="请绑定银行卡" :inputBorder="false" disabled
  83. :styles="{ disableColor: '#fff' }" :placeholderStyle="placeholderStyle" :clearable="false">
  84. <template v-slot:right>
  85. <view class="ss-flex ss-col-center">
  86. <su-radio v-if="userInfo.verification?.mobile" :modelValue="true" />
  87. <button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
  88. <text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx"></text>
  89. </button>
  90. </view>
  91. </template>
  92. </uni-easyinput>
  93. </uni-forms-item>
  94. <uni-forms-item name="password" label="登录密码" @tap="onSetPassword">
  95. <uni-easyinput v-model="userInfo.password" placeholder="点击修改登录密码" :inputBorder="false"
  96. :styles="{ disableColor: '#fff' }" disabled
  97. placeholderStyle="color:#BBBBBB;font-size:28rpx;line-height:normal" :clearable="false">
  98. <template v-slot:right>
  99. <view class="ss-flex ss-col-center">
  100. <su-radio class="ss-flex" v-if="userInfo.verification?.password" :modelValue="true" />
  101. <button v-else class="ss-reset-button ss-flex ss-col-center ss-row-center">
  102. <text class="_icon-forward" style="color: #bbbbbb; font-size: 26rpx" />
  103. </button>
  104. </view>
  105. </template>
  106. </uni-easyinput>
  107. </uni-forms-item>
  108. </view>
  109. <!-- <view class="bg-white ss-m-t-14">
  110. <uni-list>
  111. <uni-list-item
  112. clickable
  113. @tap="sheep.$router.go('/pages/user/address/list')"
  114. title="地址管理"
  115. showArrow
  116. :border="false"
  117. class="list-border"
  118. />
  119. </uni-list>
  120. </view> -->
  121. </uni-forms>
  122. <!-- 当前社交平台的绑定关系,只处理 wechat 微信场景 -->
  123. <view v-if="sheep.$platform.name !== 'H5'">
  124. <view class="title-box ss-p-l-30">第三方账号绑定</view>
  125. <view class="account-list ss-flex ss-row-between">
  126. <view v-if="'WechatOfficialAccount' === sheep.$platform.name" class="ss-flex ss-col-center">
  127. <image class="list-img" :src="sheep.$url.static('/static/images/WechatOfficialAccount.png')" />
  128. <text class="list-name">微信公众号</text>
  129. </view>
  130. <view v-if="'WechatMiniProgram' === sheep.$platform.name" class="ss-flex ss-col-center">
  131. <image class="list-img" :src="sheep.$url.static('/static/images/WechatMiniProgram.png')" />
  132. <text class="list-name">微信小程序</text>
  133. </view>
  134. <view v-if="'App' === sheep.$platform.name" class="ss-flex ss-col-center">
  135. <image class="list-img" :src="sheep.$url.static('/static/images/wechat.png')" />
  136. <text class="list-name">微信开放平台</text>
  137. </view>
  138. <view class="ss-flex ss-col-center">
  139. <view class="info ss-flex ss-col-center" v-if="state.thirdInfo">
  140. <image class="avatar ss-m-r-20" :src="sheep.$url.cdn(state.thirdInfo.avatar)" />
  141. <text class="name">{{ state.thirdInfo.nickname }}</text>
  142. </view>
  143. <view class="bind-box ss-m-l-20">
  144. <button v-if="state.thirdInfo.openid" class="ss-reset-button relieve-btn"
  145. @tap="unBindThirdOauth">
  146. 解绑
  147. </button>
  148. <button v-else class="ss-reset-button bind-btn" @tap="bindThirdOauth">绑定</button>
  149. </view>
  150. </view>
  151. </view>
  152. </view>
  153. <su-fixed bottom placeholder bg="none">
  154. <view class="footer-box ss-p-20">
  155. <button class="ss-rest-button logout-btn" @tap="onSubmit">保存</button>
  156. </view>
  157. </su-fixed>
  158. </s-layout>
  159. </template>
  160. <script setup>
  161. import {
  162. computed,
  163. reactive,
  164. onBeforeMount,
  165. ref
  166. } from 'vue';
  167. import sheep from '@/sheep';
  168. import {
  169. clone
  170. } from 'lodash';
  171. import {
  172. onLoad
  173. } from '@dcloudio/uni-app';
  174. import {
  175. showAuthModal
  176. } from '@/sheep/hooks/useModal';
  177. import FileApi from '@/sheep/api/infra/file';
  178. import UserApi from '@/sheep/api/member/user';
  179. import AuthUtil from '@/sheep/api/member/auth';
  180. import {
  181. closeAuthModal,
  182. } from '@/sheep/hooks/useModal';
  183. const state = reactive({
  184. verifyUsername: true,
  185. usernameErrorMsg: '',
  186. model: {
  187. }, // 个人信息
  188. rules: {},
  189. thirdInfo: {}, // 社交用户的信息
  190. });
  191. const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
  192. const sexRadioMap = [{
  193. name: '男',
  194. value: '1',
  195. },
  196. {
  197. name: '女',
  198. value: '2',
  199. }
  200. ];
  201. const userInfo = computed(() => sheep.$store('user').userInfo);
  202. const alipayAccount = computed(() => {
  203. let account = userInfo.value.alipayAccount;
  204. if (!account) {
  205. return
  206. }
  207. // 手机号脱敏
  208. if (/^\d{11}$/.test(account)) { // 检查是否是11位数字的手机号
  209. return `${account.substring(0, 3)}****${account.substring(7)}`;
  210. } else if (/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(account)) {
  211. const atIndex = account.indexOf('@');
  212. // 邮箱用户名长度小于等于3位时,不脱敏
  213. if (atIndex <= 3) {
  214. return account;
  215. }
  216. const username = account.substring(0, Math.ceil(atIndex / 2)); // 取邮箱用户名的一半
  217. const domain = account.substring(atIndex); // 邮箱域名部分
  218. return `${username}***${domain}`;
  219. }
  220. })
  221. const bankAccount = computed(() => {
  222. let account = userInfo.value.bankAccount;
  223. if (!account) {
  224. return
  225. }
  226. if (account.length === 8) {
  227. return account.substring(0, 2) + '********' + account.substr(-2);
  228. } else {
  229. return account.substring(0, 4) + '******' + account.substr(-4);
  230. }
  231. })
  232. // 选择性别
  233. function onChangeGender(e) {
  234. state.model.sex = e.detail.value;
  235. }
  236. // 修改手机号
  237. const onChangeMobile = () => {
  238. showAuthModal('changeMobile');
  239. };
  240. // 修改支付宝账号
  241. const onChangeAlipayAccount = () => {
  242. showAuthModal('alipayAccount');
  243. };
  244. // 修改银行卡号
  245. const onChangeBankAccount = () => {
  246. showAuthModal('bankAccount');
  247. };
  248. // 选择微信的头像,进行上传
  249. function onChooseAvatar(e) {
  250. const tempUrl = e.detail.avatarUrl || '';
  251. uploadAvatar(tempUrl);
  252. }
  253. // 手动选择头像,进行上传
  254. function onChangeAvatar() {
  255. uni.chooseImage({
  256. success: async (chooseImageRes) => {
  257. const tempUrl = chooseImageRes.tempFilePaths[0];
  258. await uploadAvatar(tempUrl);
  259. },
  260. });
  261. }
  262. // 上传头像文件
  263. async function uploadAvatar(tempUrl) {
  264. if (!tempUrl) {
  265. return;
  266. }
  267. let {
  268. data
  269. } = await FileApi.uploadFile(tempUrl);
  270. state.model.avatar = data;
  271. }
  272. // 修改密码
  273. function onSetPassword() {
  274. showAuthModal('changePassword');
  275. }
  276. // 绑定第三方账号
  277. async function bindThirdOauth() {
  278. let result = await sheep.$platform.useProvider('wechat').bind();
  279. }
  280. // 解绑第三方账号
  281. function unBindThirdOauth() {
  282. uni.showModal({
  283. title: '解绑提醒',
  284. content: '解绑后您将无法通过微信登录此账号',
  285. cancelText: '再想想',
  286. confirmText: '确定',
  287. success: async function(res) {
  288. if (!res.confirm) {
  289. return;
  290. }
  291. const result = await sheep.$platform.useProvider('wechat').unbind(state.thirdInfo.openid);
  292. if (result) {
  293. await getUserInfo();
  294. }
  295. },
  296. });
  297. }
  298. let lastUsername = ref('')
  299. async function verifyUsername(e) {
  300. // console.log(e.detail.value,state.username)
  301. const username = e.detail.value;
  302. if (username == '' || username == lastUsername.value) {
  303. // 为空或者没改东西,不调校验
  304. return false;
  305. } else if (username === state.username) {
  306. // 如果输入的用户名跟原来的本身的用户名一致,不做查询,默认正确(即点进来又点出去,没改变的)
  307. state.usernameErrorMsg = '';
  308. state.verifyUsername = true
  309. return false;
  310. }
  311. lastUsername.value = username
  312. // 提交数据
  313. const {
  314. data
  315. } = await AuthUtil.verifyUsername(username);
  316. // false就是已经有这个用户名,可以登录,true是没有,可以使用
  317. if (!data) {
  318. state.usernameErrorMsg = '用户名已被使用!'
  319. state.verifyUsername = data
  320. } else {
  321. state.usernameErrorMsg = ''
  322. state.verifyUsername = data
  323. }
  324. }
  325. // 保存信息
  326. async function onSubmit() {
  327. const {
  328. code
  329. } = await UserApi.updateUser({
  330. avatar: state.model.avatar,
  331. nickname: state.model.nickname,
  332. username: state.model.username,
  333. sex: state.model.sex,
  334. });
  335. if (code === 0 && state.model.username !== state.username) {
  336. // 修改成功并且是修改了用户名退出登录
  337. uni.showToast({
  338. icon: 'success',
  339. title: "修改成功,请重新登录",
  340. });
  341. // 成功后,只需要1秒后推出登录关闭弹窗
  342. setTimeout(function() {
  343. sheep.$store('user').logout();
  344. closeAuthModal();
  345. sheep.$router.go('/pages/index/user')
  346. }, 1000)
  347. }
  348. if (code === 0) {
  349. await getUserInfo();
  350. }
  351. }
  352. // 获得用户信息
  353. const getUserInfo = async () => {
  354. // 个人信息
  355. const userInfo = await sheep.$store('user').getInfo();
  356. state.model = clone(userInfo);
  357. state.username = userInfo.username
  358. // 获得社交用户的信息
  359. if (sheep.$platform.name !== 'H5') {
  360. let result = await sheep.$platform.useProvider('wechat').getInfo();
  361. state.thirdInfo = result || {};
  362. }
  363. };
  364. onLoad(async (options) => {
  365. getUserInfo();
  366. uni.$on('submitComplete', getUserInfo);
  367. // setTimeout(getUserInfo, 2000)
  368. });
  369. </script>
  370. <style lang="scss" scoped>
  371. .icon {
  372. display: flex;
  373. align-items: center;
  374. margin-right: 7rpx
  375. }
  376. .icon image {
  377. width: 35rpx;
  378. height: 35rpx;
  379. }
  380. :deep() {
  381. .uni-file-picker {
  382. border-radius: 50%;
  383. }
  384. .uni-file-picker__container {
  385. margin: -14rpx -12rpx;
  386. }
  387. .file-picker__progress {
  388. height: 0 !important;
  389. }
  390. .uni-list-item__content-title {
  391. font-size: 28rpx !important;
  392. color: #333333 !important;
  393. line-height: normal !important;
  394. }
  395. .uni-icons {
  396. font-size: 40rpx !important;
  397. }
  398. .is-disabled {
  399. color: #333333;
  400. }
  401. }
  402. :deep(.disabled) {
  403. opacity: 1;
  404. }
  405. .gender-name {
  406. font-size: 28rpx;
  407. font-weight: 500;
  408. line-height: normal;
  409. color: #333333;
  410. }
  411. .title-box {
  412. font-size: 28rpx;
  413. font-weight: 500;
  414. color: #666666;
  415. line-height: 100rpx;
  416. }
  417. .logout-btn {
  418. width: 710rpx;
  419. height: 80rpx;
  420. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  421. border-radius: 40rpx;
  422. font-size: 30rpx;
  423. font-weight: 500;
  424. color: $white;
  425. }
  426. .radio-dark {
  427. filter: grayscale(100%);
  428. filter: gray;
  429. opacity: 0.4;
  430. }
  431. .content-img {
  432. border-radius: 50%;
  433. }
  434. .header-box-content {
  435. position: relative;
  436. width: 160rpx;
  437. height: 160rpx;
  438. overflow: hidden;
  439. border-radius: 50%;
  440. }
  441. .avatar-action {
  442. position: absolute;
  443. left: 50%;
  444. transform: translateX(-50%);
  445. bottom: 0;
  446. z-index: 1;
  447. width: 160rpx;
  448. height: 46rpx;
  449. background: rgba(#000000, 0.3);
  450. .avatar-action-btn {
  451. width: 160rpx;
  452. height: 46rpx;
  453. font-weight: 500;
  454. font-size: 24rpx;
  455. color: #ffffff;
  456. }
  457. }
  458. // 绑定项
  459. .account-list {
  460. background-color: $white;
  461. height: 100rpx;
  462. padding: 0 20rpx;
  463. .list-img {
  464. width: 40rpx;
  465. height: 40rpx;
  466. margin-right: 10rpx;
  467. }
  468. .list-name {
  469. font-size: 28rpx;
  470. color: #333333;
  471. }
  472. .info {
  473. .avatar {
  474. width: 38rpx;
  475. height: 38rpx;
  476. border-radius: 50%;
  477. overflow: hidden;
  478. }
  479. .name {
  480. font-size: 28rpx;
  481. font-weight: 400;
  482. color: $dark-9;
  483. }
  484. }
  485. .bind-box {
  486. width: 100rpx;
  487. height: 50rpx;
  488. line-height: normal;
  489. display: flex;
  490. justify-content: center;
  491. align-items: center;
  492. font-size: 24rpx;
  493. .bind-btn {
  494. width: 100%;
  495. height: 100%;
  496. border-radius: 25rpx;
  497. background: #f4f4f4;
  498. color: #999999;
  499. }
  500. .relieve-btn {
  501. width: 100%;
  502. height: 100%;
  503. border-radius: 25rpx;
  504. background: var(--ui-BG-Main-opacity-1);
  505. color: var(--ui-BG-Main);
  506. }
  507. }
  508. }
  509. .list-border {
  510. font-size: 28rpx;
  511. font-weight: 400;
  512. color: #333333;
  513. border-bottom: 2rpx solid #eeeeee;
  514. }
  515. image {
  516. width: 100%;
  517. height: 100%;
  518. }
  519. </style>