mine.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  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" v-if="token">
  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 @click="touserinfo1" name="edit-pen-fill" color="#2979ff" size="22"></u-icon>
  18. </view>
  19. <view class="introduce">
  20. <text>{{resume_Detail.birthday_text||0}}岁</text>
  21. <text style="margin: 0 11rpx;">|</text>
  22. <text>{{resume_Detail.education_name ||"无"}}</text>
  23. <text style="margin: 0 11rpx;">|</text>
  24. <text>{{resume_Detail.experience ||0 }}年</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="mine-user u-flex " v-else>
  32. <image src="@/static/images/moren.jpg" class="user-head" mode=""></image>
  33. <text style="margin-left: 20rpx;" @click="tologin">点我去登录</text>
  34. <!-- <image class="mine-user-img" src="../../static/images/mine-qiehuan.png" mode=""></image>
  35. <image class="mine-user-img" src="../../static/images/qiehuan.png" mode="">
  36. </image> -->
  37. </view>
  38. <view class="count-tabs u-flex u-row-between">
  39. <view class="tabs-item u-flex-col u-col-center" @click="toshoucang">
  40. <text>{{userinfo.group_info.collect_count || 0}}</text>
  41. <text>我的收藏</text>
  42. </view>
  43. <view class="tabs-item u-flex-col u-col-center" @click="totoudi(0)">
  44. <text>{{userinfo.group_info.order_count || 0}}</text>
  45. <text>我的投递</text>
  46. </view>
  47. <view class="tabs-item u-flex-col u-col-center" @click="totoudi(1)">
  48. <text>{{userinfo.group_info.interview_count || 0}}</text>
  49. <text>我的面试</text>
  50. </view>
  51. <view class="tabs-item u-flex-col u-col-center" @click="tolook">
  52. <text>{{userinfo.group_info.view_count || 0}}</text>
  53. <text>谁看过我</text>
  54. </view>
  55. </view>
  56. <view class="other-list">
  57. <view class="other-header">
  58. 常用功能
  59. </view>
  60. <view class="u-flex u-flex-wrap">
  61. <view class="other-item u-flex-col u-col-center" @click="tojianli">
  62. <image src="../../static/images/jianli2.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  63. <text>在线简历</text>
  64. </view>
  65. <view class="other-item u-flex-col u-col-center" @click="tofujian">
  66. <image src="../../static/images/jianli.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  67. <text>简历附件</text>
  68. </view>
  69. <view class="other-item u-flex-col u-col-center" @click="toapply">
  70. <image src="../../static/images/qiuzhi.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  71. <text>求职意向</text>
  72. </view>
  73. <view class="other-item u-flex-col u-col-center" @click="yinsi">
  74. <image src="../../static/images/yinsi.png" style="width: 72rpx;height: 72rpx;" mode=""></image>
  75. <text>求职隐私</text>
  76. </view>
  77. </view>
  78. </view>
  79. <view class="yongjin-box">
  80. <view class="yongjin-top u-flex u-row-between" @click="toyongjin">
  81. <text class="text">我的佣金</text>
  82. <u-icon name="arrow-right" size="12"></u-icon>
  83. </view>
  84. <view class="yongjin-down u-flex u-row-between">
  85. <view class="down-item u-flex-col u-col-center u-row-center">
  86. <text>{{Number(date.sum).toFixed(2) ||0.00}}</text>
  87. <text>当前余额</text>
  88. </view>
  89. <view class="down-item u-flex-col u-col-center u-row-center" @click="tomingxi('order')">
  90. <text>{{Number(date.order).toFixed(2) || 0.00 }}</text>
  91. <text>订单佣金</text>
  92. </view>
  93. <view class="down-item u-flex-col u-col-center u-row-center" @click="tomingxi('invite')">
  94. <text>{{Number(date.invite).toFixed(2) || 0.00 }}</text>
  95. <text>邀请佣金</text>
  96. </view>
  97. <view class="down-item u-flex-col u-col-center u-row-center" @click="tobank">
  98. <text>{{userinfo.group_info.bank_count || 0.00}}</text>
  99. <text>银行卡</text>
  100. </view>
  101. </view>
  102. </view>
  103. <view class="other-list">
  104. <view class="other-header">
  105. 其他功能
  106. </view>
  107. <view class="u-flex u-flex-wrap">
  108. <view class="other-item u-flex-col u-col-center" style="position: relative;" @click="tofapiao">
  109. <image src="../../static/images/mine-other3.png" mode=""></image>
  110. <image style="position: absolute;width: 72rpx;height: 28rpx;left: 120rpx;"
  111. src="../../static/images/yaoqing.png" mode=""></image>
  112. <text>邀请好友</text>
  113. </view>
  114. <view class="other-item u-flex-col u-col-center" @click="toshezhi">
  115. <image src="../../static/images/shezhi.png" mode=""></image>
  116. <text>账号设置</text>
  117. </view>
  118. <view class="other-item u-flex-col u-col-center" style="position: relative;" @click="torenzheng">
  119. <image src="../../static/images/renzheng.png" mode=""></image>
  120. <image v-if="is_auth1==0" style="position: absolute;width: 72rpx;height: 28rpx;left:120rpx;"
  121. src="../../static/images/weirenzheng.png" mode=""></image>
  122. <text>学生认证</text>
  123. </view>
  124. <view class="other-item u-flex-col u-col-center" @click="touserinfo">
  125. <image src="../../static/images/mine-other4.png" mode=""></image>
  126. <text>论坛主页</text>
  127. </view>
  128. </view>
  129. </view>
  130. </view>
  131. </template>
  132. <script>
  133. import {
  134. index,
  135. collect_get_list,
  136. resumeDetail,
  137. is_auth,
  138. commission_data,
  139. cget_total_number
  140. } from "@/units/inquire.js"
  141. export default {
  142. data() {
  143. return {
  144. page: 1,
  145. id: "",
  146. is_auth1: 0,
  147. resume_Detail: {},
  148. userinfo: {
  149. group_info: {},
  150. statistic_data: {}
  151. },
  152. date: {
  153. sum: 0,
  154. order: 0,
  155. invite: 0,
  156. },
  157. token: ''
  158. }
  159. },
  160. onLoad() {
  161. this.collect_get_list()
  162. this.resumeDetail()
  163. this.is_auth()
  164. this.commission_data()
  165. if (uni.getStorageSync('token')) {
  166. this.token = true
  167. }
  168. this.getnum()
  169. },
  170. onShow() {
  171. this.getuser()
  172. },
  173. methods: {
  174. getnum() {
  175. cget_total_number().then((res) => {
  176. if (res.data.number > 0) {
  177. uni.showTabBarRedDot({
  178. index: 3,
  179. success(res) {
  180. console.log(res);
  181. }
  182. })
  183. }
  184. })
  185. },
  186. tologin() {
  187. uni.reLaunch({
  188. url: '/pages/login/login'
  189. })
  190. },
  191. commission_data() {
  192. commission_data().then(res => {
  193. this.date = res.data
  194. })
  195. },
  196. touserinfo1() {
  197. uni.navigateTo({
  198. url: "/pagesD/personal-infor?typea=" + 1
  199. })
  200. },
  201. resumeDetail() {
  202. resumeDetail().then(res => {
  203. if (res.code == 1) {
  204. this.resume_Detail = res.data
  205. }
  206. })
  207. },
  208. tobank() {
  209. uni.navigateTo({
  210. url: "/pagesD/bank-card"
  211. })
  212. },
  213. is_auth() {
  214. is_auth().then(res => {
  215. this.is_auth1 = res.data.is_auth
  216. console.log("ppppppppppppp", res);
  217. })
  218. },
  219. tomingxi(type) {
  220. uni.navigateTo({
  221. url: "/pagesD/mingxi?source_type=" + type
  222. })
  223. },
  224. tofujian() {
  225. uni.navigateTo({
  226. url: "/pagesD/fujian"
  227. })
  228. },
  229. toyongjin() {
  230. uni.navigateTo({
  231. url: "/pagesD/yongjin"
  232. })
  233. },
  234. yinsi() {
  235. uni.navigateTo({
  236. url: "/pagesD/yinsi"
  237. })
  238. },
  239. //收藏列表
  240. collect_get_list() {
  241. collect_get_list({
  242. page: this.page
  243. }).then(res => {
  244. this.total = res.data.total
  245. })
  246. },
  247. getuser() {
  248. index().then(res => {
  249. this.userinfo = res.data
  250. this.id = res.data.id
  251. })
  252. },
  253. touserinfo() {
  254. uni.navigateTo({
  255. url: '/pagesC/my-luntan?id=' + this.id
  256. })
  257. },
  258. toapply() {
  259. uni.navigateTo({
  260. url: "/pagesD/apply1"
  261. })
  262. },
  263. toshoucang() {
  264. uni.navigateTo({
  265. url: "/pagesD/my-shoucang?id=" + this.id
  266. })
  267. },
  268. tojianli() {
  269. uni.navigateTo({
  270. url: "/pagesD/resume"
  271. })
  272. },
  273. tofapiao() {
  274. uni.navigateTo({
  275. url: "/pagesD/my-fapiao"
  276. })
  277. },
  278. tozixunlist() {
  279. uni.navigateTo({
  280. url: "/pagesD/my-zixun"
  281. })
  282. },
  283. toad() {
  284. uni.navigateTo({
  285. url: "/pagesD/ad-list"
  286. })
  287. },
  288. tozhaopin() {
  289. uni.navigateTo({
  290. url: "/pagesD/xiaoqi"
  291. })
  292. },
  293. tojieshou() {
  294. uni.navigateTo({
  295. url: "/pagesD/list-jieshou"
  296. })
  297. },
  298. tovip() {
  299. uni.navigateTo({
  300. url: "/pagesD/vip"
  301. })
  302. },
  303. todikou() {
  304. uni.navigateTo({
  305. url: "/pagesD/dikou"
  306. })
  307. },
  308. tojubao() {
  309. uni.navigateTo({
  310. url: "/pagesD/jubao-list"
  311. })
  312. },
  313. tozixun() {
  314. uni.navigateTo({
  315. url: "/pagesD/zixun-list"
  316. })
  317. },
  318. tolook() {
  319. uni.navigateTo({
  320. url: '/pagesD/look'
  321. })
  322. },
  323. toshezhi() {
  324. uni.navigateTo({
  325. url: "/pagesD/shezhi"
  326. })
  327. },
  328. totoudi(current) {
  329. uni.navigateTo({
  330. url: "/pagesD/my-order?current=" + current
  331. })
  332. },
  333. torenzheng() {
  334. uni.navigateTo({
  335. url: "/pagesD/renzheng"
  336. })
  337. }
  338. }
  339. }
  340. </script>
  341. <style lang="scss">
  342. .mine-page {
  343. position: relative;
  344. .introduce {
  345. text {
  346. height: 36rpx;
  347. font-size: 26rpx;
  348. font-family: SFPro-Regular, SFPro;
  349. font-weight: 400;
  350. color: #555555;
  351. line-height: 30rpx;
  352. }
  353. }
  354. .yongjin-box {
  355. width: 702rpx;
  356. background: #FFFFFF;
  357. border-radius: 20rpx;
  358. margin: 20rpx auto;
  359. .yongjin-down {
  360. height: 142rpx;
  361. .down-item {
  362. flex: 1;
  363. text:first-child {
  364. font-size: 32rpx;
  365. font-family: JDZhengHT-Regular, JDZhengHT;
  366. font-weight: 400;
  367. color: #333333;
  368. margin-bottom: 16rpx;
  369. }
  370. text:last-child {
  371. font-size: 22rpx;
  372. font-family: PingFangSC-Regular, PingFang SC;
  373. font-weight: 400;
  374. color: #333333;
  375. }
  376. }
  377. }
  378. .yongjin-top {
  379. margin: 0 20rpx;
  380. height: 80rpx;
  381. border-bottom: 2rpx solid #F3F3F3;
  382. .text {
  383. font-size: 26rpx;
  384. font-family: PingFangSC-Medium, PingFang SC;
  385. font-weight: 500;
  386. color: #222222;
  387. }
  388. }
  389. }
  390. .other-list {
  391. margin: 20rpx auto;
  392. width: 702rpx;
  393. background: #FFFFFF;
  394. border-radius: 16rpx;
  395. padding-bottom: 1rpx;
  396. .other-item {
  397. width: 25%;
  398. margin-bottom: 32rpx;
  399. image {
  400. width: 52rpx;
  401. height: 52rpx;
  402. margin-bottom: 20rpx;
  403. }
  404. text {
  405. font-size: 22rpx;
  406. font-family: PingFangSC-Regular, PingFang SC;
  407. font-weight: 400;
  408. color: #333333;
  409. }
  410. }
  411. .other-header {
  412. padding: 24rpx 20rpx;
  413. font-size: 26rpx;
  414. font-family: PingFangSC-Medium, PingFang SC;
  415. font-weight: 500;
  416. color: #222222;
  417. margin-bottom: 16rpx;
  418. }
  419. }
  420. .mine-menu {
  421. margin: 20rpx auto;
  422. width: 702rpx;
  423. height: 156rpx;
  424. background: #FFFFFF;
  425. border-radius: 16rpx;
  426. .xian {
  427. height: 68rpx;
  428. border: 2rpx solid #F3F3F3;
  429. }
  430. .menu-item {
  431. padding: 0 40rpx;
  432. flex: 1;
  433. .text1 {
  434. font-size: 28rpx;
  435. font-family: PingFangSC-Medium, PingFang SC;
  436. font-weight: 500;
  437. color: #222222;
  438. margin-bottom: 12rpx;
  439. }
  440. .text2 {
  441. font-size: 20rpx;
  442. font-family: PingFangSC-Regular, PingFang SC;
  443. font-weight: 400;
  444. color: #777777;
  445. margin-right: 8rpx;
  446. }
  447. .menu-img {
  448. width: 100rpx;
  449. height: 100rpx;
  450. }
  451. }
  452. }
  453. .mine-tabs {
  454. margin: 20rpx auto;
  455. width: 702rpx;
  456. height: 160rpx;
  457. position: relative;
  458. z-index: 1;
  459. .tab-item {
  460. flex: 1;
  461. image {
  462. width: 52rpx;
  463. height: 52rpx;
  464. margin-bottom: 12rpx;
  465. }
  466. text {
  467. font-size: 22rpx;
  468. font-family: PingFangSC-Regular, PingFang SC;
  469. font-weight: 400;
  470. color: #222222;
  471. }
  472. }
  473. .tab-right {
  474. width: 150rpx;
  475. height: 160rpx;
  476. // box-shadow: -16rpx 0rpx 24rpx -14rpx rgba(0,0,0,0.1);
  477. image {
  478. width: 52rpx;
  479. height: 52rpx;
  480. margin-bottom: 12rpx;
  481. }
  482. text {
  483. font-size: 22rpx;
  484. font-family: PingFangSC-Regular, PingFang SC;
  485. font-weight: 400;
  486. color: #222222;
  487. }
  488. }
  489. .tabs-bg {
  490. width: 702rpx;
  491. height: 160rpx;
  492. position: absolute;
  493. z-index: -1;
  494. top: 0;
  495. left: 0;
  496. }
  497. }
  498. .mine-huiyuan {
  499. height: 124rpx;
  500. width: 702rpx;
  501. position: relative;
  502. z-index: 1;
  503. padding: 0 28rpx;
  504. margin: 8rpx auto;
  505. text {
  506. width: 148rpx;
  507. line-height: 56rpx;
  508. background: #FFF4DD;
  509. border-radius: 28rpx;
  510. text-align: center;
  511. font-size: 26rpx;
  512. font-family: PingFangSC-Medium, PingFang SC;
  513. font-weight: 500;
  514. color: #3F3F59;
  515. }
  516. .huiyuan-bg {
  517. position: absolute;
  518. top: 0;
  519. left: 0;
  520. height: 124rpx;
  521. width: 702rpx;
  522. z-index: -1;
  523. }
  524. }
  525. .count-tabs {
  526. padding: 20rpx 0;
  527. .tabs-item {
  528. flex: 1;
  529. text:first-child {
  530. font-size: 44rpx;
  531. font-family: JDZhengHT-Regular, JDZhengHT;
  532. font-weight: 400;
  533. color: #222222;
  534. margin-bottom: 18rpx;
  535. }
  536. text:last-child {
  537. font-size: 24rpx;
  538. font-family: PingFangSC-Regular, PingFang SC;
  539. font-weight: 400;
  540. color: #555555;
  541. }
  542. }
  543. }
  544. .mine-user {
  545. padding: 20rpx 32rpx;
  546. .mine-user-img {
  547. width: 52rpx;
  548. height: 52rpx;
  549. margin-left: 28rpx;
  550. }
  551. .user-head {
  552. width: 104rpx;
  553. height: 104rpx;
  554. border-radius: 100rpx;
  555. }
  556. .user-center {
  557. flex: 1;
  558. margin: 0 0 0 20rpx;
  559. }
  560. }
  561. .mine-navbar {
  562. flex: 1;
  563. padding: 0 32rpx;
  564. text:first-child {
  565. font-size: 36rpx;
  566. font-family: PingFangSC-Medium, PingFang SC;
  567. font-weight: 500;
  568. color: #222222;
  569. }
  570. text:last-child {
  571. width: 76rpx;
  572. height: 12rpx;
  573. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  574. margin-top: -20rpx;
  575. border-radius: 100rpx;
  576. }
  577. }
  578. .mine-bg {
  579. position: absolute;
  580. top: 0;
  581. left: 0;
  582. width: 750rpx;
  583. height: 430rpx;
  584. z-index: -1;
  585. }
  586. }
  587. page {
  588. background-color: #F3F3F3;
  589. }
  590. </style>