mine.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <template>
  2. <view class="mine-page">
  3. <image src="../../static/images/mine-bg.png" class="mine-bg" mode=""></image>
  4. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  5. <view class="u-nav-slot" slot="left">
  6. <view class="mine-navbar u-flex-col">
  7. <text>我的</text>
  8. <text style="margin-top:-6rpx;"></text>
  9. </view>
  10. </view>
  11. </u-navbar>
  12. <view class="mine-user u-flex u-row-between">
  13. <image :src="userinfo.group_info.avatar" class="user-head" mode=""></image>
  14. <view class="user-center u-flex-col">
  15. <view class="u-flex " style="margin-bottom: 20rpx;">
  16. <text style="margin-right: 18rpx;">{{userinfo.group_info.name || ''}}</text>
  17. <u-icon name="edit-pen-fill" color="#2979ff" size="22"></u-icon>
  18. </view>
  19. <view class="introduce">
  20. <text>27岁</text>
  21. <text style="margin: 0 11rpx;">|</text>
  22. <text>本科</text>
  23. <text style="margin: 0 11rpx;">|</text>
  24. <text>5年</text>
  25. </view>
  26. </view>
  27. <!-- <image class="mine-user-img" src="../../static/images/mine-qiehuan.png" mode=""></image> -->
  28. <image class="mine-user-img" src="../../static/images/qiehuan.png" mode="">
  29. </image>
  30. </view>
  31. <view class="count-tabs u-flex u-row-between">
  32. <view class="tabs-item u-flex-col u-col-center" @click="toshoucang">
  33. <text>{{userinfo.group_info.collect_count || 0}}</text>
  34. <text>我的收藏</text>
  35. </view>
  36. <view class="tabs-item u-flex-col u-col-center" @click="totoudi">
  37. <text>{{userinfo.group_info.order_count || 0}}</text>
  38. <text>我的投递</text>
  39. </view>
  40. <view class="tabs-item u-flex-col u-col-center" >
  41. <text>{{userinfo.group_info.interview_count || 0}}</text>
  42. <text>我的面试</text>
  43. </view>
  44. <view class="tabs-item u-flex-col u-col-center" @click="tolook">
  45. <text>{{userinfo.group_info.yiew_count || 0}}</text>
  46. <text>谁看过我</text>
  47. </view>
  48. </view>
  49. <view class="other-list">
  50. <view class="other-header">
  51. 常用功能
  52. </view>
  53. <view class="u-flex u-flex-wrap">
  54. <view class="other-item u-flex-col u-col-center" >
  55. <image src="../../static/images/jianli2.png" style="width: 72rpx;height: 72rpx;" mode="" @click="tojianli"></image>
  56. <text>在线简历</text>
  57. </view>
  58. <view class="other-item u-flex-col u-col-center" >
  59. <image src="../../static/images/jianli.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  60. <text>简历附件</text>
  61. </view>
  62. <view class="other-item u-flex-col u-col-center" >
  63. <image src="../../static/images/qiuzhi.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  64. <text>求职意向</text>
  65. </view>
  66. <view class="other-item u-flex-col u-col-center" >
  67. <image src="../../static/images/yinsi.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  68. <text>求职隐私</text>
  69. </view>
  70. </view>
  71. </view>
  72. <view class="yongjin-box">
  73. <view class="yongjin-top u-flex u-row-between">
  74. <text class="text">我的佣金</text>
  75. <u-icon name="arrow-right" size="24"></u-icon>
  76. </view>
  77. <view class="yongjin-down u-flex u-row-between">
  78. <view class="down-item u-flex-col u-col-center u-row-center">
  79. <text>{{userinfo.statistic_data.commission_sum || 0}}</text>
  80. <text>当前余额</text>
  81. </view>
  82. <view class="down-item u-flex-col u-col-center u-row-center">
  83. <text>{{userinfo.statistic_data.order_commission || 0}}</text>
  84. <text>订单佣金</text>
  85. </view>
  86. <view class="down-item u-flex-col u-col-center u-row-center">
  87. <text>{{userinfo.statistic_data.invite_commission || 0}}</text>
  88. <text>邀请佣金</text>
  89. </view>
  90. <view class="down-item u-flex-col u-col-center u-row-center">
  91. <text>{{userinfo.statistic_data.bank_count || 0}}</text>
  92. <text>银行卡</text>
  93. </view>
  94. </view>
  95. </view>
  96. <view class="other-list">
  97. <view class="other-header">
  98. 其他功能
  99. </view>
  100. <view class="u-flex u-flex-wrap">
  101. <view class="other-item u-flex-col u-col-center" style="position: relative;" @click="tofapiao">
  102. <image src="../../static/images/mine-other3.png" mode=""></image>
  103. <image style="position: absolute;width: 72rpx;height: 28rpx;left: 120rpx;" src="../../static/images/yaoqing.png" mode=""></image>
  104. <text>邀请好友</text>
  105. </view>
  106. <view class="other-item u-flex-col u-col-center" @click="toshezhi">
  107. <image src="../../static/images/shezhi.png" mode=""></image>
  108. <text>账号设置</text>
  109. </view>
  110. <view class="other-item u-flex-col u-col-center" style="position: relative;" @click="torenzheng">
  111. <image src="../../static/images/renzheng.png" mode=""></image>
  112. <image style="position: absolute;width: 72rpx;height: 28rpx;left: 120rpx;" src="../../static/images/weirenzheng.png" mode=""></image>
  113. <text>学生认证</text>
  114. </view>
  115. <view class="other-item u-flex-col u-col-center" @click="touserinfo">
  116. <image src="../../static/images/mine-other4.png" mode=""></image>
  117. <text>我的主页</text>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. </template>
  123. <script>
  124. import {
  125. index,collect_get_list
  126. } from "@/units/inquire.js"
  127. export default {
  128. data() {
  129. return {
  130. page:1,
  131. id:"",
  132. userinfo: {
  133. group_info: {},
  134. statistic_data: {}
  135. },
  136. }
  137. },
  138. onLoad() {
  139. this.collect_get_list()
  140. },
  141. onShow() {
  142. this.getuser()
  143. },
  144. methods: {
  145. //收藏列表
  146. collect_get_list(){
  147. collect_get_list({
  148. page:this.page
  149. }).then(res=>{
  150. this.total = res.data.total
  151. })
  152. },
  153. getuser() {
  154. index().then(res => {
  155. this.userinfo = res.data
  156. this.id = res.data.id
  157. })
  158. },
  159. touserinfo() {
  160. uni.navigateTo({
  161. url: "/pagesD/userinfo"
  162. })
  163. },
  164. toshoucang(){
  165. uni.navigateTo({
  166. url:"/pagesD/my-shoucang?id="+this.id
  167. })
  168. },
  169. tojianli(){
  170. uni.navigateTo({
  171. url:"/pagesD/resume"
  172. })
  173. },
  174. tofapiao() {
  175. uni.navigateTo({
  176. url: "/pagesD/my-fapiao"
  177. })
  178. },
  179. tozixunlist() {
  180. uni.navigateTo({
  181. url: "/pagesD/my-zixun"
  182. })
  183. },
  184. toad() {
  185. uni.navigateTo({
  186. url: "/pagesD/ad-list"
  187. })
  188. },
  189. tozhaopin() {
  190. uni.navigateTo({
  191. url: "/pagesD/xiaoqi"
  192. })
  193. },
  194. tojieshou() {
  195. uni.navigateTo({
  196. url: "/pagesD/list-jieshou"
  197. })
  198. },
  199. tovip() {
  200. uni.navigateTo({
  201. url: "/pagesD/vip"
  202. })
  203. },
  204. todikou() {
  205. uni.navigateTo({
  206. url: "/pagesD/dikou"
  207. })
  208. },
  209. tojubao() {
  210. uni.navigateTo({
  211. url: "/pagesD/jubao-list"
  212. })
  213. },
  214. tozixun() {
  215. uni.navigateTo({
  216. url: "/pagesD/zixun-list"
  217. })
  218. },
  219. tolook(){
  220. uni.navigateTo({
  221. url:'/pagesD/look'
  222. })
  223. },
  224. toshezhi(){
  225. uni.navigateTo({
  226. url:"/pagesD/shezhi"
  227. })
  228. },
  229. totoudi(){
  230. uni.navigateTo({
  231. url:"/pagesD/my-order"
  232. })
  233. },
  234. torenzheng(){
  235. uni.navigateTo({
  236. url:"/pagesD/renzheng"
  237. })
  238. }
  239. }
  240. }
  241. </script>
  242. <style lang="scss">
  243. .mine-page {
  244. position: relative;
  245. .introduce {
  246. text {
  247. height: 36rpx;
  248. font-size: 26rpx;
  249. font-family: SFPro-Regular, SFPro;
  250. font-weight: 400;
  251. color: #555555;
  252. line-height: 30rpx;
  253. }
  254. }
  255. .yongjin-box {
  256. width: 702rpx;
  257. background: #FFFFFF;
  258. border-radius: 20rpx;
  259. margin: 20rpx auto;
  260. .yongjin-down {
  261. height: 142rpx;
  262. .down-item {
  263. flex: 1;
  264. text:first-child {
  265. font-size: 32rpx;
  266. font-family: JDZhengHT-Regular, JDZhengHT;
  267. font-weight: 400;
  268. color: #333333;
  269. margin-bottom: 16rpx;
  270. }
  271. text:last-child {
  272. font-size: 22rpx;
  273. font-family: PingFangSC-Regular, PingFang SC;
  274. font-weight: 400;
  275. color: #333333;
  276. }
  277. }
  278. }
  279. .yongjin-top {
  280. margin: 0 20rpx;
  281. height: 80rpx;
  282. border-bottom: 2rpx solid #F3F3F3;
  283. .text {
  284. font-size: 26rpx;
  285. font-family: PingFangSC-Medium, PingFang SC;
  286. font-weight: 500;
  287. color: #222222;
  288. }
  289. }
  290. }
  291. .other-list {
  292. margin: 20rpx auto;
  293. width: 702rpx;
  294. background: #FFFFFF;
  295. border-radius: 16rpx;
  296. padding-bottom: 1rpx;
  297. .other-item {
  298. width: 25%;
  299. margin-bottom: 32rpx;
  300. image {
  301. width: 52rpx;
  302. height: 52rpx;
  303. margin-bottom: 20rpx;
  304. }
  305. text {
  306. font-size: 22rpx;
  307. font-family: PingFangSC-Regular, PingFang SC;
  308. font-weight: 400;
  309. color: #333333;
  310. }
  311. }
  312. .other-header {
  313. padding: 24rpx 20rpx;
  314. font-size: 26rpx;
  315. font-family: PingFangSC-Medium, PingFang SC;
  316. font-weight: 500;
  317. color: #222222;
  318. margin-bottom: 16rpx;
  319. }
  320. }
  321. .mine-menu {
  322. margin: 20rpx auto;
  323. width: 702rpx;
  324. height: 156rpx;
  325. background: #FFFFFF;
  326. border-radius: 16rpx;
  327. .xian {
  328. height: 68rpx;
  329. border: 2rpx solid #F3F3F3;
  330. }
  331. .menu-item {
  332. padding: 0 40rpx;
  333. flex: 1;
  334. .text1 {
  335. font-size: 28rpx;
  336. font-family: PingFangSC-Medium, PingFang SC;
  337. font-weight: 500;
  338. color: #222222;
  339. margin-bottom: 12rpx;
  340. }
  341. .text2 {
  342. font-size: 20rpx;
  343. font-family: PingFangSC-Regular, PingFang SC;
  344. font-weight: 400;
  345. color: #777777;
  346. margin-right: 8rpx;
  347. }
  348. .menu-img {
  349. width: 100rpx;
  350. height: 100rpx;
  351. }
  352. }
  353. }
  354. .mine-tabs {
  355. margin: 20rpx auto;
  356. width: 702rpx;
  357. height: 160rpx;
  358. position: relative;
  359. z-index: 1;
  360. .tab-item {
  361. flex: 1;
  362. image {
  363. width: 52rpx;
  364. height: 52rpx;
  365. margin-bottom: 12rpx;
  366. }
  367. text {
  368. font-size: 22rpx;
  369. font-family: PingFangSC-Regular, PingFang SC;
  370. font-weight: 400;
  371. color: #222222;
  372. }
  373. }
  374. .tab-right {
  375. width: 150rpx;
  376. height: 160rpx;
  377. // box-shadow: -16rpx 0rpx 24rpx -14rpx rgba(0,0,0,0.1);
  378. image {
  379. width: 52rpx;
  380. height: 52rpx;
  381. margin-bottom: 12rpx;
  382. }
  383. text {
  384. font-size: 22rpx;
  385. font-family: PingFangSC-Regular, PingFang SC;
  386. font-weight: 400;
  387. color: #222222;
  388. }
  389. }
  390. .tabs-bg {
  391. width: 702rpx;
  392. height: 160rpx;
  393. position: absolute;
  394. z-index: -1;
  395. top: 0;
  396. left: 0;
  397. }
  398. }
  399. .mine-huiyuan {
  400. height: 124rpx;
  401. width: 702rpx;
  402. position: relative;
  403. z-index: 1;
  404. padding: 0 28rpx;
  405. margin: 8rpx auto;
  406. text {
  407. width: 148rpx;
  408. line-height: 56rpx;
  409. background: #FFF4DD;
  410. border-radius: 28rpx;
  411. text-align: center;
  412. font-size: 26rpx;
  413. font-family: PingFangSC-Medium, PingFang SC;
  414. font-weight: 500;
  415. color: #3F3F59;
  416. }
  417. .huiyuan-bg {
  418. position: absolute;
  419. top: 0;
  420. left: 0;
  421. height: 124rpx;
  422. width: 702rpx;
  423. z-index: -1;
  424. }
  425. }
  426. .count-tabs {
  427. padding: 20rpx 0;
  428. .tabs-item {
  429. flex: 1;
  430. text:first-child {
  431. font-size: 44rpx;
  432. font-family: JDZhengHT-Regular, JDZhengHT;
  433. font-weight: 400;
  434. color: #222222;
  435. margin-bottom: 18rpx;
  436. }
  437. text:last-child {
  438. font-size: 24rpx;
  439. font-family: PingFangSC-Regular, PingFang SC;
  440. font-weight: 400;
  441. color: #555555;
  442. }
  443. }
  444. }
  445. .mine-user {
  446. padding: 20rpx 32rpx;
  447. .mine-user-img {
  448. width: 52rpx;
  449. height: 52rpx;
  450. margin-left: 28rpx;
  451. }
  452. .user-head {
  453. width: 104rpx;
  454. height: 104rpx;
  455. border-radius: 100rpx;
  456. }
  457. .user-center {
  458. flex: 1;
  459. margin: 0 0 0 20rpx;
  460. }
  461. }
  462. .mine-navbar {
  463. flex: 1;
  464. padding: 0 32rpx;
  465. text:first-child {
  466. font-size: 36rpx;
  467. font-family: PingFangSC-Medium, PingFang SC;
  468. font-weight: 500;
  469. color: #222222;
  470. }
  471. text:last-child {
  472. width: 76rpx;
  473. height: 12rpx;
  474. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  475. margin-top: -20rpx;
  476. border-radius: 100rpx;
  477. }
  478. }
  479. .mine-bg {
  480. position: absolute;
  481. top: 0;
  482. left: 0;
  483. width: 750rpx;
  484. height: 430rpx;
  485. z-index: -1;
  486. }
  487. }
  488. page {
  489. background-color: #F3F3F3;
  490. }
  491. </style>