info.vue 12 KB

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