setting.vue 7.8 KB

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