setting.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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. clickable
  44. @tap="sheep.$router.go('/pages/user/invoice/list')"
  45. title="发票抬头管理"
  46. showArrow
  47. :border="false"
  48. /> -->
  49. <uni-list-item
  50. :clickable="!userInfo.mobile"
  51. @tap="sheep.$router.go('/pages/user/address/list')"
  52. title="实名认证"
  53. showArrow
  54. :border="false"
  55. >
  56. <template v-slot:body>
  57. <!-- <p style="width: 100%"
  58. >实名认证&nbsp;&nbsp;&nbsp;&nbsp;{{
  59. userInfo.mobile ? '已认证' : '未认证'
  60. }}<span style="float: right">{{
  61. userInfo.mobile ? '' : '未认证'
  62. }}</span></p
  63. > -->
  64. <p style="width: 100%"
  65. >实名认证&nbsp;&nbsp;&nbsp;&nbsp; 未认证
  66. </p>
  67. </template>
  68. </uni-list-item>
  69. <!-- <uni-list-item title="推荐老师" :border="false">
  70. <template v-slot:body>
  71. <p style="width: 100%">推荐老师&nbsp;&nbsp;&nbsp;&nbsp;xxx</p>
  72. </template>
  73. </uni-list-item> -->
  74. <uni-list-item
  75. title="我的二维码"
  76. clickable
  77. @tap="sheep.$router.go('/pages/user/qrcode-share')"
  78. :border="false"
  79. >
  80. <template v-slot:body>
  81. <p style="width: 100%; display: flex; align-items: center">
  82. 我的二维码&nbsp;&nbsp;&nbsp;&nbsp;
  83. <su-image
  84. class="content-img"
  85. style="border: 1px solid #f4f4f4"
  86. :current="0"
  87. :src="state.model?.avatar"
  88. :height="100"
  89. :width="100"
  90. :radius="0"
  91. mode="scaleToFill"
  92. />
  93. </p>
  94. </template>
  95. </uni-list-item>
  96. </uni-list>
  97. </view>
  98. </uni-forms>
  99. <su-fixed bottom placeholder>
  100. <view class="ss-p-x-20 ss-p-b-40">
  101. <button class="loginout-btn ss-reset-button" @tap="onLogout" v-if="isLogin">
  102. 退出登录
  103. </button>
  104. </view>
  105. </su-fixed>
  106. <!-- <su-fixed bottom placeholder bg="none">
  107. <view class="footer-box ss-p-20">
  108. <button class="ss-rest-button logout-btn ui-Shadow-Main" @tap="onSubmit">保存</button>
  109. </view>
  110. </su-fixed> -->
  111. </s-layout>
  112. </template>
  113. <script setup>
  114. import { computed, reactive, onBeforeMount } from 'vue';
  115. import sheep from '@/sheep';
  116. import { clone } from 'lodash';
  117. const isLogin = computed(() => sheep.$store('user').isLogin);
  118. import { showAuthModal, showShareModal } from '@/sheep/hooks/useModal';
  119. import FileApi from '@/sheep/api/infra/file';
  120. import UserApi from '@/sheep/api/member/user';
  121. import AuthUtil from '@/sheep/api/member/auth';
  122. const state = reactive({
  123. model: {}, // 个人信息
  124. rules: {},
  125. thirdInfo: {}, // 社交用户的信息
  126. });
  127. const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
  128. const userInfo = computed(() => sheep.$store('user').userInfo);
  129. // 绑定第三方账号
  130. async function bindThirdOauth() {
  131. let result = await sheep.$platform.useProvider('wechat').bind();
  132. if (result) {
  133. await getUserInfo();
  134. }
  135. }
  136. // 解绑第三方账号
  137. function unBindThirdOauth() {
  138. uni.showModal({
  139. title: '解绑提醒',
  140. content: '解绑后您将无法通过微信登录此账号',
  141. cancelText: '再想想',
  142. confirmText: '确定',
  143. success: async function (res) {
  144. if (!res.confirm) {
  145. return;
  146. }
  147. const result = await sheep.$platform
  148. .useProvider('wechat')
  149. .unbind(state.thirdInfo.openid);
  150. if (result) {
  151. await getUserInfo();
  152. }
  153. },
  154. });
  155. }
  156. // 保存信息
  157. async function onSubmit() {
  158. const { code } = await UserApi.updateUser({
  159. avatar: state.model.avatar,
  160. nickname: state.model.nickname,
  161. sex: state.model.sex,
  162. });
  163. if (code === 0) {
  164. await getUserInfo();
  165. }
  166. }
  167. // 获得用户信息
  168. const getUserInfo = async () => {
  169. // 个人信息
  170. const userInfo = await sheep.$store('user').getInfo();
  171. state.model = clone(userInfo);
  172. // 获得社交用户的信息
  173. if (sheep.$platform.name !== 'H5') {
  174. const result = await sheep.$platform.useProvider('wechat').getInfo();
  175. state.thirdInfo = result || {};
  176. }
  177. };
  178. // 退出账号
  179. function onLogout() {
  180. uni.showModal({
  181. title: '提示',
  182. content: '确认退出账号?',
  183. success: async function(res) {
  184. if (!res.confirm) {
  185. return;
  186. }
  187. const {
  188. code
  189. } = await AuthUtil.logout();
  190. if (code !== 0) {
  191. return;
  192. }
  193. sheep.$store('user').logout();
  194. uni.removeStorageSync('linkId');
  195. sheep.$router.go('/pages/index/user');
  196. },
  197. });
  198. }
  199. onBeforeMount(() => {
  200. getUserInfo();
  201. });
  202. </script>
  203. <style lang="scss" scoped>
  204. .loginout-btn {
  205. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  206. color:#fff;
  207. width: 100%;
  208. height: 80rpx;
  209. border-radius: 40rpx;
  210. font-size: 30rpx;
  211. }
  212. :deep() {
  213. .uni-file-picker {
  214. border-radius: 50%;
  215. }
  216. .uni-list-chat__content-extra {
  217. display: flex;
  218. justify-content: center;
  219. }
  220. .uni-file-picker__container {
  221. margin: -14rpx -12rpx;
  222. }
  223. .file-picker__progress {
  224. height: 0 !important;
  225. }
  226. .uni-list-item__content-title {
  227. font-size: 28rpx !important;
  228. color: #333333 !important;
  229. line-height: normal !important;
  230. }
  231. .uni-icons {
  232. font-size: 40rpx !important;
  233. }
  234. .is-disabled {
  235. color: #333333;
  236. }
  237. }
  238. :deep(.disabled) {
  239. opacity: 1;
  240. }
  241. .uni-list-item {
  242. min-height: 100rpx;
  243. }
  244. .gender-name {
  245. font-size: 28rpx;
  246. font-weight: 500;
  247. line-height: normal;
  248. color: #333333;
  249. }
  250. .title-box {
  251. font-size: 28rpx;
  252. font-weight: 500;
  253. color: #666666;
  254. line-height: 100rpx;
  255. }
  256. .logout-btn {
  257. width: 710rpx;
  258. height: 80rpx;
  259. background: linear-gradient(90deg, #132b85, #193bb6);
  260. border-radius: 40rpx;
  261. font-size: 30rpx;
  262. font-weight: 500;
  263. color: $white;
  264. }
  265. .radio-dark {
  266. filter: grayscale(100%);
  267. filter: gray;
  268. opacity: 0.4;
  269. }
  270. .content-img {
  271. border-radius: 50%;
  272. }
  273. .header-box-content {
  274. position: relative;
  275. width: 160rpx;
  276. height: 160rpx;
  277. overflow: hidden;
  278. border-radius: 50%;
  279. }
  280. .avatar-action {
  281. position: absolute;
  282. left: 50%;
  283. transform: translateX(-50%);
  284. bottom: 0;
  285. z-index: 1;
  286. width: 160rpx;
  287. height: 46rpx;
  288. background: rgba(#000000, 0.3);
  289. .avatar-action-btn {
  290. width: 160rpx;
  291. height: 46rpx;
  292. font-weight: 500;
  293. font-size: 24rpx;
  294. color: #ffffff;
  295. }
  296. }
  297. // 绑定项
  298. .account-list {
  299. background-color: $white;
  300. height: 100rpx;
  301. padding: 0 20rpx;
  302. .list-img {
  303. width: 40rpx;
  304. height: 40rpx;
  305. margin-right: 10rpx;
  306. }
  307. .list-name {
  308. font-size: 28rpx;
  309. color: #333333;
  310. }
  311. .info {
  312. .avatar {
  313. width: 38rpx;
  314. height: 38rpx;
  315. border-radius: 50%;
  316. overflow: hidden;
  317. }
  318. .name {
  319. font-size: 28rpx;
  320. font-weight: 400;
  321. color: $dark-9;
  322. }
  323. }
  324. .bind-box {
  325. width: 100rpx;
  326. height: 50rpx;
  327. line-height: normal;
  328. display: flex;
  329. justify-content: center;
  330. align-items: center;
  331. font-size: 24rpx;
  332. .bind-btn {
  333. width: 100%;
  334. height: 100%;
  335. border-radius: 25rpx;
  336. background: #f4f4f4;
  337. color: #999999;
  338. }
  339. .relieve-btn {
  340. width: 100%;
  341. height: 100%;
  342. border-radius: 25rpx;
  343. background: var(--ui-BG-Main-opacity-1);
  344. color: var(--ui-BG-Main);
  345. }
  346. }
  347. }
  348. .list-border {
  349. font-size: 28rpx;
  350. font-weight: 400;
  351. color: #333333;
  352. border-bottom: 2rpx solid #eeeeee;
  353. }
  354. image {
  355. width: 100%;
  356. height: 100%;
  357. }
  358. </style>