perfect.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <template>
  2. <view class="content vflex jbetween">
  3. <view >
  4. <view class="box">
  5. <view class="cell">
  6. <view class="label">公司名称</view>
  7. <u-input v-model="experience.content.company_name" border="none" placeholder="请输入"></u-input>
  8. </view>
  9. <view class="cell">
  10. <view class="label">职位名称</view>
  11. <u-input v-model="experience.content.postion_name" border="none" placeholder="请输入"></u-input>
  12. </view>
  13. <view class="cell">
  14. <view class="label">在职时间</view>
  15. <view class="hflex acenter jbetween">
  16. <view @click="open('time1')">
  17. <u-input v-model="experience.content.on_job_start" border="none" placeholder="入职时间"></u-input>
  18. </view>
  19. <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>
  20. <view style="margin: 0 20rpx;">-</view>
  21. <view @click="open('time2')">
  22. <u-input v-model="experience.content.on_job_end" border="none" placeholder="离职时间"></u-input>
  23. </view>
  24. <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>
  25. </view>
  26. </view>
  27. <view class="cell">
  28. <view class="label">工作内容</view>
  29. <u-input v-model="experience.content.company_content" border="none" placeholder="请详细描述你在公司的主要工作内容以及…" suffixIcon="arrow-right"></u-input>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="hflex acenter jcenter">
  34. <view class="save del" @click="del">删除</view>
  35. <view class="save" @click="save">保存</view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import $api from '@/static/js/api.js'
  41. var that = ''
  42. export default {
  43. data() {
  44. return {
  45. experience: {
  46. content: {
  47. company_name: '',
  48. postion_name: '',
  49. on_job_start: '',
  50. on_job_end: '',
  51. company_content: '',
  52. }
  53. },
  54. salary_show: false,
  55. birthday_show: false,
  56. work_show: false,
  57. nature_show: false,
  58. show_time1: false,
  59. show_time2: false,
  60. degree_show: false,
  61. education_show: false,
  62. certificate_show: false,
  63. newDate: Number(new Date()),
  64. minDate: new Date('1980-01-01'),
  65. id: ''
  66. }
  67. },
  68. onLoad(options) {
  69. that = this
  70. if(options.id) {
  71. that.id = options.id
  72. that.getData()
  73. }
  74. console.log(that.id);
  75. },
  76. onReady() {
  77. // 微信小程序需要用此写法
  78. this.$refs.datetimePicker.setFormatter(this.formatter)
  79. },
  80. methods: {
  81. getData() {
  82. var pages = getCurrentPages()
  83. var prePage = pages[pages.length - 2]
  84. var experienceList = prePage.$vm.userInfo.work
  85. for(var i=0;i<experienceList.length;i++) {
  86. if(that.id == experienceList[i].id) {
  87. that.experience =experienceList[i]
  88. }
  89. }
  90. console.log(that.experience);
  91. },
  92. // 保存
  93. save() {
  94. if($api.formCheck(that.experience.content.company_name,"required") && $api.formCheck(that.experience.content.postion_name,"required") && $api.formCheck(that.experience.content.on_job_start,"required")
  95. && $api.formCheck(that.experience.content.on_job_end,"required") && $api.formCheck(that.experience.content.company_content,"required")) {
  96. var work_experience = {
  97. company_name: that.experience.content.company_name,
  98. postion_name: that.experience.content.postion_name,
  99. on_job_start: that.experience.content.on_job_start,
  100. on_job_end: that.experience.content.on_job_end,
  101. company_content: that.experience.content.company_content
  102. }
  103. work_experience = JSON.stringify(work_experience)
  104. console.log(that.id);
  105. $api.req({
  106. url: '/data/api.auth.Center/adduppooltalentchild',
  107. method: 'POST',
  108. data: {
  109. id: that.id,
  110. content: work_experience
  111. }
  112. }, function(res) {
  113. if(res.code == 1) {
  114. if(that.id) {
  115. var pages = getCurrentPages()
  116. var prePage = pages[pages.length - 2]
  117. var list = prePage.$vm.userInfo.work
  118. for(var i=0;i<list.length;i++) {
  119. if(list[i].id == that.id) {
  120. list[i] = work_experience
  121. }
  122. }
  123. prePage.$vm.userInfo.work=list
  124. } else {
  125. var pages = getCurrentPages()
  126. var prePage = pages[pages.length - 2]
  127. prePage.$vm.userInfo.work.push(work_experience)
  128. }
  129. $api.info(res.info)
  130. $api.jump(-1)
  131. }
  132. })
  133. }
  134. },
  135. del() {
  136. $api.req({
  137. url: '/data/api.auth.Center/delpooltalentchild',
  138. method: 'POST',
  139. data: {
  140. id: that.id
  141. }
  142. }, function(res) {
  143. if(res.code == 1) {
  144. var pages = getCurrentPages()
  145. var prePage = pages[pages.length - 2]
  146. var list = prePage.$vm.userInfo.work
  147. for(var i=0;i<list.length;i++) {
  148. if(list[i].id == that.id) {
  149. list.splice(i,1)
  150. }
  151. }
  152. prePage.$vm.userInfo.work=list
  153. $api.info(res.info)
  154. $api.jump(-1)
  155. }
  156. })
  157. },
  158. // 打开
  159. open(e) {
  160. console.log(e);
  161. switch(e) {
  162. case 'birthday' :
  163. that.birthday_show = true;
  164. break;
  165. case 'work_date' :
  166. that.work_show = true;
  167. break;
  168. case 'salary' :
  169. that.salary_show = true;
  170. break;
  171. case 'work_nature' :
  172. that.nature_show = true;
  173. break;
  174. case 'time1' :
  175. that.show_time1 = true;
  176. break;
  177. case 'time2' :
  178. that.show_time2 = true;
  179. break;
  180. case 'skills_degree' :
  181. that.degree_show = true;
  182. break;
  183. case 'certificate_date' :
  184. that.certificate_show = true;
  185. break;
  186. case 'education' :
  187. that.education_show = true;
  188. break;
  189. }
  190. },
  191. // 格式化日期
  192. formatter(type, value) {
  193. if (type === 'year') {
  194. return `${value}年`
  195. }
  196. if (type === 'month') {
  197. return `${value}月`
  198. }
  199. if (type === 'day') {
  200. return `${value}日`
  201. }
  202. return value
  203. },
  204. // 确定选择生日
  205. confirmAge(e) {
  206. that.base_info.date_birth = $api.formatDate(e)
  207. that.cancel()
  208. },
  209. // 确定选择参加工作时间
  210. confirmWork(e) {
  211. that.base_info.start_working_time = $api.formatDate(e)
  212. that.cancel()
  213. },
  214. confirmSalary(e) {
  215. console.log(e);
  216. var index1 = e.indexs[0]
  217. var index2 = e.indexs[1]
  218. if (index1 - index2 > 2) {
  219. $api.info('请选择正确的薪资范围')
  220. } else {
  221. that.job_inte.salary = e.value[0] + '-' + e.value[1]
  222. that.cancel()
  223. }
  224. },
  225. // 选择工作性质
  226. confirmNature(e) {
  227. console.log(e);
  228. that.job_inte.work_nature = e.value[0]
  229. that.cancel()
  230. },
  231. // 选择在职时间1
  232. confirmTime1(e) {
  233. that.experience.content.on_job_start = $api.formatDate(e)
  234. that.cancel()
  235. },
  236. // 选择在职时间2
  237. confirmTime2(e) {
  238. that.experience.content.on_job_end = $api.formatDate(e)
  239. that.cancel()
  240. },
  241. // 选择技能掌握程度
  242. confirmSkill(e) {
  243. that.skills.skills_degree = e.value[0]
  244. that.cancel()
  245. },
  246. // 选择证书获得时间
  247. confirmDate(e) {
  248. that.certificate.certificate_date = $api.formatDate(e)
  249. that.cancel()
  250. },
  251. /* // 选择学历
  252. changeHandler(e) {
  253. const {
  254. columnIndex,
  255. value,
  256. values, // values为当前变化列的数组内容
  257. index,
  258. // 微信小程序无法将picker实例传出来,只能通过ref操作
  259. picker = this.$refs.uPicker
  260. } = e
  261. console.log(e);
  262. // 当第一列值发生变化时,变化第二列(后一列)对应的选项
  263. if (e.index == 3 || e.index == 4) {
  264. // picker为选择器this实例,变化第二列对应的选项
  265. console.log(this.educationList2);
  266. picker.setColumnValues(1, this.educationList2[0])
  267. }
  268. }, */
  269. // 选择学历
  270. confirmEdu(e) {
  271. console.log(e);
  272. if(e.indexs.length > 1) {
  273. that.base_info.edu = e.value[0]
  274. } else {
  275. that.base_info.edu = e.value[0]
  276. }
  277. that.cancel()
  278. },
  279. // 关闭选择器
  280. cancel() {
  281. that.birthday_show = false
  282. that.work_show = false
  283. that.salary_show = false
  284. that.nature_show = false
  285. that.show_time1 = false
  286. that.show_time2 = false
  287. that.degree_show = false
  288. that.certificate_show = false
  289. that.education_show = false
  290. },
  291. },
  292. }
  293. </script>
  294. <style lang="scss" scoped>
  295. .content {
  296. background: #F4F4F4;
  297. padding: 20rpx 30rpx 0;
  298. .box {
  299. width: 100%;
  300. background: #FFFFFF;
  301. border-radius: 20rpx;
  302. box-sizing: border-box;
  303. padding: 30rpx 20rpx;
  304. .cell {
  305. width: 100%;
  306. padding: 28rpx 0;
  307. border-bottom: 1rpx solid #F4F4F4;
  308. .label {
  309. font-size: 26rpx;
  310. font-weight: 400;
  311. color: #888888;
  312. padding-bottom: 28rpx;
  313. margin-right: 14rpx;
  314. }
  315. .label_img {
  316. width: 20rpx;
  317. height: 20rpx;
  318. margin: 0 4rpx 0 14rpx;
  319. }
  320. .label2 {
  321. font-size: 20rpx;
  322. font-weight: 400;
  323. color: #B1B1B1;
  324. }
  325. .upload {
  326. width: 200rpx;
  327. height: 200rpx;
  328. background: #F5F5F5;
  329. border-radius: 20rpx;
  330. .text_style1 {
  331. margin-top: 18rpx;
  332. font-size: 24rpx;
  333. font-weight: 400;
  334. color: #ADADAD;
  335. }
  336. }
  337. }
  338. .cell:nth-last-child(1) {
  339. border: none;
  340. }
  341. }
  342. .save {
  343. width: 45%;
  344. height: 84rpx;
  345. background: #506DFF;
  346. border-radius: 42rpx;
  347. font-size: 36rpx;
  348. text-align: center;
  349. margin: 56rpx auto;
  350. font-weight: 500;
  351. color: #FFFFFF;
  352. line-height: 84rpx;
  353. }
  354. .del {
  355. background: #fff;
  356. border: 1rpx solid #506DFF;
  357. color: #506DFF;
  358. margin-right: 40rpx;
  359. }
  360. }
  361. </style>