setting.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. <!-- 用户设置 -->
  2. <template>
  3. <s-layout :title="$t('setting.set')" 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="">
  13. <uni-list-chat
  14. clickable
  15. :avatar-circle="true"
  16. :title="state.model?.nickname"
  17. :avatar="state.model?.avatar"
  18. :note="$t('setting.signature')"
  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="$t('setting.physical_address_management')"
  32. showArrow
  33. :border="false"
  34. />
  35. <uni-list-item
  36. clickable
  37. @tap="sheep.$router.go('/pages/user/dummyAddress/list')"
  38. :title="$t('setting.virtual_address_management')"
  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. >{{$t('setting.alipay_account')}}&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. >{{$t('setting.bank_card')}}&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. v-if="userWallet.isPtSystemUser"
  88. :clickable="true"
  89. @tap="goBackEnd('pt')"
  90. title="进入平台"
  91. showArrow
  92. :border="false"
  93. >
  94. <template v-slot:body>
  95. <p style="width: 100%"
  96. >{{$t('setting.enter_platform')}}
  97. </p>
  98. </template>
  99. </uni-list-item>
  100. <uni-list-item
  101. v-if="userWallet.isShSystemUser"
  102. :clickable="true"
  103. @tap="goBackEnd('sh')"
  104. title="进入商家后台"
  105. showArrow
  106. :border="false"
  107. >
  108. <template v-slot:body>
  109. <p style="width: 100%"
  110. >{{$t('setting.enter_merchant_backend')}}
  111. </p>
  112. </template>
  113. </uni-list-item>
  114. <uni-list-item
  115. v-if="isBetaUser()"
  116. :clickable="true"
  117. @tap="changeLanguage()"
  118. title="切换语言"
  119. showArrow
  120. :border="false"
  121. >
  122. <template v-slot:body>
  123. <p style="width: 100%"
  124. >{{currentLang === 'en-US' ? 'Switch to Chinese': '切换为英文'}}
  125. </p>
  126. </template>
  127. </uni-list-item>
  128. <uni-list-item
  129. title="我的二维码"
  130. clickable
  131. @tap="sheep.$router.go('/pages/user/qrcode-share')"
  132. :border="false"
  133. >
  134. <template v-slot:body>
  135. <p style="width: 100%; display: flex; align-items: center">
  136. {{$t('setting.enter_merchant_backend')}} &nbsp;&nbsp;&nbsp;&nbsp;
  137. <su-image
  138. class="content-img"
  139. style="border: 1px solid #f4f4f4"
  140. :current="0"
  141. :src="state.model?.avatar"
  142. :height="100"
  143. :width="100"
  144. :radius="0"
  145. mode="scaleToFill"
  146. />
  147. </p>
  148. </template>
  149. </uni-list-item>
  150. </uni-list>
  151. </view>
  152. </uni-forms>
  153. <!-- 当前社交平台的绑定关系,只处理 wechat 微信场景 -->
  154. <view v-if="sheep.$platform.name !== 'H5'">
  155. <view class="title-box ss-p-l-30">{{$t('setting.third_party_account_binding')}}</view>
  156. <view class="account-list ss-flex ss-row-between">
  157. <view v-if="'WechatOfficialAccount' === sheep.$platform.name" class="ss-flex ss-col-center">
  158. <image class="list-img" :src="sheep.$url.static('/static/images/WechatOfficialAccount.png')" />
  159. <text class="list-name">{{$t('setting.wechat_public_account')}}</text>
  160. </view>
  161. <view v-if="'WechatMiniProgram' === sheep.$platform.name" class="ss-flex ss-col-center">
  162. <image class="list-img" :src="sheep.$url.static('/static/images/WechatMiniProgram.png')" />
  163. <text class="list-name">{{$t('setting.wechat_mini_program')}}</text>
  164. </view>
  165. <view v-if="'App' === sheep.$platform.name" class="ss-flex ss-col-center">
  166. <image class="list-img" :src="sheep.$url.static('/static/images/wechat.png')" />
  167. <text class="list-name">{{$t('setting.wechat_open_platform')}}</text>
  168. </view>
  169. <view class="ss-flex ss-col-center">
  170. <view class="info ss-flex ss-col-center" v-if="state.thirdInfo">
  171. <image class="avatar ss-m-r-20" :src="sheep.$url.cdn(state.thirdInfo.avatar)" />
  172. <text class="name">{{ state.thirdInfo.nickname }}</text>
  173. </view>
  174. <view class="bind-box ss-m-l-20">
  175. <button v-if="state.thirdInfo.openid" class="ss-reset-button relieve-btn"
  176. @tap="unBindThirdOauth">
  177. {{ $t('setting.unbind') }}
  178. </button>
  179. <button v-else class="ss-reset-button bind-btn" @tap="bindThirdOauth">{{$t('setting.bind')}}</button>
  180. </view>
  181. </view>
  182. </view>
  183. </view>
  184. <su-fixed bottom placeholder>
  185. <view class="ss-p-x-20 ss-p-b-40">
  186. <button class="loginout-btn ss-reset-button" @tap="onLogout" v-if="isLogin">
  187. {{$t('user.log_out')}}
  188. </button>
  189. </view>
  190. </su-fixed>
  191. <!-- <su-fixed bottom placeholder bg="none">
  192. <view class="footer-box ss-p-20">
  193. <button class="ss-rest-button logout-btn ui-Shadow-Main" @tap="onSubmit">保存</button>
  194. </view>
  195. </su-fixed> -->
  196. </s-layout>
  197. </template>
  198. <script setup>
  199. import { computed, reactive, onBeforeMount } from 'vue';
  200. import sheep from '@/sheep';
  201. import { clone } from 'lodash';
  202. const isLogin = computed(() => sheep.$store('user').isLogin);
  203. import { showAuthModal, showShareModal } from '@/sheep/hooks/useModal';
  204. import FileApi from '@/sheep/api/infra/file';
  205. import UserApi from '@/sheep/api/member/user';
  206. import AuthUtil from '@/sheep/api/member/auth';
  207. import { isBetaUser } from '@/sheep/hooks/useApp.js'
  208. import {
  209. onLoad
  210. } from '@dcloudio/uni-app';
  211. import { setLanguage } from '@/locale'
  212. import { useI18n } from 'vue-i18n';
  213. const { t } = useI18n();
  214. const userInfo = computed(() => sheep.$store('user').userInfo);
  215. const userWallet = computed(() => sheep.$store('user').userWallet);
  216. const alipayAccount = computed(() => {
  217. let account = userInfo.value.alipayAccount;
  218. if (!account) {
  219. return false;
  220. }
  221. // 手机号脱敏
  222. if (/^\d{11}$/.test(account)) { // 检查是否是11位数字的手机号
  223. return `${account.substring(0, 3)}****${account.substring(7)}`;
  224. } else if (/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(account)) {
  225. const atIndex = account.indexOf('@');
  226. // 邮箱用户名长度小于等于3位时,不脱敏
  227. if (atIndex <= 3) {
  228. return account;
  229. }
  230. const username = account.substring(0, Math.ceil(atIndex / 2)); // 取邮箱用户名的一半
  231. const domain = account.substring(atIndex); // 邮箱域名部分
  232. return `${username}***${domain}`;
  233. }
  234. })
  235. const bankAccount = computed(() => {
  236. let account = userInfo.value.bankAccount;
  237. if (!account) {
  238. return false;
  239. }
  240. if (account.length === 8) {
  241. return account.substring(0, 2) + '********' + account.substr(-2);
  242. } else {
  243. return account.substring(0, 4) + '******' + account.substr(-4);
  244. }
  245. })
  246. // 修改支付宝账号
  247. const onChangeAlipayAccount = () => {
  248. showAuthModal('alipayAccount');
  249. };
  250. // 修改银行卡号
  251. const onChangeBankAccount = () => {
  252. showAuthModal('bankAccount');
  253. };
  254. const state = reactive({
  255. model: {}, // 个人信息
  256. rules: {},
  257. thirdInfo: {}, // 社交用户的信息
  258. });
  259. const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
  260. // 绑定第三方账号
  261. async function bindThirdOauth() {
  262. let result = await sheep.$platform.useProvider('wechat').bind();
  263. if (result) {
  264. await getUserInfo();
  265. }
  266. }
  267. // 解绑第三方账号
  268. function unBindThirdOauth() {
  269. uni.showModal({
  270. title: t('user.unbind_reminder'),
  271. content:t('rules.unbind_warning'),
  272. cancelText: t('common.cancel'),
  273. confirmText: t('common.confirm'),
  274. success: async function(res) {
  275. if (!res.confirm) {
  276. return;
  277. }
  278. const result = await sheep.$platform.useProvider('wechat').unbind(state.thirdInfo.openid);
  279. if (result) {
  280. await getUserInfo();
  281. }
  282. },
  283. });
  284. }
  285. // 保存信息
  286. async function onSubmit() {
  287. const { code } = await UserApi.updateUser({
  288. avatar: state.model.avatar,
  289. nickname: state.model.nickname,
  290. sex: state.model.sex,
  291. });
  292. if (code === 0) {
  293. await getUserInfo();
  294. }
  295. }
  296. // 获得用户信息
  297. const getUserInfo = async () => {
  298. // 个人信息
  299. const userInfo = await sheep.$store('user').getInfo();
  300. state.model = clone(userInfo);
  301. // 获得社交用户的信息
  302. if (sheep.$platform.name !== 'H5') {
  303. const result = await sheep.$platform.useProvider('wechat').getInfo();
  304. state.thirdInfo = result || {};
  305. }
  306. };
  307. // 退出账号
  308. function onLogout() {
  309. uni.showModal({
  310. title: t('setting.prompt'),
  311. content: t('setting.confirm_logout'),
  312. cancelText: t('common.cancel'),
  313. confirmText: t('common.confirm'),
  314. success: async function(res) {
  315. if (!res.confirm) {
  316. return;
  317. }
  318. const {
  319. code
  320. } = await AuthUtil.logout();
  321. if (code !== 0) {
  322. return;
  323. }
  324. sheep.$store('user').logout();
  325. uni.removeStorageSync('linkId');
  326. sheep.$router.go('/pages/index/user');
  327. },
  328. });
  329. }
  330. // 跳到平台到商户
  331. async function goBackEnd(type){
  332. const {
  333. code,
  334. data
  335. } = await AuthUtil.getConsumerRedirectUrl();
  336. if(code === 0){
  337. window.location.href = data;
  338. }
  339. }
  340. const currentLang = computed(() => {
  341. return uni.getStorageSync('userLanguage');
  342. });
  343. const changeLanguage = () => {
  344. // setLanguage()
  345. console.log(currentLang.value)
  346. if(currentLang.value === 'en-US'){
  347. setLanguage('zh-Hans');
  348. }else{
  349. setLanguage('en-US');
  350. }
  351. }
  352. onBeforeMount(() => {
  353. getUserInfo();
  354. });
  355. onLoad(()=>{
  356. uni.$on('alipayAccountChangeComplete', getUserInfo);
  357. uni.$on('bankAccountChangeComplete', getUserInfo);
  358. })
  359. </script>
  360. <style lang="scss" scoped>
  361. .loginout-btn {
  362. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  363. color:#fff;
  364. width: 100%;
  365. height: 80rpx;
  366. border-radius: 40rpx;
  367. font-size: 30rpx;
  368. }
  369. :deep() {
  370. .uni-file-picker {
  371. border-radius: 50%;
  372. }
  373. .uni-list-chat__content-extra {
  374. display: flex;
  375. justify-content: center;
  376. }
  377. .uni-file-picker__container {
  378. margin: -14rpx -12rpx;
  379. }
  380. .file-picker__progress {
  381. height: 0 !important;
  382. }
  383. .uni-list-item__content-title {
  384. font-size: 32rpx !important;
  385. color: #333333 !important;
  386. line-height: normal !important;
  387. }
  388. .uni-icons {
  389. font-size: 40rpx !important;
  390. }
  391. .is-disabled {
  392. color: #333333;
  393. }
  394. }
  395. :deep(.disabled) {
  396. opacity: 1;
  397. }
  398. .uni-list-item {
  399. min-height: 100rpx;
  400. }
  401. .gender-name {
  402. font-size: 28rpx;
  403. font-weight: 500;
  404. line-height: normal;
  405. color: #333333;
  406. }
  407. .title-box {
  408. font-size: 28rpx;
  409. font-weight: 500;
  410. color: #666666;
  411. line-height: 60rpx;
  412. }
  413. .logout-btn {
  414. width: 710rpx;
  415. height: 80rpx;
  416. background: linear-gradient(90deg, #132b85, #193bb6);
  417. border-radius: 40rpx;
  418. font-size: 30rpx;
  419. font-weight: 500;
  420. color: $white;
  421. }
  422. .radio-dark {
  423. filter: grayscale(100%);
  424. filter: gray;
  425. opacity: 0.4;
  426. }
  427. .content-img {
  428. border-radius: 50%;
  429. }
  430. .header-box-content {
  431. position: relative;
  432. width: 160rpx;
  433. height: 160rpx;
  434. overflow: hidden;
  435. border-radius: 50%;
  436. }
  437. .avatar-action {
  438. position: absolute;
  439. left: 50%;
  440. transform: translateX(-50%);
  441. bottom: 0;
  442. z-index: 1;
  443. width: 160rpx;
  444. height: 46rpx;
  445. background: rgba(#000000, 0.3);
  446. .avatar-action-btn {
  447. width: 160rpx;
  448. height: 46rpx;
  449. font-weight: 500;
  450. font-size: 24rpx;
  451. color: #ffffff;
  452. }
  453. }
  454. // 绑定项
  455. .account-list {
  456. background-color: $white;
  457. height: 100rpx;
  458. padding: 0 20rpx;
  459. .list-img {
  460. width: 40rpx;
  461. height: 40rpx;
  462. margin-right: 10rpx;
  463. }
  464. .list-name {
  465. font-size: 28rpx;
  466. color: #333333;
  467. }
  468. .info {
  469. .avatar {
  470. width: 38rpx;
  471. height: 38rpx;
  472. border-radius: 50%;
  473. overflow: hidden;
  474. }
  475. .name {
  476. font-size: 28rpx;
  477. font-weight: 400;
  478. color: $dark-9;
  479. }
  480. }
  481. .bind-box {
  482. width: 100rpx;
  483. height: 50rpx;
  484. line-height: normal;
  485. display: flex;
  486. justify-content: center;
  487. align-items: center;
  488. font-size: 24rpx;
  489. .bind-btn {
  490. width: 100%;
  491. height: 100%;
  492. border-radius: 25rpx;
  493. background: #f4f4f4;
  494. color: #999999;
  495. }
  496. .relieve-btn {
  497. width: 100%;
  498. height: 100%;
  499. border-radius: 25rpx;
  500. background: var(--ui-BG-Main-opacity-1);
  501. color: var(--ui-BG-Main);
  502. }
  503. }
  504. }
  505. .list-border {
  506. font-size: 28rpx;
  507. font-weight: 400;
  508. color: #333333;
  509. border-bottom: 2rpx solid #eeeeee;
  510. }
  511. image {
  512. width: 100%;
  513. height: 100%;
  514. }
  515. </style>