general.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="index-page">
  3. <view class="index-navbar">
  4. <view style="position: relative;height: 392rpx;">
  5. <image class="index-bg" src="../static/images/index-header.png" mode=""></image>
  6. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true"
  7. @leftClick="return1"></u-navbar>
  8. <view class="header">
  9. <image style="width: 104rpx;height: 104rpx;" :src="detail.school.logo" mode=""></image>
  10. <view class="font">
  11. <text class="title">{{detail.school.name}}{{detail.title}}</text>
  12. <text
  13. class="active">活动时间:{{(detail.start_time).replaceAll('-','.')}}-{{(detail.end_time).replaceAll("-",".").slice(-5)}}</text>
  14. </view>
  15. </view>
  16. <view class="u-flex" style="box-sizing: border-box; padding: 18rpx 24rpx;height: 70rpx;">
  17. <view class="u-flex">
  18. <text class="font1" style="margin-right: 14rpx;">工作城市</text>
  19. <u-icon name="arrow-down-fill" size="8"></u-icon>
  20. </view>
  21. <view class="u-flex" style="margin-left: 54rpx;">
  22. <text class="font1" style="margin-right: 14rpx;">职位类型</text>
  23. <u-icon name="arrow-down-fill" size="8"></u-icon>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="contant">
  28. <view class="list" @click="togongsi(item.id)" v-for="(item,index) in company_list" :key="item.id">
  29. <view class="u-flex u-row-between">
  30. <view class="title">
  31. <text class="title">{{item.company.name}}</text>
  32. <text class="jianjie">{{item.company.categoryindustry.name}} {{item.company.stage.name}}
  33. {{item.company.scale.name}}</text>
  34. </view>
  35. <image style="width: 93rpx;height: 92rpx;" :src="item.company.logo" mode=""></image>
  36. </view>
  37. <view class="bottom">
  38. <view class="u-flex" style="margin-top: 18rpx;">
  39. <image style="width: 28rpx;height: 28rpx;" src="../static/images/address.png" mode="">
  40. </image>
  41. <text class="font" v-for="(city,cityindex) in item.city.slice(0,2)"
  42. :key="city.apply.id">{{city.city}}</text>
  43. <text class="font" v-if="item.city.length == 1">{{item.city.length}}个城市</text>
  44. <text class="font" v-else>等{{item.city.length}}个城市</text>
  45. </view>
  46. <view class="u-flex" style="margin-top: 32rpx;">
  47. <image style="width: 28rpx;height: 28rpx;" src="../static/images/woek.png" mode=""></image>
  48. <text class="font" v-for="(job,index) in item.activityjobinfo.slice(0,2)"
  49. :key="job.apply.id">{{job.job_name}}</text>
  50. <text class="font"
  51. v-if="item.activityjobinfo.length == 1">{{item.activityjobinfo.length}}个岗位</text>
  52. <text class="font" v-else>等{{item.activityjobinfo.length}}个岗位</text>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <view style="height: 70vh;display: flex;justify-content: center;align-items: center;"
  58. v-if="company_list.length == 0">
  59. <u-empty text="暂无数据" mode="list"></u-empty>
  60. </view>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. import {
  66. get_detail,
  67. get_company_list
  68. } from "@/units/inquire.js"
  69. export default {
  70. data() {
  71. return {
  72. id: '',
  73. detail: {
  74. start_time: "",
  75. end_time: ""
  76. },
  77. job_id: "",
  78. city_id: '',
  79. company_list: [],
  80. }
  81. },
  82. onLoad(option) {
  83. this.id = option.id
  84. this.getdetail()
  85. this.getcompanylist()
  86. },
  87. onReachBottom() {
  88. },
  89. methods: {
  90. getcompanylist() {
  91. get_company_list({
  92. id: this.id,
  93. category_job_id: this.job_id,
  94. city_id: this.city_id
  95. }).then(res => {
  96. this.company_list = res.data
  97. })
  98. },
  99. return1() {
  100. uni.navigateBack()
  101. },
  102. togongsi(id) {
  103. uni.navigateTo({
  104. url: "/pagesB/general-info?id=" + id
  105. })
  106. },
  107. getdetail() {
  108. get_detail({
  109. id: this.id
  110. }).then(res => {
  111. this.detail = res.data
  112. })
  113. }
  114. }
  115. }
  116. </script>
  117. <style lang="scss" scoped>
  118. page {}
  119. .index-page {
  120. background-color: #F3F3F3;
  121. min-height: 100vh;
  122. .contant {
  123. background: #F3F3F3;
  124. height: 100%;
  125. padding: 0 24rpx;
  126. .title {
  127. .title {
  128. font-size: 34rpx;
  129. font-family: SFPro-Medium, SFPro;
  130. font-weight: 500;
  131. color: #222222;
  132. display: block;
  133. }
  134. .jianjie {
  135. font-size: 24rpx;
  136. font-family: SFPro-Regular, SFPro;
  137. font-weight: 400;
  138. color: #555555;
  139. display: block;
  140. margin-top: 10rpx;
  141. }
  142. }
  143. .list {
  144. background: #FFFFFF;
  145. border-radius: 16rpx;
  146. padding: 28rpx;
  147. margin-top: 20rpx;
  148. }
  149. .bottom {
  150. margin-top: 32rpx;
  151. border-top: 2rpx solid #F3F3F3;
  152. .font {
  153. margin-left: 14rpx;
  154. font-size: 24rpx;
  155. font-family: SFPro-Regular, SFPro;
  156. font-weight: 400;
  157. color: #888888;
  158. }
  159. }
  160. }
  161. .font1 {
  162. font-size: 24rpx;
  163. font-family: PingFangSC-Regular, PingFang SC;
  164. font-weight: 400;
  165. color: #1A1C24;
  166. }
  167. .header {
  168. height: 144rpx;
  169. border-bottom: 2rpx solid #F3F3F3;
  170. padding: 20rpx 24rpx;
  171. display: flex;
  172. align-items: center;
  173. box-sizing: border-box;
  174. .font {
  175. margin-left: 16rpx;
  176. .title {
  177. width: 534rpx;
  178. height: 44rpx;
  179. font-size: 32rpx;
  180. font-family: PingFangSC-Medium, PingFang SC;
  181. font-weight: 500;
  182. color: #1A1C24;
  183. line-height: 44rpx;
  184. display: block;
  185. }
  186. .active {
  187. height: 34rpx;
  188. font-size: 24rpx;
  189. font-family: SFPro-Regular, SFPro;
  190. font-weight: 400;
  191. color: #444444;
  192. line-height: 28rpx;
  193. display: block;
  194. margin-top: 18rpx;
  195. }
  196. }
  197. }
  198. .index-navbar {
  199. position: sticky;
  200. top: 0;
  201. left: 0;
  202. width: 750rpx;
  203. z-index: 100;
  204. .header-down {
  205. height: 92rpx;
  206. padding: 20rpx 24rpx;
  207. box-sizing: border-box;
  208. .font {
  209. font-size: 40rpx;
  210. font-family: PingFangSC-Medium, PingFang SC;
  211. font-weight: 500;
  212. color: #222222;
  213. }
  214. .right-item {
  215. padding: 0 16rpx;
  216. height: 52rpx;
  217. background: #F3F3F3;
  218. border-radius: 4rpx;
  219. margin-left: 20rpx;
  220. .text {
  221. margin-right: 4rpx;
  222. font-size: 26rpx;
  223. font-family: PingFangSC-Regular, PingFang SC;
  224. font-weight: 400;
  225. color: #666666;
  226. }
  227. }
  228. .down-left {
  229. .text {
  230. margin-right: 4rpx;
  231. font-size: 26rpx;
  232. font-family: PingFangSC-Medium, PingFang SC;
  233. font-weight: 500;
  234. color: #222222;
  235. }
  236. }
  237. }
  238. .index-bg {
  239. position: absolute;
  240. top: 0;
  241. left: 0;
  242. z-index: -1;
  243. width: 750rpx;
  244. height: 392rpx;
  245. }
  246. }
  247. .index-header {
  248. flex: 1;
  249. padding: 0 32rpx;
  250. height: 50rpx;
  251. .index-search {
  252. width: 200rpx;
  253. height: 64rpx;
  254. background: #FFFFFF;
  255. border-radius: 20rpx;
  256. padding: 0 28rpx;
  257. .text1 {
  258. font-size: 24rpx;
  259. font-family: PingFangSC-Regular, PingFang SC;
  260. font-weight: 400;
  261. color: #999999;
  262. margin-left: 16rpx;
  263. }
  264. }
  265. .index-tabs {
  266. text:first-child {
  267. font-size: 36rpx;
  268. font-family: PingFangSC-Medium, PingFang SC;
  269. font-weight: 500;
  270. color: #222222;
  271. }
  272. text:last-child {
  273. width: 76rpx;
  274. height: 12rpx;
  275. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  276. margin-top: -20rpx;
  277. border-radius: 100rpx;
  278. }
  279. }
  280. }
  281. }
  282. ::v-deep .u-navbar__content__left {
  283. padding: 0 !important;
  284. }
  285. ::v-deep .u-icon__icon {
  286. margin-left: 11rpx !important;
  287. }
  288. </style>