setting.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  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. <view class="bg-white">
  12. <uni-list :border="false" class="ss-p-y-40">
  13. <uni-list-chat
  14. clickable
  15. :avatar-circle="true"
  16. :title="state.model?.nickname"
  17. :avatar="state.model?.avatar"
  18. note="个性签名"
  19. @tap="sheep.$router.go('/pages/user/info')"
  20. >
  21. <view class="chat-custom-right">
  22. <text
  23. class="_icon-forward"
  24. style="color: #bbbbbb; font-size: 32rpx"
  25. ></text>
  26. </view>
  27. </uni-list-chat>
  28. <uni-list-item
  29. clickable
  30. @tap="sheep.$router.go('/pages/user/address/list')"
  31. title="实体收货地址管理"
  32. showArrow
  33. :border="false"
  34. />
  35. <uni-list-item
  36. clickable
  37. @tap="sheep.$router.go('/pages/user/dummyAddress/list')"
  38. title="虚拟收货地址管理"
  39. showArrow
  40. :border="false"
  41. />
  42. <uni-list-item
  43. title="支付宝账号"
  44. showArrow
  45. clickable
  46. :border="false"
  47. @tap="onChangeAlipayAccount">
  48. <template v-slot:body>
  49. <p style="width: 100%"
  50. >支付宝账号&nbsp;&nbsp;{{alipayAccount?alipayAccount:'未绑定'}}
  51. </p>
  52. </template>
  53. </uni-list-item>
  54. <uni-list-item
  55. title="银行卡"
  56. showArrow
  57. clickable
  58. :border="false"
  59. @tap="onChangeBankAccount">
  60. <template v-slot:body>
  61. <p style="width: 100%"
  62. >银行卡&nbsp;&nbsp;{{bankAccount?bankAccount:'未绑定'}}
  63. </p>
  64. </template>
  65. </uni-list-item>
  66. <!-- <uni-list-item
  67. clickable
  68. @tap="sheep.$router.go('/pages/user/invoice/list')"
  69. title="发票抬头管理"
  70. showArrow
  71. :border="false"
  72. /> -->
  73. <uni-list-item
  74. :clickable="!userInfo.mobile"
  75. @tap="sheep.$router.go('/pages/user/address/list')"
  76. title="实名认证"
  77. showArrow
  78. :border="false"
  79. >
  80. <template v-slot:body>
  81. <p style="width: 100%"
  82. >实名认证&nbsp;&nbsp; 未认证
  83. </p>
  84. </template>
  85. </uni-list-item>
  86. <uni-list-item
  87. title="我的二维码"
  88. clickable
  89. @tap="sheep.$router.go('/pages/user/qrcode-share')"
  90. :border="false"
  91. >
  92. <template v-slot:body>
  93. <p style="width: 100%; display: flex; align-items: center">
  94. 我的二维码&nbsp;&nbsp;&nbsp;&nbsp;
  95. <su-image
  96. class="content-img"
  97. style="border: 1px solid #f4f4f4"
  98. :current="0"
  99. :src="state.model?.avatar"
  100. :height="100"
  101. :width="100"
  102. :radius="0"
  103. mode="scaleToFill"
  104. />
  105. </p>
  106. </template>
  107. </uni-list-item>
  108. </uni-list>
  109. </view>
  110. </uni-forms>
  111. <su-fixed bottom placeholder>
  112. <view class="ss-p-x-20 ss-p-b-40">
  113. <button class="loginout-btn ss-reset-button" @tap="onLogout" v-if="isLogin">
  114. 退出登录
  115. </button>
  116. </view>
  117. </su-fixed>
  118. <!-- <su-fixed bottom placeholder bg="none">
  119. <view class="footer-box ss-p-20">
  120. <button class="ss-rest-button logout-btn ui-Shadow-Main" @tap="onSubmit">保存</button>
  121. </view>
  122. </su-fixed> -->
  123. </s-layout>
  124. </template>
  125. <script setup>
  126. import { computed, reactive, onBeforeMount } from 'vue';
  127. import sheep from '@/sheep';
  128. import { clone } from 'lodash';
  129. const isLogin = computed(() => sheep.$store('user').isLogin);
  130. import { showAuthModal, showShareModal } from '@/sheep/hooks/useModal';
  131. import FileApi from '@/sheep/api/infra/file';
  132. import UserApi from '@/sheep/api/member/user';
  133. import AuthUtil from '@/sheep/api/member/auth';
  134. import {
  135. onLoad
  136. } from '@dcloudio/uni-app';
  137. const userInfo = computed(() => sheep.$store('user').userInfo);
  138. const alipayAccount = computed(() => {
  139. let account = userInfo.value.alipayAccount;
  140. if (!account) {
  141. return false;
  142. }
  143. // 手机号脱敏
  144. if (/^\d{11}$/.test(account)) { // 检查是否是11位数字的手机号
  145. return `${account.substring(0, 3)}****${account.substring(7)}`;
  146. } else if (/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(account)) {
  147. const atIndex = account.indexOf('@');
  148. // 邮箱用户名长度小于等于3位时,不脱敏
  149. if (atIndex <= 3) {
  150. return account;
  151. }
  152. const username = account.substring(0, Math.ceil(atIndex / 2)); // 取邮箱用户名的一半
  153. const domain = account.substring(atIndex); // 邮箱域名部分
  154. return `${username}***${domain}`;
  155. }
  156. })
  157. const bankAccount = computed(() => {
  158. let account = userInfo.value.bankAccount;
  159. if (!account) {
  160. return false;
  161. }
  162. if (account.length === 8) {
  163. return account.substring(0, 2) + '********' + account.substr(-2);
  164. } else {
  165. return account.substring(0, 4) + '******' + account.substr(-4);
  166. }
  167. })
  168. // 修改支付宝账号
  169. const onChangeAlipayAccount = () => {
  170. showAuthModal('alipayAccount');
  171. };
  172. // 修改银行卡号
  173. const onChangeBankAccount = () => {
  174. showAuthModal('bankAccount');
  175. };
  176. const state = reactive({
  177. model: {}, // 个人信息
  178. rules: {},
  179. thirdInfo: {}, // 社交用户的信息
  180. });
  181. const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
  182. // 绑定第三方账号
  183. async function bindThirdOauth() {
  184. let result = await sheep.$platform.useProvider('wechat').bind();
  185. if (result) {
  186. await getUserInfo();
  187. }
  188. }
  189. // 解绑第三方账号
  190. function unBindThirdOauth() {
  191. uni.showModal({
  192. title: '解绑提醒',
  193. content: '解绑后您将无法通过微信登录此账号',
  194. cancelText: '再想想',
  195. confirmText: '确定',
  196. success: async function (res) {
  197. if (!res.confirm) {
  198. return;
  199. }
  200. const result = await sheep.$platform
  201. .useProvider('wechat')
  202. .unbind(state.thirdInfo.openid);
  203. if (result) {
  204. await getUserInfo();
  205. }
  206. },
  207. });
  208. }
  209. // 保存信息
  210. async function onSubmit() {
  211. const { code } = await UserApi.updateUser({
  212. avatar: state.model.avatar,
  213. nickname: state.model.nickname,
  214. sex: state.model.sex,
  215. });
  216. if (code === 0) {
  217. await getUserInfo();
  218. }
  219. }
  220. // 获得用户信息
  221. const getUserInfo = async () => {
  222. // 个人信息
  223. const userInfo = await sheep.$store('user').getInfo();
  224. state.model = clone(userInfo);
  225. // 获得社交用户的信息
  226. if (sheep.$platform.name !== 'H5') {
  227. const result = await sheep.$platform.useProvider('wechat').getInfo();
  228. state.thirdInfo = result || {};
  229. }
  230. };
  231. // 退出账号
  232. function onLogout() {
  233. uni.showModal({
  234. title: '提示',
  235. content: '确认退出账号?',
  236. success: async function(res) {
  237. if (!res.confirm) {
  238. return;
  239. }
  240. const {
  241. code
  242. } = await AuthUtil.logout();
  243. if (code !== 0) {
  244. return;
  245. }
  246. sheep.$store('user').logout();
  247. uni.removeStorageSync('linkId');
  248. sheep.$router.go('/pages/index/user');
  249. },
  250. });
  251. }
  252. onBeforeMount(() => {
  253. getUserInfo();
  254. });
  255. onLoad(()=>{
  256. uni.$on('alipayAccountChangeComplete', getUserInfo);
  257. uni.$on('bankAccountChangeComplete', getUserInfo);
  258. })
  259. </script>
  260. <style lang="scss" scoped>
  261. .loginout-btn {
  262. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  263. color:#fff;
  264. width: 100%;
  265. height: 80rpx;
  266. border-radius: 40rpx;
  267. font-size: 30rpx;
  268. }
  269. :deep() {
  270. .uni-file-picker {
  271. border-radius: 50%;
  272. }
  273. .uni-list-chat__content-extra {
  274. display: flex;
  275. justify-content: center;
  276. }
  277. .uni-file-picker__container {
  278. margin: -14rpx -12rpx;
  279. }
  280. .file-picker__progress {
  281. height: 0 !important;
  282. }
  283. .uni-list-item__content-title {
  284. font-size: 32rpx !important;
  285. color: #333333 !important;
  286. line-height: normal !important;
  287. }
  288. .uni-icons {
  289. font-size: 40rpx !important;
  290. }
  291. .is-disabled {
  292. color: #333333;
  293. }
  294. }
  295. :deep(.disabled) {
  296. opacity: 1;
  297. }
  298. .uni-list-item {
  299. min-height: 100rpx;
  300. }
  301. .gender-name {
  302. font-size: 28rpx;
  303. font-weight: 500;
  304. line-height: normal;
  305. color: #333333;
  306. }
  307. .title-box {
  308. font-size: 28rpx;
  309. font-weight: 500;
  310. color: #666666;
  311. line-height: 100rpx;
  312. }
  313. .logout-btn {
  314. width: 710rpx;
  315. height: 80rpx;
  316. background: linear-gradient(90deg, #132b85, #193bb6);
  317. border-radius: 40rpx;
  318. font-size: 30rpx;
  319. font-weight: 500;
  320. color: $white;
  321. }
  322. .radio-dark {
  323. filter: grayscale(100%);
  324. filter: gray;
  325. opacity: 0.4;
  326. }
  327. .content-img {
  328. border-radius: 50%;
  329. }
  330. .header-box-content {
  331. position: relative;
  332. width: 160rpx;
  333. height: 160rpx;
  334. overflow: hidden;
  335. border-radius: 50%;
  336. }
  337. .avatar-action {
  338. position: absolute;
  339. left: 50%;
  340. transform: translateX(-50%);
  341. bottom: 0;
  342. z-index: 1;
  343. width: 160rpx;
  344. height: 46rpx;
  345. background: rgba(#000000, 0.3);
  346. .avatar-action-btn {
  347. width: 160rpx;
  348. height: 46rpx;
  349. font-weight: 500;
  350. font-size: 24rpx;
  351. color: #ffffff;
  352. }
  353. }
  354. // 绑定项
  355. .account-list {
  356. background-color: $white;
  357. height: 100rpx;
  358. padding: 0 20rpx;
  359. .list-img {
  360. width: 40rpx;
  361. height: 40rpx;
  362. margin-right: 10rpx;
  363. }
  364. .list-name {
  365. font-size: 28rpx;
  366. color: #333333;
  367. }
  368. .info {
  369. .avatar {
  370. width: 38rpx;
  371. height: 38rpx;
  372. border-radius: 50%;
  373. overflow: hidden;
  374. }
  375. .name {
  376. font-size: 28rpx;
  377. font-weight: 400;
  378. color: $dark-9;
  379. }
  380. }
  381. .bind-box {
  382. width: 100rpx;
  383. height: 50rpx;
  384. line-height: normal;
  385. display: flex;
  386. justify-content: center;
  387. align-items: center;
  388. font-size: 24rpx;
  389. .bind-btn {
  390. width: 100%;
  391. height: 100%;
  392. border-radius: 25rpx;
  393. background: #f4f4f4;
  394. color: #999999;
  395. }
  396. .relieve-btn {
  397. width: 100%;
  398. height: 100%;
  399. border-radius: 25rpx;
  400. background: var(--ui-BG-Main-opacity-1);
  401. color: var(--ui-BG-Main);
  402. }
  403. }
  404. }
  405. .list-border {
  406. font-size: 28rpx;
  407. font-weight: 400;
  408. color: #333333;
  409. border-bottom: 2rpx solid #eeeeee;
  410. }
  411. image {
  412. width: 100%;
  413. height: 100%;
  414. }
  415. </style>