apply1.vue 8.0 KB

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