userinfo.vue 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. <template>
  2. <view class="index-page">
  3. <!-- 个人信息 -->
  4. <view class="personal">
  5. <view class="u-flex u-row-between">
  6. <text>头像</text>
  7. <image :src="from.avatar" style="width: 120rpx;height: 120rpx;border-radius: 50%;" mode=""
  8. @click="uploadimg"></image>
  9. </view>
  10. <view class="body-input u-flex-col u-row-center "
  11. style="margin-top:32rpx ;padding-top:30rpx ;border-top:2rpx solid #F0F0F0 ;" @click="tochangename">
  12. <text class="input-title">真实姓名</text>
  13. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写您的真实姓名" border
  14. placeholderClass='input-style' v-model="from.name"></u--input>
  15. </view>
  16. <view class="body-input u-flex-col u-row-center" @click="sexShow = true">
  17. <text class="input-title">性别</text>
  18. <u--input v-if="from.sex == 'male'" value="男" :disabled="true" disabledColor="#fff"
  19. customStyle="padding:0 !important" type="text" placeholder="请选择您的性别" border
  20. placeholderClass='input-style' suffixIcon="arrow-right"
  21. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-mode="sexvalue"></u--input>
  22. <u--input v-if="from.sex == 'female'" value="女" :disabled="true" disabledColor="#fff"
  23. customStyle="padding:0 !important" type="text" placeholder="请选择您的性别" border
  24. placeholderClass='input-style' suffixIcon="arrow-right"
  25. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-mode="sexvalue">女</u--input>
  26. <u--input v-if="from.sex == 'secret'" value="保密" :disabled="true" disabledColor="#fff"
  27. customStyle="padding:0 !important" type="text" placeholder="请选择您的性别" border
  28. placeholderClass='input-style' suffixIcon="arrow-right"
  29. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-mode="sexvalue"></u--input>
  30. </view>
  31. <view class="body-input u-flex-col u-row-center" @click="jobRole=true">
  32. <text class="input-title">求职身份</text>
  33. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  34. placeholder="请选择您的求职身份" border placeholderClass='input-style' suffixIcon="arrow-right"
  35. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="current"></u--input>
  36. </view>
  37. <view class="body-input u-flex-col u-row-center" @click="birthdayBtn">
  38. <text class="input-title">出生日期</text>
  39. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  40. placeholder="请选择您的出生年月" border placeholderClass='input-style' suffixIcon="arrow-right"
  41. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  42. v-model="from.birthday"></u--input>
  43. </view>
  44. <view class="body-input u-flex-col u-row-center" @click="cityShow1 = true">
  45. <text class="input-title">当前城市</text>
  46. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  47. placeholder="请选择您的当前城市" border placeholderClass='input-style' suffixIcon="arrow-right"
  48. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="city2"></u--input>
  49. </view>
  50. <view class="body-input u-flex-col u-row-center" @click="cityShow = true">
  51. <text class="input-title">户口所在地</text>
  52. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  53. placeholder="请选择您的户口所在地" border placeholderClass='input-style' suffixIcon="arrow-right"
  54. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="city1"></u--input>
  55. </view>
  56. <view class="body-input u-flex-col u-row-center" @click="workBtn">
  57. <text class="input-title">参加工作时间</text>
  58. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  59. placeholder="请选择您参加工作的时间" border placeholderClass='input-style' suffixIcon="arrow-right"
  60. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  61. v-model="from.job_time"></u--input>
  62. </view>
  63. <view class="body-input u-flex-col u-row-center">
  64. <text class="input-title">目前薪资</text>
  65. <view class="u-flex u-row-between">
  66. <view style="width: 80rpx;" class="" @click="salarytype = true">{{salary_type}}</view>
  67. <u-icon name="arrow-down-fill" color="#000" size="8"></u-icon>
  68. <u--input border style='width:50rpx' class="" v-model="from.salary">{{from.salary||''}}</u--input>元
  69. <text>*</text>
  70. <u--input border style='width:50rpx' class=""
  71. v-model="from.salary_month">{{from.salary_month||''}}</u--input>个月
  72. </view>
  73. </view>
  74. <view class="body-input u-flex-col u-row-center">
  75. <text class="input-title">手机号</text>
  76. <view class="u-flex u-row-between">
  77. <u--input :disabled="true" customStyle="padding:0 !important" type="text" placeholder="请填写" border
  78. placeholderClass='input-style' v-model="mobile_text"></u--input>
  79. <view class="u-flex" @click="tochangetel">
  80. <text style="font-size: 24rpx;
  81. font-family: PingFangSC, PingFang SC;
  82. font-weight: 400;
  83. color: #0C66C2;">已绑定</text>
  84. <u-icon name="arrow-right" color="#CACACA" size="16"></u-icon>
  85. </view>
  86. </view>
  87. </view>
  88. <view class="body-input u-flex-col u-row-center">
  89. <text class="input-title">邮箱</text>
  90. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写(选填)" border
  91. placeholderClass='input-style' v-model="from.email"></u--input>
  92. </view>
  93. <view class="body-input u-flex-col u-row-center">
  94. <text class="input-title">微信</text>
  95. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写(选填)" border
  96. placeholderClass='input-style' v-model="from.wx"></u--input>
  97. </view>
  98. <!-- <view class="body-input u-flex-col u-row-center" @click="maritalShow = true">
  99. <text class="input-title">婚姻状态</text>
  100. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  101. placeholder="请选择(选填)" border placeholderClass='input-style' suffixIcon="arrow-right"
  102. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="status"></u--input>
  103. </view> -->
  104. <!-- <view class="body-input u-flex-col u-row-center" @click="politicsShow = true">
  105. <text class="input-title">政治面貌</text>
  106. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  107. placeholder="请选择(选填)" border placeholderClass='input-style' suffixIcon="arrow-right"
  108. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;" v-model="politics"></u--input>
  109. </view> -->
  110. <view class="button" @click="next">
  111. 保存
  112. </view>
  113. </view>
  114. <!-- 选择器 -->
  115. <u-picker title="性别" :show="sexShow" @confirm="sexConfirm" :columns="sexdata" @cancel='close()'></u-picker>
  116. <u-picker title="政治面貌" keyName="name" :show="politicsShow" @confirm="politicsConfirm" :columns="politicslist"
  117. @cancel='close()'></u-picker>
  118. <u-picker title="婚姻状态" keyName="name" :show="maritalShow" @confirm="maritalConfirm" :columns="maritallist"
  119. @cancel='close()'>
  120. </u-picker><u-picker title="求职状态" keyName="name" :show="jobShow" @confirm="jobConfirm" :columns="joblist"
  121. @cancel='close()'></u-picker>
  122. <u-datetime-picker ref="picker" title="出生日期" :minDate="minDate" @confirm="birthdayConfirm" :show="birthdayShow"
  123. mode="date" @cancel='close()'></u-datetime-picker>
  124. <u-datetime-picker ref="pickers" title="参加工作时间" :minDate="minDate1" @confirm="workConfirm" :show="workShow"
  125. mode="date" @cancel='close()'></u-datetime-picker>
  126. <u-picker ref="uPicker" keyName="name" title="户口所在地" :defaultIndex="indexs" :show="cityShow" :columns="cityList"
  127. @confirm="cityconfirm" @cancel="cityShow = false" @change="changeHandler"></u-picker>
  128. <u-picker ref="uPicker1" keyName="name" title="当前城市" :defaultIndex="indexs" :show="cityShow1"
  129. :columns="cityList" @confirm="cityconfirm1" @cancel="cityShow1 = false" @change="changeHandler1"></u-picker>
  130. <u-picker title="职场人身份" keyName="name" :show="jobRole" @confirm="jobRolefunction" :columns="list"
  131. @cancel='jobRole = false'></u-picker>
  132. <u-picker title="薪资类型" keyName="name" :show="salarytype" @confirm="salarytypefunction" :columns="salarytypelist"
  133. @cancel='salarytype = false'></u-picker>
  134. </view>
  135. </template>
  136. <script>
  137. import fuxing from "../common/fuxing.js"
  138. import {
  139. politics,
  140. marital,
  141. getAllArea,
  142. getjob,
  143. profile,
  144. resumeDetail,
  145. update,
  146. index,
  147. } from "@/units/inquire.js"
  148. export default {
  149. data() {
  150. return {
  151. mobile_text: '',
  152. salarytype: false,
  153. jobRole: false,
  154. cityShow1: "",
  155. addressData: {
  156. id: "",
  157. province: "",
  158. city: "",
  159. area: "",
  160. detail: "",
  161. userName: "",
  162. phone: "",
  163. isDefault: false
  164. }, //地址数据
  165. province: [], //省数据
  166. city: [], //市数据
  167. area: [], //区数据
  168. provinceid: "", //省数据
  169. cityid: "", //市数据
  170. areaid: "", //区数据
  171. indexs: [], //默认地区下标
  172. //选择器状态
  173. sexShow: false, //性别
  174. birthdayShow: false, //出生年月
  175. politicsShow: false, //政治面貌
  176. maritalShow: false, //婚姻状态
  177. workShow: false, //工作时间
  178. cityShow: false, //户口所在地
  179. jobShow: false, //工作显示
  180. // 列表数据
  181. sexvalue: "", //性别传的值
  182. status: "", //婚姻状态
  183. politics: "", //政治面貌
  184. city1: "", //地址
  185. job: "",
  186. // avatar: "", //头像
  187. job_name: "",
  188. salary_type: '月薪',
  189. from: {
  190. salary: '', //薪水
  191. wx: '',
  192. avatar: "", //头像
  193. name: "",
  194. sex: "",
  195. birthday: "",
  196. // industry_id: "", //行业id
  197. province_id: "", //省份id
  198. city_id: "", //城市id
  199. // invitation_code: "", //邀请码
  200. job_role: "student", //求职身份
  201. job_time: "", //参加工作时间
  202. mobile: "", //手机号
  203. domicile_province_id: "", //户籍省份
  204. domicile_city_id: "", //市
  205. political_status_id: "", //政治面貌
  206. marital_status_id: "", //婚姻状态
  207. job_status_id: "", //求职
  208. email: "", //邮箱
  209. source_type: "resume",
  210. salary_month: '', //一年多少薪
  211. salary_type: 'month',
  212. },
  213. minDate: "",
  214. minDate1: "",
  215. height: '',
  216. list: [
  217. [{
  218. name: '学生',
  219. sole: 'student'
  220. }, {
  221. name: '职场人',
  222. sole: 'employee'
  223. }]
  224. ],
  225. salarytypelist: [
  226. [{
  227. name: '月薪',
  228. type: 'month'
  229. }, {
  230. name: '年薪',
  231. tupe: 'year'
  232. }]
  233. ],
  234. current: '学生',
  235. sexdata: [
  236. ['男', '女', '保密']
  237. ],
  238. politicslist: [
  239. []
  240. ],
  241. maritallist: [
  242. []
  243. ],
  244. cityList: [], //数据地址
  245. cityids: [], //数据地址
  246. joblist: [],
  247. jianliid: "",
  248. city2: '',
  249. // typea: ''
  250. }
  251. },
  252. onLoad(option) {
  253. // this.getHeight()
  254. // this.typea = option.typea
  255. this.jianliid = option.id
  256. console.log(this.jianliid);
  257. this.minDate = Number(new Date('1900-01-01'));
  258. this.minDate1 = Number(new Date('1980-01-01'));
  259. this.getpolitics()
  260. this.getmarital()
  261. this.AllArea()
  262. this.getJob()
  263. this.resumeDetail()
  264. },
  265. methods: {
  266. //求职身份
  267. jobRolefunction(e) {
  268. this.from.job_role = e.value[0].sole
  269. this.current = e.value[0].name
  270. this.jobRole = false
  271. },
  272. salarytypefunction(e) {
  273. this.from.salary_type = e.value[0].salary_type
  274. this.salary_type = e.value[0].name
  275. this.salarytype = false
  276. },
  277. tochangetel() {
  278. uni.navigateTo({
  279. url: "/pagesD/change-tel"
  280. })
  281. },
  282. uploadimg() {
  283. uni.chooseImage({
  284. count: 1,
  285. success: (img) => {
  286. uni.showLoading({
  287. mask: true,
  288. title: "请稍后"
  289. })
  290. uni.uploadFile({
  291. url: 'https://hire.hdlkeji.com/api/common/upload',
  292. filePath: img.tempFilePaths[0],
  293. name: 'file',
  294. success: (res) => {
  295. uni.hideLoading()
  296. if (JSON.parse(res.data).code == 1) {
  297. this.from.avatar = JSON.parse(res.data).data.fullurl
  298. this.next()
  299. this.resumeDetail()
  300. } else {
  301. this.$u.toast(JSON.parse(res.data).msg)
  302. }
  303. },
  304. fail: (e) => {
  305. console.log(e);
  306. }
  307. })
  308. }
  309. })
  310. },
  311. tochangename() {
  312. uni.navigateTo({
  313. url: "/pagesD/change-name?name=" + JSON.stringify({
  314. name: this.from.name,
  315. }),
  316. events: {
  317. getname: (res) => {
  318. console.log(res);
  319. if (res.name) {
  320. var name = ''
  321. fuxing.forEach(val => {
  322. if (res.name.indexOf(val) > -1) {
  323. name = name[0] + res.name[1] + (this
  324. .from.sex == 'female' ? '女士' : '先生')
  325. }
  326. if (!name) {
  327. name = res.name[0] + (this.from.sex == 'female' ? '女士' : '先生')
  328. }
  329. })
  330. console.log(name);
  331. this.from.name = name
  332. }
  333. // else {
  334. // var name = ''
  335. // fuxing.forEach(val => {
  336. // if (res.virtual_name.indexOf(val) > -1) {
  337. // name = res.virtual_name[0] + res.virtual_name[1] + (this
  338. // .from.sex == 'female' ? '女士' : '先生')
  339. // }
  340. // })
  341. // if (!name) {
  342. // name = res.virtual_name[0] + (this.from.sex == 'female' ? '女士' : '先生')
  343. // }
  344. // this.from.name = name
  345. // }
  346. // this.from.virtual_name = res.virtual_name
  347. }
  348. }
  349. })
  350. },
  351. resumeDetail() {
  352. resumeDetail().then(res => {
  353. this.from.avatar = res.data.avatar //头像
  354. this.from.name = res.data.name
  355. this.from.sex = res.data.sex
  356. this.from.birthday = res.data.birthday
  357. // this.job_name = res.data.job_experience[0].job_name,
  358. this.from.job_role = res.data.job_role //求职身份
  359. this.from.job_time = res.data.job_time //参加工作时间
  360. this.from.mobile = res.data.mobile //手机号
  361. this.city1 = res.data.domicile_province + res.data.domicile_city
  362. this.politics = res.data.political_status_name //政治面貌
  363. this.status = res.data.marital_status_name //婚姻状态
  364. this.from.email = res.data.email //邮箱
  365. this.job = res.data.job_status_name
  366. this.from.job_status_id = res.data.job_status_id
  367. this.from.political_status_id = res.data.political_status_id
  368. this.from.province_id = res.data.province_id
  369. this.from.city_id = res.data.city_id
  370. this.city2 = res.data.province + res.data.city
  371. this.from.domicile_city_id = res.data.domicile_city_id
  372. this.from.domicile_province_id = res.data.domicile_province_id
  373. this.from.marital_status_id = res.data.marital_status_id
  374. this.from.salary_type = res.data.salary_type
  375. this.from.salary = res.data.salary
  376. this.from.salary_month = res.data.salary_month
  377. this.mobile_text = res.data.mobile_text
  378. this.from.wx = res.data.wx
  379. this.current = {
  380. 'student': '学生',
  381. 'employee': '职场人',
  382. } [this.from.job_role]
  383. this.salary_type = {
  384. 'month': '月薪',
  385. 'year': '年薪',
  386. } [this.from.salary_type]
  387. })
  388. },
  389. workBtn() {
  390. this.workShow = true
  391. this.$refs.pickers.innerValue = new Date(1672502400000).getTime()
  392. },
  393. // 获取政治面貌
  394. getpolitics() {
  395. politics().then((res) => {
  396. this.politicslist[0] = res.data
  397. })
  398. },
  399. //婚姻状态
  400. getmarital() {
  401. marital().then((res) => {
  402. this.maritallist[0] = res.data
  403. })
  404. },
  405. //获取求职状态
  406. getJob() {
  407. getjob().then((res) => {
  408. this.joblist[0] = res.data
  409. })
  410. },
  411. //所有地区
  412. AllArea() {
  413. getAllArea().then((res) => {
  414. console.log(res);
  415. this.province = res.data.map(t => {
  416. return {
  417. name: t.name,
  418. id: t.id
  419. }
  420. })
  421. console.log("aaa", this.province);
  422. this.city = res.data.map(t => t.children.map(v => {
  423. return {
  424. name: v.name,
  425. id: v.id
  426. }
  427. }))
  428. this.area = res.data.map(t => t.children.map(v => v.children.map(i => {
  429. return {
  430. name: i.name,
  431. id: i.id
  432. }
  433. })))
  434. //默认显示数据
  435. // this.cityList = [
  436. // this.province.map(res => res.name),
  437. // this.city[0].map(res => res.name),
  438. // this.area[0][0].map(res => res.name)
  439. // ]
  440. let a = []
  441. let b = []
  442. let c = []
  443. this.province.map(res => {
  444. a.push({
  445. name: res.name,
  446. id: res.id,
  447. })
  448. })
  449. this.city[0].map(res => {
  450. b.push({
  451. name: res.name,
  452. id: res.id,
  453. })
  454. })
  455. this.area[0][0].map(res => {
  456. c.push({
  457. name: res.name,
  458. id: res.id,
  459. })
  460. })
  461. this.cityList = [a, b, c]
  462. console.log(33, this.cityList);
  463. if (this.addressData.province && this.addressData.city && this.addressData.area) {
  464. //省索引
  465. let pIdx = this.province.findIndex(v => v.name == this.addressData.province);
  466. //根据省索引设置默认市数据
  467. this.columns[1] = this.city[pIdx].map(res => res.name)
  468. //市索引
  469. let cIdx = this.city[pIdx].findIndex(v => v.name == this.addressData.city);
  470. //根据市索引设置默认区数据
  471. this.columns[2] = this.area[pIdx][cIdx].map(res => res.name)
  472. //区索引
  473. let aIdx = this.area[pIdx][cIdx].findIndex(v => v.name == this.addressData.area);
  474. this.indexs = [pIdx, cIdx, aIdx];
  475. // console.log(pIdx, cIdx, aIdx);
  476. console.log(this.indexs);
  477. }
  478. })
  479. },
  480. changeHandler(e) {
  481. const {
  482. columnIndex, //当前改变值的列下标
  483. value,
  484. values, // values为当前变化列的数组内容
  485. indexs, //当前地区值下标
  486. picker = this.$refs.uPicker
  487. } = e
  488. //columnIndex代表第几列,意思是下标为0的列发生变化
  489. if (columnIndex === 0) {
  490. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  491. return {
  492. name: v.name,
  493. id: v.id
  494. }
  495. }))
  496. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  497. return {
  498. name: v.name,
  499. id: v.id
  500. }
  501. }))
  502. }
  503. if (columnIndex === 1) {
  504. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  505. return {
  506. name: v.name,
  507. id: v.id
  508. }
  509. }))
  510. }
  511. },
  512. changeHandler1(e) {
  513. const {
  514. columnIndex, //当前改变值的列下标
  515. value,
  516. values, // values为当前变化列的数组内容
  517. indexs, //当前地区值下标
  518. picker = this.$refs.uPicker1
  519. } = e
  520. //columnIndex代表第几列,意思是下标为0的列发生变化
  521. if (columnIndex === 0) {
  522. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  523. return {
  524. name: v.name,
  525. id: v.id
  526. }
  527. }))
  528. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  529. return {
  530. name: v.name,
  531. id: v.id
  532. }
  533. }))
  534. }
  535. if (columnIndex === 1) {
  536. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  537. return {
  538. name: v.name,
  539. id: v.id
  540. }
  541. }))
  542. }
  543. },
  544. // 选择器
  545. // 求职身份选择器
  546. sectionChange(index) {
  547. this.current = index;
  548. if (index == 0) {
  549. this.from.job_role = "student"
  550. } else {
  551. this.from.job_role = "employee"
  552. }
  553. },
  554. //性别选择器确认
  555. sexConfirm(e) {
  556. if (e.value[0] == '男') {
  557. this.sexvalue = "男",
  558. this.from.sex = "male"
  559. } else if (e.value[0] == "女") {
  560. this.sexvalue = "女",
  561. this.from.sex = "female"
  562. } else {
  563. this.sexvalue = "保密",
  564. this.from.sex = "secret"
  565. }
  566. this.sexShow = false
  567. },
  568. //点击显示时间选择器
  569. birthdayBtn() {
  570. this.birthdayShow = true
  571. //new Date(this.endDate).getTime()为你需要在选择器上显示的时间戳
  572. this.$refs.picker.innerValue = new Date(946656000000).getTime()
  573. },
  574. //出生日期选择器
  575. async birthdayConfirm(e) {
  576. const timeFormat = uni.$u.timeFormat;
  577. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  578. this.from.birthday = timeValue;
  579. this.birthdayShow = false
  580. },
  581. //政治面貌
  582. politicsConfirm(e) {
  583. this.from.political_status_id = e.value[0].id
  584. this.politics = e.value[0].name
  585. this.politicsShow = false;
  586. },
  587. //婚姻状态
  588. maritalConfirm(e) {
  589. this.from.marital_status_id = e.value[0].id
  590. this.status = e.value[0].name
  591. this.maritalShow = false
  592. },
  593. //参加工作时间
  594. async workConfirm(e) {
  595. const timeFormat = uni.$u.timeFormat;
  596. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd');
  597. this.from.job_time = timeValue;
  598. this.workShow = false
  599. },
  600. //户口地址
  601. cityconfirm(e) {
  602. let a = e.value[0].name + e.value[1].name + e.value[2].name
  603. let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  604. this.from.domicile_city_id = e.value[1].id
  605. this.from.domicile_province_id = e.value[0].id
  606. // this.city1 = e.value.join("")
  607. this.city1 = a
  608. this.cityShow = false
  609. },
  610. cityconfirm1(e) {
  611. let a = e.value[0].name + e.value[1].name + e.value[2].name
  612. let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  613. this.from.city_id = e.value[1].id
  614. this.from.province_id = e.value[0].id
  615. // this.city1 = e.value.join("")
  616. this.city2 = a
  617. this.cityShow1 = false
  618. },
  619. jobConfirm(e) {
  620. this.job = e.value[0].name
  621. this.from.job_status_id = e.value[0].id
  622. this.jobShow = false
  623. },
  624. tishi() {
  625. this.$u.toast('请前往账号设置中修改')
  626. },
  627. //关闭模态框
  628. close() {
  629. this.sexShow = false;
  630. this.birthdayShow = false;
  631. this.politicsShow = false;
  632. this.maritalShow = false
  633. this.workShow = false
  634. this.cityShow = false
  635. this.jobShow = false
  636. },
  637. next() {
  638. if (!this.from.name) {
  639. this.$u.toast("请填写姓名")
  640. return
  641. }
  642. if (!this.from.sex) {
  643. this.$u.toast("请选择性别")
  644. return
  645. }
  646. if (!this.current) {
  647. this.$u.toast("请选择求职身份")
  648. return
  649. }
  650. if (!this.from.birthday) {
  651. this.$u.toast("请选择出生年月")
  652. return
  653. }
  654. if (!this.city2) {
  655. this.$u.toast("请选择当前城市")
  656. return
  657. }
  658. if (!this.city1) {
  659. this.$u.toast("请选择户口所在地")
  660. return
  661. }
  662. // if (!this.job) {
  663. // this.$u.toast("请选择当前求职状态")
  664. // return
  665. // }
  666. if (!this.from.job_time) {
  667. this.$u.toast("请选择参加工作时间")
  668. return
  669. }
  670. // if (!this.$u.test.mobile(this.from.mobile)) {
  671. // this.$u.toast("请输入正确的手机号")
  672. // return
  673. // }
  674. if (this.from.email) {
  675. if (!this.$u.test.email(this.from.email)) {
  676. this.$u.toast("请输入正确的邮箱号")
  677. return
  678. }
  679. }
  680. if (!this.from.wx) {
  681. this.$u.toast("请填写微信号")
  682. return
  683. }
  684. update({
  685. source_id: this.jianliid,
  686. ...this.from
  687. }).then(res => {
  688. if (res.code == 1) {
  689. setTimeout(() => {
  690. this.$u.toast(res.msg)
  691. uni.navigateBack()
  692. }, 800)
  693. }
  694. })
  695. },
  696. return1() {
  697. uni.navigateBack()
  698. },
  699. }
  700. }
  701. </script>
  702. <style lang="scss">
  703. page {
  704. background-color: #F3F3F3;
  705. }
  706. .index-page {
  707. overflow: hidden;
  708. margin-bottom: 60rpx;
  709. .mingpianfont {
  710. height: 50rpx;
  711. font-size: 36rpx;
  712. font-family: PingFangSC-Medium, PingFang SC;
  713. font-weight: 500;
  714. color: #FFFFFF;
  715. line-height: 50rpx;
  716. }
  717. .explain {
  718. margin-top: 24rpx;
  719. width: 528rpx;
  720. height: 36rpx;
  721. font-size: 26rpx;
  722. font-family: PingFangSC-Regular, PingFang SC;
  723. font-weight: 400;
  724. color: #FFFFFF;
  725. line-height: 36rpx;
  726. }
  727. //个人信息
  728. .personal {
  729. width: 750rpx;
  730. background: #FFFFFF;
  731. border-radius: 28rpx 28rpx 0rpx 0rpx;
  732. margin-top: -40rpx;
  733. position: relative;
  734. z-index: 99;
  735. padding: 40rpx 32rpx 0;
  736. margin-bottom: 60rpx;
  737. box-sizing: border-box;
  738. .body-input {
  739. height: 170rpx;
  740. border-bottom: 2rpx solid #F4F4F4;
  741. .input-title {
  742. font-size: 26rpx;
  743. font-family: PingFangSC-Regular, PingFang SC;
  744. font-weight: 400;
  745. color: #666666;
  746. margin-bottom: 20rpx;
  747. margin-top: 30rpx;
  748. box-sizing: border-box;
  749. }
  750. .input-style {
  751. font-size: 32rpx;
  752. font-family: PingFangSC-Regular, PingFang SC;
  753. font-weight: 400;
  754. color: #CACACA;
  755. }
  756. }
  757. .button {
  758. width: 686rpx;
  759. height: 88rpx !important;
  760. background: #0C66C2;
  761. border-radius: 12rpx;
  762. font-size: 32rpx;
  763. font-family: PingFangSC-Medium, PingFang SC;
  764. font-weight: 500;
  765. color: #FFFFFF;
  766. line-height: 88rpx;
  767. margin: 10rpx 0 0rpx 0;
  768. display: flex;
  769. justify-content: center;
  770. }
  771. }
  772. .index-item {
  773. // width: 702rpx;
  774. // background: #FFFFFF;
  775. // border-radius: 20rpx;
  776. // margin: 20rpx auto;
  777. // padding: 0 20rpx 24rpx 10rpx;
  778. .item-down {
  779. text:first-child {
  780. font-size: 22rpx;
  781. font-family: SFPro-Regular, SFPro;
  782. font-weight: 400;
  783. color: #666666;
  784. }
  785. text:last-child {
  786. font-size: 22rpx;
  787. font-family: PingFangSC-Regular, PingFang SC;
  788. font-weight: 400;
  789. color: #666666;
  790. }
  791. }
  792. .item-gongsi {
  793. margin-bottom: 16rpx;
  794. .text2 {
  795. font-size: 24rpx;
  796. font-family: SFPro-Regular, SFPro;
  797. font-weight: 400;
  798. color: #666666;
  799. }
  800. .logo {
  801. width: 42rpx;
  802. height: 42rpx;
  803. border-radius: 10rpx;
  804. margin-right: 16rpx;
  805. }
  806. .text1 {
  807. max-width: 192rpx;
  808. font-size: 24rpx;
  809. font-family: PingFangSC-Regular, PingFang SC;
  810. font-weight: 400;
  811. color: #444444;
  812. margin-right: 12rpx;
  813. }
  814. }
  815. .item-label {
  816. margin-bottom: 20rpx;
  817. text {
  818. margin-right: 16rpx;
  819. line-height: 46rpx;
  820. background: #F7F7F7;
  821. border-radius: 4rpx;
  822. padding: 0 14rpx;
  823. font-size: 24rpx;
  824. font-family: PingFangSC-Regular, PingFang SC;
  825. font-weight: 400;
  826. color: #5F5F5F;
  827. }
  828. }
  829. .item-top {
  830. height: 88rpx;
  831. .text1 {
  832. font-size: 32rpx;
  833. font-family: PingFangSC-Medium, PingFang SC;
  834. font-weight: 500;
  835. color: #222222;
  836. margin-right: 16rpx;
  837. }
  838. .text2 {
  839. width: 50rpx;
  840. line-height: 32rpx;
  841. background: rgba(255, 83, 53, 0.1);
  842. border-radius: 4rpx;
  843. text-align: center;
  844. font-size: 20rpx;
  845. font-family: PingFangSC-Regular, PingFang SC;
  846. font-weight: 400;
  847. color: #FF5335;
  848. margin-right: 12rpx;
  849. }
  850. .text3 {
  851. width: 90rpx;
  852. line-height: 32rpx;
  853. background: #FFF2E8;
  854. border-radius: 4rpx;
  855. text-align: center;
  856. font-size: 20rpx;
  857. font-family: PingFangSC-Regular, PingFang SC;
  858. font-weight: 400;
  859. color: #FF8620;
  860. margin-right: 12rpx;
  861. }
  862. .text4 {
  863. line-height: 32rpx;
  864. background: #E6EFF8;
  865. border-radius: 4rpx;
  866. padding: 0 4rpx;
  867. text-align: center;
  868. font-size: 20rpx;
  869. font-family: SFPro-Regular, SFPro;
  870. font-weight: 400;
  871. color: #0C66C2;
  872. }
  873. .text5 {
  874. font-size: 32rpx;
  875. font-family: JDZhengHT-Regular, JDZhengHT;
  876. font-weight: 400;
  877. color: #0C66C2;
  878. }
  879. }
  880. }
  881. .index-navbar {
  882. position: sticky;
  883. top: 0;
  884. left: 0;
  885. width: 750rpx;
  886. z-index: 10;
  887. .header-down {
  888. height: 92rpx;
  889. padding: 20rpx 24rpx;
  890. box-sizing: border-box;
  891. .font {
  892. font-size: 40rpx;
  893. font-family: PingFangSC-Medium, PingFang SC;
  894. font-weight: 500;
  895. color: #222222;
  896. }
  897. .right-item {
  898. padding: 0 16rpx;
  899. height: 52rpx;
  900. background: #F3F3F3;
  901. border-radius: 4rpx;
  902. margin-left: 20rpx;
  903. .text {
  904. margin-right: 4rpx;
  905. font-size: 26rpx;
  906. font-family: PingFangSC-Regular, PingFang SC;
  907. font-weight: 400;
  908. color: #666666;
  909. }
  910. }
  911. .down-left {
  912. .text {
  913. margin-right: 4rpx;
  914. font-size: 26rpx;
  915. font-family: PingFangSC-Medium, PingFang SC;
  916. font-weight: 500;
  917. color: #222222;
  918. }
  919. }
  920. }
  921. .index-bg {
  922. position: absolute;
  923. top: 0;
  924. left: 0;
  925. z-index: -1;
  926. width: 750rpx;
  927. height: 392rpx;
  928. }
  929. }
  930. .index-header {
  931. flex: 1;
  932. padding: 0 32rpx;
  933. height: 50rpx;
  934. .index-search {
  935. width: 200rpx;
  936. height: 64rpx;
  937. background: #FFFFFF;
  938. border-radius: 20rpx;
  939. padding: 0 28rpx;
  940. .text1 {
  941. font-size: 24rpx;
  942. font-family: PingFangSC-Regular, PingFang SC;
  943. font-weight: 400;
  944. color: #999999;
  945. margin-left: 16rpx;
  946. }
  947. }
  948. .index-tabs {
  949. text:first-child {
  950. font-size: 36rpx;
  951. font-family: PingFangSC-Medium, PingFang SC;
  952. font-weight: 500;
  953. color: #222222;
  954. }
  955. text:last-child {
  956. width: 76rpx;
  957. height: 12rpx;
  958. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  959. margin-top: -20rpx;
  960. border-radius: 100rpx;
  961. }
  962. }
  963. }
  964. }
  965. ::v-deep .u-navbar__content__left {
  966. padding: 0 !important;
  967. }
  968. ::v-deep .u-subsection {
  969. width: 312rpx !important;
  970. }
  971. ::v-deep .u-input--square {
  972. background-color: #fff !important;
  973. }
  974. </style>