mine.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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" @click="toapply">
  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.group_info.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.group_info.commission_order || 0}}</text>
  84. <text>订单佣金</text>
  85. </view>
  86. <view class="down-item u-flex-col u-col-center u-row-center">
  87. <text>{{userinfo.group_info.commission_invite || 0}}</text>
  88. <text>邀请佣金</text>
  89. </view>
  90. <view class="down-item u-flex-col u-col-center u-row-center">
  91. <text>{{userinfo.group_info.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. toapply(){
  165. uni.navigateTo({
  166. url:"/pagesD/apply1"
  167. })
  168. },
  169. toshoucang(){
  170. uni.navigateTo({
  171. url:"/pagesD/my-shoucang?id="+this.id
  172. })
  173. },
  174. tojianli(){
  175. uni.navigateTo({
  176. url:"/pagesD/resume"
  177. })
  178. },
  179. tofapiao() {
  180. uni.navigateTo({
  181. url: "/pagesD/my-fapiao"
  182. })
  183. },
  184. tozixunlist() {
  185. uni.navigateTo({
  186. url: "/pagesD/my-zixun"
  187. })
  188. },
  189. toad() {
  190. uni.navigateTo({
  191. url: "/pagesD/ad-list"
  192. })
  193. },
  194. tozhaopin() {
  195. uni.navigateTo({
  196. url: "/pagesD/xiaoqi"
  197. })
  198. },
  199. tojieshou() {
  200. uni.navigateTo({
  201. url: "/pagesD/list-jieshou"
  202. })
  203. },
  204. tovip() {
  205. uni.navigateTo({
  206. url: "/pagesD/vip"
  207. })
  208. },
  209. todikou() {
  210. uni.navigateTo({
  211. url: "/pagesD/dikou"
  212. })
  213. },
  214. tojubao() {
  215. uni.navigateTo({
  216. url: "/pagesD/jubao-list"
  217. })
  218. },
  219. tozixun() {
  220. uni.navigateTo({
  221. url: "/pagesD/zixun-list"
  222. })
  223. },
  224. tolook(){
  225. uni.navigateTo({
  226. url:'/pagesD/look'
  227. })
  228. },
  229. toshezhi(){
  230. uni.navigateTo({
  231. url:"/pagesD/shezhi"
  232. })
  233. },
  234. totoudi(){
  235. uni.navigateTo({
  236. url:"/pagesD/my-order"
  237. })
  238. },
  239. torenzheng(){
  240. uni.navigateTo({
  241. url:"/pagesD/renzheng"
  242. })
  243. }
  244. }
  245. }
  246. </script>
  247. <style lang="scss">
  248. .mine-page {
  249. position: relative;
  250. .introduce {
  251. text {
  252. height: 36rpx;
  253. font-size: 26rpx;
  254. font-family: SFPro-Regular, SFPro;
  255. font-weight: 400;
  256. color: #555555;
  257. line-height: 30rpx;
  258. }
  259. }
  260. .yongjin-box {
  261. width: 702rpx;
  262. background: #FFFFFF;
  263. border-radius: 20rpx;
  264. margin: 20rpx auto;
  265. .yongjin-down {
  266. height: 142rpx;
  267. .down-item {
  268. flex: 1;
  269. text:first-child {
  270. font-size: 32rpx;
  271. font-family: JDZhengHT-Regular, JDZhengHT;
  272. font-weight: 400;
  273. color: #333333;
  274. margin-bottom: 16rpx;
  275. }
  276. text:last-child {
  277. font-size: 22rpx;
  278. font-family: PingFangSC-Regular, PingFang SC;
  279. font-weight: 400;
  280. color: #333333;
  281. }
  282. }
  283. }
  284. .yongjin-top {
  285. margin: 0 20rpx;
  286. height: 80rpx;
  287. border-bottom: 2rpx solid #F3F3F3;
  288. .text {
  289. font-size: 26rpx;
  290. font-family: PingFangSC-Medium, PingFang SC;
  291. font-weight: 500;
  292. color: #222222;
  293. }
  294. }
  295. }
  296. .other-list {
  297. margin: 20rpx auto;
  298. width: 702rpx;
  299. background: #FFFFFF;
  300. border-radius: 16rpx;
  301. padding-bottom: 1rpx;
  302. .other-item {
  303. width: 25%;
  304. margin-bottom: 32rpx;
  305. image {
  306. width: 52rpx;
  307. height: 52rpx;
  308. margin-bottom: 20rpx;
  309. }
  310. text {
  311. font-size: 22rpx;
  312. font-family: PingFangSC-Regular, PingFang SC;
  313. font-weight: 400;
  314. color: #333333;
  315. }
  316. }
  317. .other-header {
  318. padding: 24rpx 20rpx;
  319. font-size: 26rpx;
  320. font-family: PingFangSC-Medium, PingFang SC;
  321. font-weight: 500;
  322. color: #222222;
  323. margin-bottom: 16rpx;
  324. }
  325. }
  326. .mine-menu {
  327. margin: 20rpx auto;
  328. width: 702rpx;
  329. height: 156rpx;
  330. background: #FFFFFF;
  331. border-radius: 16rpx;
  332. .xian {
  333. height: 68rpx;
  334. border: 2rpx solid #F3F3F3;
  335. }
  336. .menu-item {
  337. padding: 0 40rpx;
  338. flex: 1;
  339. .text1 {
  340. font-size: 28rpx;
  341. font-family: PingFangSC-Medium, PingFang SC;
  342. font-weight: 500;
  343. color: #222222;
  344. margin-bottom: 12rpx;
  345. }
  346. .text2 {
  347. font-size: 20rpx;
  348. font-family: PingFangSC-Regular, PingFang SC;
  349. font-weight: 400;
  350. color: #777777;
  351. margin-right: 8rpx;
  352. }
  353. .menu-img {
  354. width: 100rpx;
  355. height: 100rpx;
  356. }
  357. }
  358. }
  359. .mine-tabs {
  360. margin: 20rpx auto;
  361. width: 702rpx;
  362. height: 160rpx;
  363. position: relative;
  364. z-index: 1;
  365. .tab-item {
  366. flex: 1;
  367. image {
  368. width: 52rpx;
  369. height: 52rpx;
  370. margin-bottom: 12rpx;
  371. }
  372. text {
  373. font-size: 22rpx;
  374. font-family: PingFangSC-Regular, PingFang SC;
  375. font-weight: 400;
  376. color: #222222;
  377. }
  378. }
  379. .tab-right {
  380. width: 150rpx;
  381. height: 160rpx;
  382. // box-shadow: -16rpx 0rpx 24rpx -14rpx rgba(0,0,0,0.1);
  383. image {
  384. width: 52rpx;
  385. height: 52rpx;
  386. margin-bottom: 12rpx;
  387. }
  388. text {
  389. font-size: 22rpx;
  390. font-family: PingFangSC-Regular, PingFang SC;
  391. font-weight: 400;
  392. color: #222222;
  393. }
  394. }
  395. .tabs-bg {
  396. width: 702rpx;
  397. height: 160rpx;
  398. position: absolute;
  399. z-index: -1;
  400. top: 0;
  401. left: 0;
  402. }
  403. }
  404. .mine-huiyuan {
  405. height: 124rpx;
  406. width: 702rpx;
  407. position: relative;
  408. z-index: 1;
  409. padding: 0 28rpx;
  410. margin: 8rpx auto;
  411. text {
  412. width: 148rpx;
  413. line-height: 56rpx;
  414. background: #FFF4DD;
  415. border-radius: 28rpx;
  416. text-align: center;
  417. font-size: 26rpx;
  418. font-family: PingFangSC-Medium, PingFang SC;
  419. font-weight: 500;
  420. color: #3F3F59;
  421. }
  422. .huiyuan-bg {
  423. position: absolute;
  424. top: 0;
  425. left: 0;
  426. height: 124rpx;
  427. width: 702rpx;
  428. z-index: -1;
  429. }
  430. }
  431. .count-tabs {
  432. padding: 20rpx 0;
  433. .tabs-item {
  434. flex: 1;
  435. text:first-child {
  436. font-size: 44rpx;
  437. font-family: JDZhengHT-Regular, JDZhengHT;
  438. font-weight: 400;
  439. color: #222222;
  440. margin-bottom: 18rpx;
  441. }
  442. text:last-child {
  443. font-size: 24rpx;
  444. font-family: PingFangSC-Regular, PingFang SC;
  445. font-weight: 400;
  446. color: #555555;
  447. }
  448. }
  449. }
  450. .mine-user {
  451. padding: 20rpx 32rpx;
  452. .mine-user-img {
  453. width: 52rpx;
  454. height: 52rpx;
  455. margin-left: 28rpx;
  456. }
  457. .user-head {
  458. width: 104rpx;
  459. height: 104rpx;
  460. border-radius: 100rpx;
  461. }
  462. .user-center {
  463. flex: 1;
  464. margin: 0 0 0 20rpx;
  465. }
  466. }
  467. .mine-navbar {
  468. flex: 1;
  469. padding: 0 32rpx;
  470. text:first-child {
  471. font-size: 36rpx;
  472. font-family: PingFangSC-Medium, PingFang SC;
  473. font-weight: 500;
  474. color: #222222;
  475. }
  476. text:last-child {
  477. width: 76rpx;
  478. height: 12rpx;
  479. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  480. margin-top: -20rpx;
  481. border-radius: 100rpx;
  482. }
  483. }
  484. .mine-bg {
  485. position: absolute;
  486. top: 0;
  487. left: 0;
  488. width: 750rpx;
  489. height: 430rpx;
  490. z-index: -1;
  491. }
  492. }
  493. page {
  494. background-color: #F3F3F3;
  495. }
  496. </style>