personStatus.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. <template>
  2. <view class="page flex-col">
  3. <view class="group_1 flex-col">
  4. <image src="../../static/bg.png" mode="" style="width: 100%;height: 100%;"></image>
  5. <view class="box_3 flex-col">
  6. <text class="text_4">当前状态:{{list[info.status*1-1]||'暂无'}}</text>
  7. <view class="group_5 flex-col"></view>
  8. <view class="text-wrapper_3 flex-col" v-for="(item,index) in list" @click="itemclick(index)" :class="{'select':current==index}" :key="index" >
  9. <text class="text_6">{{item}}</text>
  10. </view>
  11. <!-- <view class="text-wrapper_3 flex-col">
  12. <text class="text_6">已婚</text>
  13. </view>
  14. <view class="text-wrapper_4 flex-col">
  15. <text class="text_7">离异</text>
  16. </view>
  17. <view class="text-wrapper_5 flex-col">
  18. <text class="text_8">丧偶</text>
  19. </view> -->
  20. <view class="text-wrapper_6 flex-col" @click="confirm">
  21. <text class="text_9" >确认</text>
  22. </view>
  23. <view class="group_6 flex-col">
  24. <view class="avatar">
  25. <image :src="info.headimg" mode=""></image>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. onLoad() {
  35. this.info=JSON.parse(uni.getStorageSync('userInfo'))
  36. this.current=this.info.status*1-1
  37. },
  38. data() {
  39. return {
  40. list:['未婚','已婚','离异','丧偶'],
  41. current:0,
  42. info:{}
  43. };
  44. },
  45. methods: {
  46. confirm(){
  47. uni.$u.http.post('/api/user/user_status',{status:this.current*1+1}).then(res => {
  48. if(res.code==1){
  49. this.$u.toast(res.msg)
  50. this.getUserInfo()
  51. }
  52. })
  53. },
  54. getUserInfo(){
  55. uni.$u.http.post('/api/user/userinfo').then(res => {
  56. if(res.code==1){
  57. this.info=res.data
  58. uni.setStorageSync('userInfo',JSON.stringify(res.data))
  59. }
  60. })
  61. },
  62. itemclick(index){
  63. if(this.current!=index){
  64. this.current=index
  65. }
  66. }
  67. },
  68. };
  69. </script>
  70. <style lang="scss">
  71. @import '@/common/common.css';
  72. .select{
  73. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  74. text{
  75. color: #fff;
  76. }
  77. }
  78. .avatar{
  79. position: relative;
  80. z-index: 999;
  81. margin: 0 auto;
  82. image{
  83. width: 172rpx;
  84. height: 172rpx;
  85. border-radius: 50%;
  86. border: 4rpx solid #FFFFFF;
  87. }
  88. }
  89. .page {
  90. background-color: rgba(255, 255, 255, 1);
  91. position: relative;
  92. width: 750rpx;
  93. overflow: hidden;
  94. }
  95. .group_1 {
  96. position: relative;
  97. height: 100vh;
  98. width: 750rpx;
  99. }
  100. .group_10 {
  101. width: 750rpx;
  102. height: 290rpx;
  103. }
  104. .box_5 {
  105. width: 680rpx;
  106. height: 34rpx;
  107. margin: 30rpx 0 0 42rpx;
  108. }
  109. .text-wrapper_8 {
  110. width: 108rpx;
  111. height: 34rpx;
  112. overflow-wrap: break-word;
  113. font-size: 0;
  114. letter-spacing: -0.2800000011920929px;
  115. font-family: Helvetica;
  116. text-align: center;
  117. white-space: nowrap;
  118. line-height: 34rpx;
  119. }
  120. .text_12 {
  121. width: 108rpx;
  122. height: 34rpx;
  123. overflow-wrap: break-word;
  124. color: rgba(0, 0, 0, 1);
  125. font-size: 28rpx;
  126. font-family: Helvetica;
  127. text-align: left;
  128. white-space: nowrap;
  129. line-height: 34rpx;
  130. }
  131. .text_13 {
  132. width: 108rpx;
  133. height: 34rpx;
  134. overflow-wrap: break-word;
  135. color: rgba(0, 0, 0, 1);
  136. font-size: 28rpx;
  137. font-family: Helvetica;
  138. text-align: left;
  139. white-space: nowrap;
  140. line-height: 34rpx;
  141. }
  142. .group_11 {
  143. width: 34rpx;
  144. height: 22rpx;
  145. background-size: 36rpx 24rpx;
  146. margin: 6rpx 0 0 438rpx;
  147. }
  148. .group_12 {
  149. width: 30rpx;
  150. height: 22rpx;
  151. background-size: 32rpx 24rpx;
  152. margin: 4rpx 0 0 10rpx;
  153. }
  154. .group_13 {
  155. width: 50rpx;
  156. height: 24rpx;
  157. margin: 4rpx 0 0 10rpx;
  158. }
  159. .box_6 {
  160. width: 706rpx;
  161. height: 74rpx;
  162. margin: 24rpx 0 128rpx 30rpx;
  163. }
  164. .box_2 {
  165. width: 64rpx;
  166. height: 64rpx;
  167. }
  168. .text_3 {
  169. width: 146rpx;
  170. height: 50rpx;
  171. overflow-wrap: break-word;
  172. color: rgba(34, 34, 34, 1);
  173. font-size: 36rpx;
  174. letter-spacing: 0.2266666740179062px;
  175. font-family: PingFangSC-Medium;
  176. text-align: right;
  177. white-space: nowrap;
  178. line-height: 50rpx;
  179. margin: 22rpx 0 0 208rpx;
  180. }
  181. .group_14 {
  182. width: 168rpx;
  183. height: 60rpx;
  184. margin: 14rpx 0 0 120rpx;
  185. }
  186. .box_3 {
  187. background-color: rgba(255, 255, 255, 1);
  188. border-radius: 20px 20px 0px 0px;
  189. position: absolute;
  190. left: 0;
  191. top: 151rpx;
  192. width: 750rpx;
  193. height: 1336rpx;
  194. }
  195. .text_4 {
  196. width: 228rpx;
  197. height: 44rpx;
  198. overflow-wrap: break-word;
  199. color: rgba(34, 34, 34, 1);
  200. font-size: 32rpx;
  201. letter-spacing: 0.20148147642612457px;
  202. font-family: PingFangSC-Medium;
  203. text-align: right;
  204. white-space: nowrap;
  205. line-height: 44rpx;
  206. margin: 136rpx 0 0 262rpx;
  207. }
  208. .group_5 {
  209. background-color: rgba(242, 242, 242, 1);
  210. width: 690rpx;
  211. height: 2rpx;
  212. margin: 40rpx 0 0 30rpx;
  213. }
  214. .text-wrapper_2 {
  215. height: 100rpx;
  216. width: 610rpx;
  217. margin: 64rpx 0 0 70rpx;
  218. }
  219. .text_5 {
  220. width: 66rpx;
  221. height: 44rpx;
  222. overflow-wrap: break-word;
  223. color: rgba(255, 255, 255, 1);
  224. font-size: 32rpx;
  225. letter-spacing: 0.20148147642612457px;
  226. font-family: PingFangSC-Medium;
  227. text-align: right;
  228. white-space: nowrap;
  229. line-height: 44rpx;
  230. margin: 28rpx 0 0 272rpx;
  231. }
  232. .text-wrapper_3 {
  233. background-color: rgba(243, 244, 246, 1);
  234. border-radius: 10px;
  235. height: 100rpx;
  236. width: 610rpx;
  237. margin: 40rpx 0 0 70rpx;
  238. }
  239. .text_6 {
  240. width: 66rpx;
  241. height: 44rpx;
  242. overflow-wrap: break-word;
  243. color: rgba(34, 34, 34, 1);
  244. font-size: 32rpx;
  245. letter-spacing: 0.20148147642612457px;
  246. font-family: PingFangSC-Medium;
  247. text-align: right;
  248. white-space: nowrap;
  249. line-height: 44rpx;
  250. margin: 28rpx 0 0 272rpx;
  251. }
  252. .text-wrapper_4 {
  253. background-color: rgba(243, 244, 246, 1);
  254. border-radius: 10px;
  255. height: 100rpx;
  256. width: 610rpx;
  257. margin: 40rpx 0 0 70rpx;
  258. }
  259. .text_7 {
  260. width: 66rpx;
  261. height: 44rpx;
  262. overflow-wrap: break-word;
  263. color: rgba(34, 34, 34, 1);
  264. font-size: 32rpx;
  265. letter-spacing: 0.20148147642612457px;
  266. font-family: PingFangSC-Medium;
  267. text-align: right;
  268. white-space: nowrap;
  269. line-height: 44rpx;
  270. margin: 28rpx 0 0 272rpx;
  271. }
  272. .text-wrapper_5 {
  273. background-color: rgba(243, 244, 246, 1);
  274. border-radius: 10px;
  275. height: 100rpx;
  276. width: 610rpx;
  277. margin: 40rpx 0 0 70rpx;
  278. }
  279. .text_8 {
  280. width: 66rpx;
  281. height: 44rpx;
  282. overflow-wrap: break-word;
  283. color: rgba(34, 34, 34, 1);
  284. font-size: 32rpx;
  285. letter-spacing: 0.20148147642612457px;
  286. font-family: PingFangSC-Medium;
  287. text-align: right;
  288. white-space: nowrap;
  289. line-height: 44rpx;
  290. margin: 28rpx 0 0 272rpx;
  291. }
  292. .text-wrapper_6 {
  293. position: fixed;
  294. bottom: 84rpx;
  295. left: 50%;
  296. transform: translateX(-50%);
  297. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  298. height: 92rpx;
  299. width: 650rpx;
  300. border-radius: 52rpx;
  301. }
  302. .text_9 {
  303. width: 74rpx;
  304. height: 50rpx;
  305. overflow-wrap: break-word;
  306. color: rgba(255, 255, 255, 1);
  307. font-size: 36rpx;
  308. letter-spacing: 0.2266666740179062px;
  309. font-family: PingFangSC-Medium;
  310. text-align: right;
  311. white-space: nowrap;
  312. line-height: 50rpx;
  313. margin: 22rpx 0 0 288rpx;
  314. }
  315. .group_6 {
  316. position: absolute;
  317. left: 290rpx;
  318. top: -72rpx;
  319. width: 172rpx;
  320. height: 172rpx;
  321. }
  322. </style>