perfect.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. <template>
  2. <view class="content vflex jbetween">
  3. <view >
  4. <view class="box" v-show="index == '1'">
  5. <view class="hflex acenter jbetween cell">
  6. <view class="label">头像</view>
  7. <u-avatar :src="base_info.avatar" @click="uploadAvatar"></u-avatar>
  8. </view>
  9. <view class="cell">
  10. <view class="label">真实姓名</view>
  11. <u-input v-model="base_info.real_name" border="none" placeholder="请填写你的真实姓名"></u-input>
  12. </view>
  13. <view class="cell">
  14. <view class="label">性别</view>
  15. <view class="hflex">
  16. <view v-for="(item,index) in sexList" :key="index" style="padding-right: 52rpx;">
  17. <radio :value="item.value" :checked="base_info.sex == item.value?true:false" color="#506dff" @click="selectSex(item.value)" />{{item.name}}
  18. </view>
  19. </view>
  20. </view>
  21. <view class="cell">
  22. <view class="label">出生年月</view>
  23. <view @click="open('birthday')">
  24. <u-input v-model="base_info.birthday" border="none" placeholder="请选择你的出生年月" suffixIcon="arrow-right"></u-input>
  25. </view>
  26. <u-datetime-picker :minDate="minDate" title="生日" :show="birthday_show" v-model="newDate" ref="datetimePicker" @confirm="confirmAge" @cancel="cancel" :formatter="formatter" mode="date"></u-datetime-picker>
  27. </view>
  28. <view class="cell">
  29. <view class="label">学历</view>
  30. <view @click="open('education')">
  31. <u-input v-model="base_info.education" border="none" placeholder="如:本科" suffixIcon="arrow-right"></u-input>
  32. </view>
  33. <u-picker title="学历" :show="education_show" :columns="educationList" ref="uPicker" @confirm="confirmEdu" @change="changeHandler" @cancel="cancel" ></u-picker>
  34. </view>
  35. <view class="cell">
  36. <view class="label">参加工作时间</view>
  37. <view @click="open('work_date')">
  38. <u-input v-model="base_info.work_date" border="none" placeholder="请选择参加工作的时间" suffixIcon="arrow-right"></u-input>
  39. </view>
  40. <u-datetime-picker :minDate="minDate" title="参加工作时间" :show="work_show" v-model="newDate" ref="datetimePicker" @confirm="confirmWork" @cancel="cancel" :formatter="formatter" mode="year-month"></u-datetime-picker>
  41. </view>
  42. <view class="cell">
  43. <view class="label">手机号码</view>
  44. <u-input v-model="base_info.phone" border="none" placeholder="请填写你的手机号码"></u-input>
  45. </view>
  46. <view class="cell">
  47. <view class="label">邮箱</view>
  48. <u-input v-model="base_info.email" border="none" placeholder="用于接收面试邮件"></u-input>
  49. </view>
  50. </view>
  51. <view class="box" v-if="index == '2'">
  52. <view class="cell">
  53. <view class="label">应聘岗位</view>
  54. <u-input v-model="job_inte.post" border="none" placeholder="请填写你应聘的岗位"></u-input>
  55. </view>
  56. <view class="cell">
  57. <view class="label">可工作地区范围</view>
  58. <u-input v-model="job_inte.work_address" border="none" placeholder="请填写工作地区范围"></u-input>
  59. </view>
  60. <view class="cell">
  61. <view class="label">期望薪资</view>
  62. <view @click="open('salary')">
  63. <u-input v-model="job_inte.salary" border="none" placeholder="请选择期望薪资" suffixIcon="arrow-right"></u-input>
  64. </view>
  65. <u-picker :show="salary_show" title="期望薪资" ref="uPicker" :columns="salaryList" @confirm="confirmSalary" @cancel="cancel"></u-picker>
  66. </view>
  67. <view class="cell">
  68. <view class="label">可工作时间</view>
  69. <u-input v-model="job_inte.work_time" border="none" placeholder="请输入工作时间比如12小时/天"></u-input>
  70. </view>
  71. <view class="cell">
  72. <view class="label">工作性质</view>
  73. <view @click="open('work_nature')">
  74. <u-input v-model="job_inte.work_nature" border="none" placeholder="请选择用工性质" suffixIcon="arrow-right"></u-input>
  75. </view>
  76. <u-picker :show="nature_show" title="工作性质" ref="uPicker" :columns="natureList" @confirm="confirmNature" @cancel="cancel"></u-picker>
  77. </view>
  78. </view>
  79. <view class="box" v-if="index == '3'">
  80. <view class="cell">
  81. <view class="label">公司名称</view>
  82. <u-input v-model="experience.company_name" border="none" placeholder="请输入"></u-input>
  83. </view>
  84. <view class="cell">
  85. <view class="label">职位名称</view>
  86. <u-input v-model="experience.company_position" border="none" placeholder="请输入"></u-input>
  87. </view>
  88. <view class="cell">
  89. <view class="label">在职时间</view>
  90. <view class="hflex acenter jbetween">
  91. <view @click="open('time1')">
  92. <u-input v-model="experience.company_time1" border="none" placeholder="入职时间"></u-input>
  93. </view>
  94. <u-datetime-picker :minDate="minDate" title="入职时间" :show="show_time1" v-model="newDate" ref="datetimePicker" @confirm="confirmTime1" @cancel="cancel" :formatter="formatter" mode="year-month"></u-datetime-picker>
  95. <view style="margin: 0 20rpx;">-</view>
  96. <view @click="open('time2')">
  97. <u-input v-model="experience.company_time2" border="none" placeholder="离职时间"></u-input>
  98. </view>
  99. <u-datetime-picker :minDate="minDate" title="离职时间" :show="show_time2" v-model="newDate" ref="datetimePicker" @confirm="confirmTime2" @cancel="cancel" :formatter="formatter" mode="year-month"></u-datetime-picker>
  100. </view>
  101. </view>
  102. <view class="cell">
  103. <view class="label">工作内容</view>
  104. <u-input v-model="experience.company_content" border="none" placeholder="请详细描述你在公司的主要工作内容以及…" suffixIcon="arrow-right"></u-input>
  105. </view>
  106. </view>
  107. <view class="box" v-if="index == '4'">
  108. <view class="cell">
  109. <view class="label">技能名称</view>
  110. <u-input v-model="skills.skills_name" border="none" placeholder="掌握的技能名称"></u-input>
  111. </view>
  112. <view class="cell">
  113. <view class="label">掌握程度</view>
  114. <view @click="open('skills_degree')">
  115. <u-input v-model="skills.skills_degree" border="none" placeholder="如:精通" suffixIcon="arrow-right"></u-input>
  116. </view>
  117. <u-picker :show="degree_show" title="掌握程度" ref="uPicker" :columns="degreeList" @confirm="confirmSkill" @cancel="cancel"></u-picker>
  118. </view>
  119. </view>
  120. <view class="box" v-if="index == '5'">
  121. <view class="cell">
  122. <view class="label">证书名称</view>
  123. <u-input v-model="certificate.certificate_name" border="none" placeholder="获得的证书名称"></u-input>
  124. </view>
  125. <view class="cell">
  126. <view class="label">获得时间</view>
  127. <view @click="open('certificate_date')">
  128. <u-input v-model="certificate.certificate_date" border="none" placeholder="年/月" suffixIcon="arrow-right"></u-input>
  129. </view>
  130. <u-datetime-picker :minDate="minDate" title="获得时间" :show="certificate_show" v-model="newDate" ref="datetimePicker" @confirm="confirmDate" @cancel="cancel" :formatter="formatter" mode="year-month"></u-datetime-picker>
  131. </view>
  132. <view class="cell">
  133. <view class="hflex acenter">
  134. <view class="label">上传图片</view>
  135. <view class="hflex acenter" style="padding-bottom: 20rpx;">
  136. <u-icon name="info-circle-fill" color="#FFA446" size="10"></u-icon>
  137. <view class="label2">只能上传一张</view>
  138. </view>
  139. </view>
  140. <view class="upload vflex acenter jcenter" @click="uploadImg" v-if="certificate.certificate_img == ''">
  141. <u-icon name="plus" color="#CACACA" size="25"></u-icon>
  142. <view class="text_style1">添加图片</view>
  143. </view>
  144. <view v-else>
  145. <image :src="certificate.certificate_img" mode="aspectFill" class="upload"></image>
  146. </view>
  147. </view>
  148. </view>
  149. </view>
  150. <view class="save" @click="save">保存</view>
  151. </view>
  152. </template>
  153. <script>
  154. import $api from '@/static/js/api.js'
  155. var that = ''
  156. export default {
  157. data() {
  158. return {
  159. index: '0',
  160. base_info: {
  161. avatar: '',
  162. real_name: '',
  163. sex: '',
  164. birthday: '',
  165. work_date: '',
  166. phone: '',
  167. email: '',
  168. education: '',
  169. },
  170. educationList: [
  171. ['小学','初中','高中','本科','硕士']
  172. ],
  173. educationList2: [
  174. ['统招','非统招']
  175. ],
  176. sexList: [
  177. {
  178. value: '0',
  179. name: '男',
  180. },
  181. {
  182. value: '1',
  183. name: '女'
  184. }
  185. ],
  186. job_inte: {
  187. post: '',
  188. work_address: '',
  189. salary: '',
  190. work_time: '',
  191. work_nature: '',
  192. },
  193. salaryList: [
  194. ['1k','2k','3k','4k','5k','6k','7k','8k'],
  195. ['3k','4k','5k','6k','7k','8k','9k','10k']
  196. ],
  197. natureList: [
  198. ['兼职','全职']
  199. ],
  200. experience: {
  201. company_name: '',
  202. company_position: '',
  203. company_time1: '',
  204. company_time2: '',
  205. company_content: '',
  206. },
  207. certificate: {
  208. certificate_name: '',
  209. certificate_date: '',
  210. certificate_img: [],
  211. },
  212. skills: {
  213. skills_name: '',
  214. skills_degree:'',
  215. },
  216. degreeList: [
  217. ['熟悉','掌握','精通']
  218. ],
  219. salary_show: false,
  220. birthday_show: false,
  221. work_show: false,
  222. nature_show: false,
  223. show_time1: false,
  224. show_time2: false,
  225. degree_show: false,
  226. education_show: false,
  227. certificate_show: false,
  228. newDate: Number(new Date()),
  229. minDate: new Date('1980-01-01')
  230. }
  231. },
  232. onLoad(options) {
  233. that = this
  234. that.index = options.index
  235. that.isInfo(options.index)
  236. // if(options.id) {
  237. // }
  238. },
  239. onReady() {
  240. // 微信小程序需要用此写法
  241. this.$refs.datetimePicker.setFormatter(this.formatter)
  242. },
  243. methods: {
  244. // 判断要修改的信息
  245. isInfo(index) {
  246. var text = ''
  247. switch(index) {
  248. case '1' :
  249. text = '基本信息';
  250. break;
  251. case '2' :
  252. text = '求职意向';
  253. break;
  254. case '3' :
  255. text = '工作经历';
  256. break;
  257. case '4' :
  258. text = '专业技能';
  259. break;
  260. case '5' :
  261. text = '资质证书';
  262. break;
  263. }
  264. uni.setNavigationBarTitle({
  265. title: text
  266. })
  267. },
  268. // 保存
  269. save() {
  270. if(that.index == '1') {
  271. if($api.formCheck(that.base_info.avatar,"required") && $api.formCheck(that.base_info.real_name,"truename") && $api.formCheck(that.base_info.birthday,"required") && $api.formCheck(that.base_info.education,"required")
  272. && $api.formCheck(that.base_info.work_date,"required") && $api.formCheck(that.base_info.phone,"mobile")&& $api.formCheck(that.base_info.email,"email")) {
  273. $api.info('保存成功')
  274. $api.jump(-1)
  275. }
  276. }
  277. if(that.index == '2') {
  278. if($api.formCheck(that.job_inte.post,"required") && $api.formCheck(that.job_inte.work_address,"required") && $api.formCheck(that.job_inte.salary,"required")
  279. && $api.formCheck(that.job_inte.work_time,"required") && $api.formCheck(that.job_inte.work_nature,"required")) {
  280. $api.info('保存成功')
  281. $api.jump(-1)
  282. }
  283. }
  284. if(that.index == '3') {
  285. if($api.formCheck(that.experience.company_name,"required") && $api.formCheck(that.experience.company_position,"required") && $api.formCheck(that.experience.company_time1,"required")
  286. && $api.formCheck(that.experience.company_time2,"required") && $api.formCheck(that.experience.company_content,"required")) {
  287. $api.info('保存成功')
  288. $api.jump(-1)
  289. }
  290. }
  291. if(that.index == '4') {
  292. if($api.formCheck(that.skills.skills_name,"required") && $api.formCheck(that.skills.skills_degree,"required")) {
  293. $api.info('保存成功')
  294. $api.jump(-1)
  295. }
  296. }
  297. if(that.index == '5') {
  298. if($api.formCheck(that.certificate.certificate_name,"required") && $api.formCheck(that.certificate.certificate_date,"required")) {
  299. $api.info('保存成功')
  300. $api.jump(-1)
  301. }
  302. }
  303. // $api.jump(-1)
  304. },
  305. // 上传头像
  306. uploadAvatar() {
  307. uni.chooseImage({
  308. count: 1, //默认9
  309. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  310. sourceType: ['album'], //从相册选择
  311. success: function (res) {
  312. console.log(res.tempFilePaths);
  313. // that.base_info.avatar = res.tempFilePaths[0]
  314. const tempFilePaths = res.tempFilePaths
  315. uni.uploadFile({
  316. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  317. filePath: tempFilePaths[0],
  318. name: 'file',
  319. header: {
  320. 'content-type': 'application/x-www-form-urlencoded',
  321. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  322. 'api-name': 'wxapp'
  323. },
  324. formData: {
  325. 'user': 'test'
  326. },
  327. success: (res) => {
  328. const data = JSON.parse(res.data)
  329. if (data.code == 1) {
  330. that.base_info.avatar = data.data.url
  331. }
  332. }
  333. });
  334. }
  335. });
  336. },
  337. // 上传图书照片
  338. uploadImg() {
  339. uni.chooseImage({
  340. count: 1, //默认9
  341. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  342. sourceType: ['album'], //从相册选择
  343. success: function (res) {
  344. console.log(res.tempFilePaths);
  345. that.certificate.certificate_img = res.tempFilePaths[0]
  346. },
  347. })
  348. },
  349. // 选择性别
  350. selectSex(value) {
  351. that.base_info.sex = value
  352. },
  353. // 打开
  354. open(e) {
  355. console.log(e);
  356. switch(e) {
  357. case 'birthday' :
  358. that.birthday_show = true;
  359. break;
  360. case 'work_date' :
  361. that.work_show = true;
  362. break;
  363. case 'salary' :
  364. that.salary_show = true;
  365. break;
  366. case 'work_nature' :
  367. that.nature_show = true;
  368. break;
  369. case 'time1' :
  370. that.show_time1 = true;
  371. break;
  372. case 'time2' :
  373. that.show_time2 = true;
  374. break;
  375. case 'skills_degree' :
  376. that.degree_show = true;
  377. break;
  378. case 'certificate_date' :
  379. that.certificate_show = true;
  380. break;
  381. case 'education' :
  382. that.education_show = true;
  383. break;
  384. }
  385. },
  386. // 格式化日期
  387. formatter(type, value) {
  388. if (type === 'year') {
  389. return `${value}年`
  390. }
  391. if (type === 'month') {
  392. return `${value}月`
  393. }
  394. if (type === 'day') {
  395. return `${value}日`
  396. }
  397. return value
  398. },
  399. // 确定选择生日
  400. confirmAge(e) {
  401. that.base_info.birthday = $api.formatDate(e)
  402. that.cancel()
  403. },
  404. // 确定选择参加工作时间
  405. confirmWork(e) {
  406. that.base_info.work_date = $api.formatDate(e)
  407. that.cancel()
  408. },
  409. confirmSalary(e) {
  410. console.log(e);
  411. var index1 = e.indexs[0]
  412. var index2 = e.indexs[1]
  413. if (index1 - index2 > 2) {
  414. $api.info('请选择正确的薪资范围')
  415. } else {
  416. that.job_inte.salary = e.value[0] + '-' + e.value[1]
  417. that.cancel()
  418. }
  419. },
  420. // 选择工作性质
  421. confirmNature(e) {
  422. console.log(e);
  423. that.job_inte.work_nature = e.value[0]
  424. that.cancel()
  425. },
  426. // 选择在职时间1
  427. confirmTime1(e) {
  428. that.experience.company_time1 = $api.formatDate(e)
  429. that.cancel()
  430. },
  431. // 选择在职时间2
  432. confirmTime2(e) {
  433. that.experience.company_time2 = $api.formatDate(e)
  434. that.cancel()
  435. },
  436. // 选择技能掌握程度
  437. confirmSkill(e) {
  438. that.skills.skills_degree = e.value[0]
  439. that.cancel()
  440. },
  441. // 选择证书获得时间
  442. confirmDate(e) {
  443. that.certificate.certificate_date = $api.formatDate(e)
  444. that.cancel()
  445. },
  446. // 选择学历
  447. changeHandler(e) {
  448. const {
  449. columnIndex,
  450. value,
  451. values, // values为当前变化列的数组内容
  452. index,
  453. // 微信小程序无法将picker实例传出来,只能通过ref操作
  454. picker = this.$refs.uPicker
  455. } = e
  456. console.log(e);
  457. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  458. if (e.index == 3 || e.index == 4) {
  459. // picker为选择器this实例,变化第二列对应的选项
  460. console.log(this.educationList2);
  461. picker.setColumnValues(1, this.educationList2[0])
  462. }
  463. },
  464. // 选择学历
  465. confirmEdu(e) {
  466. console.log(e);
  467. if(e.indexs.length > 1) {
  468. that.base_info.education = e.value[1] + e.value[0]
  469. } else {
  470. that.base_info.education = e.value[0]
  471. }
  472. that.cancel()
  473. },
  474. // 关闭选择器
  475. cancel() {
  476. that.birthday_show = false
  477. that.work_show = false
  478. that.salary_show = false
  479. that.nature_show = false
  480. that.show_time1 = false
  481. that.show_time2 = false
  482. that.degree_show = false
  483. that.certificate_show = false
  484. that.education_show = false
  485. },
  486. },
  487. }
  488. </script>
  489. <style lang="scss" scoped>
  490. .content {
  491. background: #F4F4F4;
  492. padding: 20rpx 30rpx 0;
  493. .box {
  494. width: 100%;
  495. background: #FFFFFF;
  496. border-radius: 20rpx;
  497. box-sizing: border-box;
  498. padding: 30rpx 20rpx;
  499. .cell {
  500. width: 100%;
  501. padding: 28rpx 0;
  502. border-bottom: 1rpx solid #F4F4F4;
  503. .label {
  504. font-size: 26rpx;
  505. font-weight: 400;
  506. color: #888888;
  507. padding-bottom: 28rpx;
  508. margin-right: 14rpx;
  509. }
  510. .label_img {
  511. width: 20rpx;
  512. height: 20rpx;
  513. margin: 0 4rpx 0 14rpx;
  514. }
  515. .label2 {
  516. font-size: 20rpx;
  517. font-weight: 400;
  518. color: #B1B1B1;
  519. }
  520. .upload {
  521. width: 200rpx;
  522. height: 200rpx;
  523. background: #F5F5F5;
  524. border-radius: 20rpx;
  525. .text_style1 {
  526. margin-top: 18rpx;
  527. font-size: 24rpx;
  528. font-weight: 400;
  529. color: #ADADAD;
  530. }
  531. }
  532. }
  533. .cell:nth-last-child(1) {
  534. border: none;
  535. }
  536. }
  537. .save {
  538. width: 100%;
  539. height: 84rpx;
  540. background: #506DFF;
  541. border-radius: 42rpx;
  542. font-size: 36rpx;
  543. text-align: center;
  544. margin: 56rpx auto;
  545. font-weight: 500;
  546. color: #FFFFFF;
  547. line-height: 84rpx;
  548. }
  549. }
  550. </style>