personal-infor.vue 28 KB

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