info.vue 13 KB

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