setting.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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. <view class="bg-white">
  6. <uni-list :border="false" class="ss-p-y-40">
  7. <uni-list-chat clickable :avatar-circle="true" :title="state.model?.nickname"
  8. :avatar="state.model?.avatar" note="个性签名" @tap="sheep.$router.go('/pages/user/info')">
  9. <view class="chat-custom-right">
  10. <text class="_icon-forward" style="color: #bbbbbb; font-size: 32rpx"></text>
  11. </view>
  12. </uni-list-chat>
  13. <uni-list-item clickable @tap="sheep.$router.go('/pages/user/address/list')" title="收货地址管理"
  14. showArrow :border="false" />
  15. <uni-list-item clickable @tap="sheep.$router.go('/pages/user/invoice/list')" title="发票抬头管理"
  16. showArrow :border="false" />
  17. <uni-list-item :clickable="!userInfo.mobile" @tap="sheep.$router.go('/pages/user/address/list')"
  18. title="实名认证" showArrow :border="false">
  19. <template v-slot:body>
  20. <p style="width: 100%;">实名认证&nbsp;&nbsp;&nbsp;&nbsp;{{userInfo.mobile?"已认证":"未认证"}}<span
  21. style="float: right;">{{userInfo.mobile?"":"未认证"}}</span></p>
  22. </template>
  23. </uni-list-item>
  24. <uni-list-item title="推荐老师" :border="false">
  25. <template v-slot:body>
  26. <p style="width: 100%;">推荐老师&nbsp;&nbsp;&nbsp;&nbsp;xxx</p>
  27. </template>
  28. </uni-list-item>
  29. <uni-list-item title="我的二维码" clickable @tap="sheep.$router.go('/pages/user/qrcode-share')" :border="false">
  30. <template v-slot:body>
  31. <p style="width: 100%;display: flex;align-items: center;">
  32. 我的二维码&nbsp;&nbsp;&nbsp;&nbsp;<su-image class="content-img"
  33. style="border:1px solid #f4f4f4" :current="0" :src="state.model?.avatar"
  34. :height="160" :width="160" :radius="0" mode="scaleToFill" /></p>
  35. </template>
  36. </uni-list-item>
  37. </uni-list>
  38. </view>
  39. </uni-forms>
  40. <!-- <su-fixed bottom placeholder bg="none">
  41. <view class="footer-box ss-p-20">
  42. <button class="ss-rest-button logout-btn ui-Shadow-Main" @tap="onSubmit">保存</button>
  43. </view>
  44. </su-fixed> -->
  45. </s-layout>
  46. </template>
  47. <script setup>
  48. import {
  49. computed,
  50. reactive,
  51. onBeforeMount
  52. } from 'vue';
  53. import sheep from '@/sheep';
  54. import {
  55. clone
  56. } from 'lodash';
  57. import {
  58. showAuthModal,
  59. showShareModal
  60. } from '@/sheep/hooks/useModal';
  61. import FileApi from '@/sheep/api/infra/file';
  62. import UserApi from '@/sheep/api/member/user';
  63. const state = reactive({
  64. model: {}, // 个人信息
  65. rules: {},
  66. thirdInfo: {}, // 社交用户的信息
  67. });
  68. const placeholderStyle = 'color:#BBBBBB;font-size:28rpx;line-height:normal';
  69. const userInfo = computed(() => sheep.$store('user').userInfo);
  70. // 绑定第三方账号
  71. async function bindThirdOauth() {
  72. let result = await sheep.$platform.useProvider('wechat').bind();
  73. if (result) {
  74. await getUserInfo();
  75. }
  76. }
  77. // 解绑第三方账号
  78. function unBindThirdOauth() {
  79. uni.showModal({
  80. title: '解绑提醒',
  81. content: '解绑后您将无法通过微信登录此账号',
  82. cancelText: '再想想',
  83. confirmText: '确定',
  84. success: async function(res) {
  85. if (!res.confirm) {
  86. return;
  87. }
  88. const result = await sheep.$platform.useProvider('wechat').unbind(state.thirdInfo.openid);
  89. if (result) {
  90. await getUserInfo();
  91. }
  92. },
  93. });
  94. }
  95. // 保存信息
  96. async function onSubmit() {
  97. const {
  98. code
  99. } = await UserApi.updateUser({
  100. avatar: state.model.avatar,
  101. nickname: state.model.nickname,
  102. sex: state.model.sex,
  103. });
  104. if (code === 0) {
  105. await getUserInfo();
  106. }
  107. }
  108. // 获得用户信息
  109. const getUserInfo = async () => {
  110. // 个人信息
  111. const userInfo = await sheep.$store('user').getInfo();
  112. state.model = clone(userInfo);
  113. // 获得社交用户的信息
  114. if (sheep.$platform.name !== 'H5') {
  115. const result = await sheep.$platform.useProvider('wechat').getInfo();
  116. state.thirdInfo = result || {};
  117. }
  118. };
  119. onBeforeMount(() => {
  120. getUserInfo();
  121. });
  122. </script>
  123. <style lang="scss" scoped>
  124. :deep() {
  125. .uni-file-picker {
  126. border-radius: 50%;
  127. }
  128. .uni-list-chat__content-extra {
  129. display: flex;
  130. justify-content: center;
  131. }
  132. .uni-file-picker__container {
  133. margin: -14rpx -12rpx;
  134. }
  135. .file-picker__progress {
  136. height: 0 !important;
  137. }
  138. .uni-list-item__content-title {
  139. font-size: 28rpx !important;
  140. color: #333333 !important;
  141. line-height: normal !important;
  142. }
  143. .uni-icons {
  144. font-size: 40rpx !important;
  145. }
  146. .is-disabled {
  147. color: #333333;
  148. }
  149. }
  150. :deep(.disabled) {
  151. opacity: 1;
  152. }
  153. .uni-list-item {
  154. min-height: 100rpx;
  155. }
  156. .gender-name {
  157. font-size: 28rpx;
  158. font-weight: 500;
  159. line-height: normal;
  160. color: #333333;
  161. }
  162. .title-box {
  163. font-size: 28rpx;
  164. font-weight: 500;
  165. color: #666666;
  166. line-height: 100rpx;
  167. }
  168. .logout-btn {
  169. width: 710rpx;
  170. height: 80rpx;
  171. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  172. border-radius: 40rpx;
  173. font-size: 30rpx;
  174. font-weight: 500;
  175. color: $white;
  176. }
  177. .radio-dark {
  178. filter: grayscale(100%);
  179. filter: gray;
  180. opacity: 0.4;
  181. }
  182. .content-img {
  183. border-radius: 50%;
  184. }
  185. .header-box-content {
  186. position: relative;
  187. width: 160rpx;
  188. height: 160rpx;
  189. overflow: hidden;
  190. border-radius: 50%;
  191. }
  192. .avatar-action {
  193. position: absolute;
  194. left: 50%;
  195. transform: translateX(-50%);
  196. bottom: 0;
  197. z-index: 1;
  198. width: 160rpx;
  199. height: 46rpx;
  200. background: rgba(#000000, 0.3);
  201. .avatar-action-btn {
  202. width: 160rpx;
  203. height: 46rpx;
  204. font-weight: 500;
  205. font-size: 24rpx;
  206. color: #ffffff;
  207. }
  208. }
  209. // 绑定项
  210. .account-list {
  211. background-color: $white;
  212. height: 100rpx;
  213. padding: 0 20rpx;
  214. .list-img {
  215. width: 40rpx;
  216. height: 40rpx;
  217. margin-right: 10rpx;
  218. }
  219. .list-name {
  220. font-size: 28rpx;
  221. color: #333333;
  222. }
  223. .info {
  224. .avatar {
  225. width: 38rpx;
  226. height: 38rpx;
  227. border-radius: 50%;
  228. overflow: hidden;
  229. }
  230. .name {
  231. font-size: 28rpx;
  232. font-weight: 400;
  233. color: $dark-9;
  234. }
  235. }
  236. .bind-box {
  237. width: 100rpx;
  238. height: 50rpx;
  239. line-height: normal;
  240. display: flex;
  241. justify-content: center;
  242. align-items: center;
  243. font-size: 24rpx;
  244. .bind-btn {
  245. width: 100%;
  246. height: 100%;
  247. border-radius: 25rpx;
  248. background: #f4f4f4;
  249. color: #999999;
  250. }
  251. .relieve-btn {
  252. width: 100%;
  253. height: 100%;
  254. border-radius: 25rpx;
  255. background: var(--ui-BG-Main-opacity-1);
  256. color: var(--ui-BG-Main);
  257. }
  258. }
  259. }
  260. .list-border {
  261. font-size: 28rpx;
  262. font-weight: 400;
  263. color: #333333;
  264. border-bottom: 2rpx solid #eeeeee;
  265. }
  266. image {
  267. width: 100%;
  268. height: 100%;
  269. }
  270. </style>