setting.vue 7.0 KB

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