apply1.vue 9.1 KB

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