info.vue 14 KB

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