userinfo.vue 28 KB

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