my-order.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <template>
  2. <view class="my-order">
  3. <view class="my-order-header">
  4. <view class="header-search u-flex">
  5. <u-icon name="search" size="36" color="#444444"></u-icon>
  6. <input type="text" class="input" placeholder="请输入关键词搜索" v-model="keyword1" confirm-type="search"
  7. @confirm="tosearch(1)">
  8. </view>
  9. <scroll-view scroll-x="true" class="order-tabs">
  10. <view class="u-flex-col tabs-item u-col-center u-row-center" :class="{'tabs-item1':current == index}"
  11. @click="change(index)" v-for="(item,index) in tabslist" :key="index">
  12. <text>{{item.name}}</text>
  13. <text></text>
  14. </view>
  15. </scroll-view>
  16. </view>
  17. <view class="order-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  18. <view class="item-header u-flex u-row-between">
  19. <text>订单编号:{{item.order_no}}</text>
  20. <text v-if="item.stage == 'recommend'">推荐阶段</text>
  21. <text v-if="item.stage == 'interview'">面试阶段</text>
  22. <text v-if="item.stage == 'offer'">offer阶段</text>
  23. <text v-if="item.stage == 'entry'">入职阶段</text>
  24. <text v-if="item.stage == 'over_protected'">过保阶段</text>
  25. <text v-if="item.stage == 'failed'">已淘汰</text>
  26. </view>
  27. <view class="jieshao-user jieshao-user1 u-flex u-row-between">
  28. <view class="left u-flex-col">
  29. <text class="user-name">{{item.resume.name}}</text>
  30. <view class="user-tips1">
  31. {{item.resume.province}}·{{item.resume.city}}|{{item.resume.experience}}年|{{item.resume.education_name}}
  32. | {{item.resume.salary}}K/{{item.resume.salary_type == 'year' ? '年' : '月'}}
  33. </view>
  34. </view>
  35. </view>
  36. <view class="u-flex item-other" v-if="item.resume.job_experience[0]">
  37. <image src="../static/images/dizhi.png" mode=""></image>
  38. <text>{{item.resume.job_experience[0].company_name}}·{{item.resume.job_experience[0].job_name}}</text>
  39. </view>
  40. <view class="jieshao-user jieshao-user2 u-flex u-row-between" style="margin-top: 30rpx;">
  41. <view class="left u-flex-col">
  42. <text class="user-name">{{item.job.job_name}}</text>
  43. <view class="user-tips1">
  44. {{item.job.work_province}}·{{item.job.work_city}}|{{item.job.experience_name}}|{{item.job.education_name}}
  45. | {{item.job.salary_min}}-{{item.job.salary_max}}K
  46. </view>
  47. </view>
  48. </view>
  49. <view class="u-flex item-other">
  50. <image src="static/address.png" mode=""></image>
  51. <text>{{item.company.name}}</text>
  52. </view>
  53. <view class="u-flex item-other">
  54. <image src="static/dingwei.png" mode=""></image>
  55. <text>{{item.company.city}}</text>
  56. </view>
  57. </view>
  58. <view style="height: 70vh;justify-content: center;" class="u-flex" v-if="list.length == 0">
  59. <u-empty text="暂无数据" mode="list"></u-empty>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import {orderlist} from "@/units/inquire.js"
  65. export default {
  66. data() {
  67. return {
  68. current: 0,
  69. tabslist: [{
  70. name: '投递阶段',
  71. id: ''
  72. }, {
  73. name: '面试阶段',
  74. id: 'interview'
  75. }, {
  76. name: '入职阶段',
  77. id: 'entry'
  78. }, {
  79. name: '过保阶段',
  80. id: 'over_protected'
  81. }, {
  82. name: '不合适',
  83. id: 'over_protected'
  84. }],
  85. page: 1,
  86. list: [],
  87. total: 0,
  88. keyword: '',
  89. keyword1: ''
  90. }
  91. },
  92. onLoad(option) {
  93. this.current = option.current || 0
  94. },
  95. onShow() {
  96. this.page = 1
  97. this.list = []
  98. this.getlist()
  99. },
  100. onReachBottom() {
  101. if (this.total != this.list.length) {
  102. this.page++
  103. this.getlist()
  104. }
  105. },
  106. methods: {
  107. tosearch(type) {
  108. if (type == 1) {
  109. this.keyword = this.keyword1
  110. }
  111. this.page = 1
  112. this.list = []
  113. this.getlist()
  114. },
  115. getlist() {
  116. orderlist({
  117. // stage: this.tabslist[this.current].id,
  118. // page: this.page,
  119. // name: this.keyword
  120. }).then(res => {
  121. this.list = this.list.concat(res.data.data)
  122. this.total = res.data.total
  123. })
  124. },
  125. change(index) {
  126. this.current = index
  127. this.tosearch()
  128. },
  129. toinfo(item) {
  130. uni.navigateTo({
  131. url: "/pagesD/order-info?id=" + item.id
  132. })
  133. }
  134. }
  135. }
  136. </script>
  137. <style lang="scss">
  138. .my-order {
  139. .order-item {
  140. width: 702rpx;
  141. background: #FFFFFF;
  142. border-radius: 20rpx;
  143. margin: 20rpx auto;
  144. padding: 0 20rpx 8rpx 20rpx;
  145. .item-header {
  146. height: 84rpx;
  147. border-bottom: 2rpx solid #F3F3F3;
  148. margin-bottom: 22rpx;
  149. text:first-child {
  150. font-size: 22rpx;
  151. font-family: SFPro-Regular, SFPro;
  152. font-weight: 400;
  153. color: #555555;
  154. }
  155. text:nth-child(2) {
  156. line-height: 40rpx;
  157. background: #FEF7E5;
  158. border-radius: 6rpx;
  159. padding: 0 12rpx;
  160. font-size: 20rpx;
  161. font-family: PingFangSC-Regular, PingFang SC;
  162. font-weight: 400;
  163. color: #F7B500;
  164. }
  165. }
  166. .item-other {
  167. margin-bottom: 16rpx;
  168. padding-left: 32rpx;
  169. image {
  170. width: 28rpx;
  171. height: 28rpx;
  172. margin-right: 12rpx;
  173. }
  174. text {
  175. font-size: 28rpx;
  176. font-family: PingFangSC-Regular, PingFang SC;
  177. font-weight: 400;
  178. color: #222222;
  179. }
  180. }
  181. .jieshao-user {
  182. padding-left: 32rpx;
  183. position: relative;
  184. margin-bottom: 20rpx;
  185. .left {
  186. .user-name {
  187. font-size: 32rpx;
  188. font-family: PingFangSC-Medium, PingFang SC;
  189. font-weight: 500;
  190. color: #222222;
  191. margin-bottom: 16rpx;
  192. }
  193. .user-tips1 {
  194. font-size: 26rpx;
  195. font-family: PingFangSC-Regular, PingFang SC;
  196. font-weight: 400;
  197. color: #666666;
  198. }
  199. }
  200. .right {
  201. width: 96rpx;
  202. height: 96rpx;
  203. position: relative;
  204. .img1 {
  205. width: 96rpx;
  206. height: 96rpx;
  207. border-radius: 100rpx;
  208. }
  209. .sex {
  210. position: absolute;
  211. bottom: 0;
  212. right: 4rpx;
  213. width: 24rpx;
  214. height: 24rpx;
  215. }
  216. }
  217. }
  218. .jieshao-user1::after {
  219. position: absolute;
  220. content: " ";
  221. width: 12rpx;
  222. height: 12rpx;
  223. background: #131415;
  224. border-radius: 100rpx;
  225. top: 16rpx;
  226. left: 0;
  227. }
  228. .jieshao-user2::after {
  229. position: absolute;
  230. content: " ";
  231. width: 12rpx;
  232. height: 12rpx;
  233. background: #0C66C2;
  234. border-radius: 100rpx;
  235. top: 16rpx;
  236. left: 0;
  237. }
  238. }
  239. .my-order-header {
  240. padding: 20rpx 24rpx 0 24rpx;
  241. position: sticky;
  242. top: 0;
  243. left: 0;
  244. z-index: 99;
  245. background-color: #fff;
  246. .order-tabs {
  247. height: 96rpx;
  248. width: 100%;
  249. white-space: nowrap;
  250. .tabs-item {
  251. display: inline-flex;
  252. height: 96rpx;
  253. margin: 0 18rpx;
  254. text:first-child {
  255. font-size: 26rpx;
  256. font-family: PingFangSC-Regular, PingFang SC;
  257. font-weight: 400;
  258. color: #444444;
  259. }
  260. text:last-child {
  261. width: 100%;
  262. height: 8rpx;
  263. border-radius: 4rpx;
  264. margin-top: -12rpx;
  265. position: relative;
  266. z-index: -1;
  267. }
  268. }
  269. .tabs-item1 {
  270. text:first-child {
  271. font-size: 26rpx;
  272. font-family: PingFangSC-Medium, PingFang SC;
  273. font-weight: 500;
  274. color: #141414;
  275. }
  276. text:last-child {
  277. background: linear-gradient(270deg, #0C66C2 0%, #FFFFFF 100%);
  278. }
  279. }
  280. }
  281. .header-search {
  282. height: 68rpx;
  283. background: #F3F3F3;
  284. border-radius: 38rpx;
  285. padding: 0 36rpx;
  286. .input {
  287. flex: 1;
  288. font-size: 28rpx;
  289. margin-left: 24rpx;
  290. }
  291. }
  292. }
  293. }
  294. page {
  295. background-color: #F3F3F3;
  296. }
  297. </style>