setting.vue 7.9 KB

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