apply1.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. <template>
  2. <view class="personal">
  3. <view class="">
  4. <text class="title">求职意向</text>
  5. <view class="titleb">不同的求职意向,会为您推荐不同的职位</view>
  6. </view>
  7. <view class="u-flex content u-row-between" v-for="(item,index) in job_intention" :key="item.id"
  8. @click="toapply1(2,item.id)">
  9. <view class="biaoti">
  10. <view class="">
  11. <view v-if="item.is_pay" class="fei">付费</view>
  12. <text>{{item.province.slice(0,-1)}}</text>
  13. <text style="margin: 0 20rpx;">|</text>
  14. <text>{{item.category_job_name}}</text>
  15. </view>
  16. <view class="money">
  17. <text>{{item.salary||''}}K·</text>
  18. <text>{{item.category_industry_name|| ""}}</text>
  19. </view>
  20. </view>
  21. <u-icon name="arrow-right" color="#4C4C4C" size="24"></u-icon>
  22. </view>
  23. <view class="add" @click="toapply1(1)">
  24. +添加求职意向
  25. </view>
  26. <view class="bottom u-flex u-row-between">
  27. <text>求职状态</text>
  28. <view class="u-flex">
  29. <text @click="show = true">{{job_status_name||"请选择"}}</text>
  30. <u-icon name="arrow-right" color="#4C4C4C" size="16"></u-icon>
  31. </view>
  32. </view>
  33. <u-picker @cancel="show = false" :show="show" :columns="columns" keyName="name" @confirm="enter"></u-picker>
  34. </view>
  35. </template>
  36. <script setup>
  37. import {
  38. getAllArea,
  39. get_job_status,
  40. resumeDetail,
  41. update
  42. } from "@/units/inquire.js"
  43. export default {
  44. data() {
  45. return {
  46. show: false,
  47. value: false,
  48. province: [], //省数据
  49. city: [], //市数据
  50. area: [], //区数据
  51. provinceid: "", //省数据
  52. cityid: "", //市数据
  53. areaid: "", //区数据
  54. indexs: [], //默认地区下标
  55. //选择器状态
  56. birthdayShow: false, //出生年月
  57. workShow: false, //工作时间
  58. cityShow: false, //户口所在地
  59. jobShow: false, //工作显示
  60. cityList: [], //数据地址
  61. cityids: [], //数据地址
  62. joblist: [],
  63. job_status_id: "",
  64. job_status_name: "",
  65. columns: [
  66. []
  67. ],
  68. job_intention: [],
  69. source_id: ''
  70. }
  71. },
  72. onLoad() {
  73. this.resumeDetail()
  74. this.AllArea()
  75. this.get_job_status()
  76. },
  77. methods: {
  78. toapply1(type, id) {
  79. uni.navigateTo({
  80. url: "/pagesD/apply?type=" + type + "&id=" + id,
  81. events: {
  82. refresh: (res) => {
  83. this.resumeDetail()
  84. }
  85. }
  86. })
  87. },
  88. resumeDetail() {
  89. resumeDetail().then(res => {
  90. this.source_id = res.data.id
  91. this.job_intention = res.data.job_intention
  92. this.job_status_name = res.data.job_status_name
  93. })
  94. },
  95. enter(e) {
  96. update({
  97. source_type: "resume",
  98. source_id: this.source_id,
  99. job_status_id: e.value[0].id
  100. }).then(res => {
  101. this.resumeDetail()
  102. })
  103. this.job_status_name = e.value[0].name
  104. this.show = false
  105. },
  106. get_job_status() {
  107. get_job_status().then(res => {
  108. this.columns[0] = res.data
  109. })
  110. },
  111. //所有地区
  112. AllArea() {
  113. getAllArea().then((res) => {
  114. this.province = res.data.map(t => {
  115. return {
  116. name: t.name,
  117. id: t.id
  118. }
  119. })
  120. console.log("aaa", this.province);
  121. this.city = res.data.map(t => t.children.map(v => {
  122. return {
  123. name: v.name,
  124. id: v.id
  125. }
  126. }))
  127. this.area = res.data.map(t => t.children.map(v => v.children.map(i => {
  128. return {
  129. name: i.name,
  130. id: i.id
  131. }
  132. })))
  133. //默认显示数据
  134. // this.cityList = [
  135. // this.province.map(res => res.name),
  136. // this.city[0].map(res => res.name),
  137. // this.area[0][0].map(res => res.name)
  138. // ]
  139. let a = []
  140. let b = []
  141. let c = []
  142. this.province.map(res => {
  143. a.push({
  144. name: res.name,
  145. id: res.id,
  146. })
  147. })
  148. this.city[0].map(res => {
  149. b.push({
  150. name: res.name,
  151. id: res.id,
  152. })
  153. })
  154. this.area[0][0].map(res => {
  155. c.push({
  156. name: res.name,
  157. id: res.id,
  158. })
  159. })
  160. this.cityList = [a, b, c]
  161. // if (this.province && this.city && this.area) {
  162. // //省索引
  163. // let pIdx = this.province.findIndex(v => v.name == this.province);
  164. // //根据省索引设置默认市数据
  165. // this.columns[1] = this.city[pIdx].map(res => res.name)
  166. // //市索引
  167. // let cIdx = this.city[pIdx].findIndex(v => v.name == this.city);
  168. // //根据市索引设置默认区数据
  169. // this.columns[2] = this.area[pIdx][cIdx].map(res => res.name)
  170. // //区索引
  171. // let aIdx = this.area[pIdx][cIdx].findIndex(v => v.name == this.area);
  172. // this.indexs = [pIdx, cIdx, aIdx];
  173. // // console.log(pIdx, cIdx, aIdx);
  174. // console.log(this.indexs);
  175. // }
  176. // if (this.addressData.province && this.addressData.city && this.addressData.area) {
  177. // //省索引
  178. // let pIdx = this.province.findIndex(v => v.name == this.addressData.province);
  179. // //根据省索引设置默认市数据
  180. // this.columns[1] = this.city[pIdx].map(res => res.name)
  181. // //市索引
  182. // let cIdx = this.city[pIdx].findIndex(v => v.name == this.addressData.city);
  183. // //根据市索引设置默认区数据
  184. // this.columns[2] = this.area[pIdx][cIdx].map(res => res.name)
  185. // //区索引
  186. // let aIdx = this.area[pIdx][cIdx].findIndex(v => v.name == this.addressData.area);
  187. // this.indexs = [pIdx, cIdx, aIdx];
  188. // // console.log(pIdx, cIdx, aIdx);
  189. // console.log(this.indexs);
  190. // }
  191. })
  192. },
  193. changeHandler(e) {
  194. const {
  195. columnIndex, //当前改变值的列下标
  196. value,
  197. values, // values为当前变化列的数组内容
  198. indexs, //当前地区值下标
  199. picker = this.$refs.uPicker
  200. } = e
  201. //columnIndex代表第几列,意思是下标为0的列发生变化
  202. if (columnIndex === 0) {
  203. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  204. return {
  205. name: v.name,
  206. id: v.id
  207. }
  208. }))
  209. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  210. return {
  211. name: v.name,
  212. id: v.id
  213. }
  214. }))
  215. }
  216. if (columnIndex === 1) {
  217. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  218. return {
  219. name: v.name,
  220. id: v.id
  221. }
  222. }))
  223. }
  224. },
  225. //点击显示时间选择器
  226. birthdayBtn() {
  227. this.birthdayShow = true
  228. //new Date(this.endDate).getTime()为你需要在选择器上显示的时间戳
  229. this.$refs.picker.innerValue = new Date(946656000000).getTime()
  230. },
  231. //出生日期选择器
  232. async birthdayConfirm(e) {
  233. const timeFormat = uni.$u.timeFormat;
  234. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  235. this.from.birthday = timeValue;
  236. this.birthdayShow = false
  237. },
  238. //户口地址
  239. cityconfirm(e) {
  240. let a = e.value[0].name + e.value[1].name + e.value[2].name
  241. let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  242. this.from.domicile_city_id = e.value[1].id
  243. this.from.domicile_province_id = e.value[0].id
  244. // this.city1 = e.value.join("")
  245. this.city1 = a
  246. this.cityShow = false
  247. },
  248. }
  249. }
  250. </script>
  251. <style lang="scss" scoped>
  252. .content {
  253. padding: 24rpx 20rpx;
  254. background: #F6F6F6;
  255. border-radius: 16rpx;
  256. box-sizing: border-box;
  257. margin-top: 32rpx;
  258. position: relative;
  259. }
  260. .fei {
  261. background: #FF5335;
  262. border-radius: 16rpx 0rpx 16rpx 0rpx;
  263. font-size: 22rpx;
  264. font-family: PingFangSC-Regular, PingFang SC;
  265. font-weight: 400;
  266. color: #FFFFFF;
  267. position: absolute;
  268. left: 0;
  269. top: 0;
  270. }
  271. .add {
  272. background: rgba(12, 102, 194, 0.05);
  273. border-radius: 12rpx;
  274. border: 2rpx dashed #0C66C2;
  275. text-align: center;
  276. height: 108rpx;
  277. line-height: 108rpx;
  278. margin-top: 44rpx;
  279. font-size: 32rpx;
  280. font-family: PingFangSC-Medium, PingFang SC;
  281. font-weight: 500;
  282. color: #0C66C2;
  283. }
  284. .biaoti {
  285. font-size: 32rpx;
  286. font-family: PingFangSC-Regular, PingFang SC;
  287. font-weight: 400;
  288. color: #222222;
  289. }
  290. .money {
  291. font-size: 26rpx;
  292. font-family: SFPro-Regular, SFPro;
  293. font-weight: 400;
  294. color: #888888;
  295. margin-top: 16rpx;
  296. }
  297. .bottom {
  298. height: 144rpx;
  299. border-bottom: 2rpx solid #F0F0F0;
  300. }
  301. //个人信息
  302. .personal {
  303. width: 750rpx;
  304. background: #FFFFFF;
  305. border-radius: 28rpx 28rpx 0rpx 0rpx;
  306. margin-top: -40rpx;
  307. position: relative;
  308. z-index: 99;
  309. padding: 40rpx 32rpx 0;
  310. margin-bottom: 60rpx;
  311. box-sizing: border-box;
  312. .title {
  313. font-size: 48rpx;
  314. font-family: PingFangSC-Medium, PingFang SC;
  315. font-weight: 500;
  316. color: #222222;
  317. }
  318. .titleb {
  319. font-size: 26rpx;
  320. font-family: PingFangSC-Regular, PingFang SC;
  321. font-weight: 400;
  322. color: #777777;
  323. margin-top: 20rpx;
  324. }
  325. .body-input {
  326. height: 150rpx;
  327. border-bottom: 2rpx solid #F4F4F4;
  328. .input-title {
  329. font-size: 26rpx;
  330. font-family: PingFangSC-Regular, PingFang SC;
  331. font-weight: 400;
  332. color: #888888;
  333. margin-top: 30rpx;
  334. box-sizing: border-box;
  335. }
  336. .input-style {
  337. font-size: 32rpx;
  338. font-family: PingFangSC-Regular, PingFang SC;
  339. font-weight: 400;
  340. color: #CACACA;
  341. }
  342. }
  343. .button {
  344. width: 686rpx;
  345. height: 88rpx !important;
  346. background: #0C66C2;
  347. border-radius: 12rpx;
  348. font-size: 32rpx;
  349. font-family: PingFangSC-Medium, PingFang SC;
  350. font-weight: 500;
  351. color: #FFFFFF;
  352. line-height: 88rpx;
  353. margin: 54rpx 0 0rpx 0;
  354. display: flex;
  355. justify-content: center;
  356. }
  357. }
  358. </style>