jianli.vue 24 KB

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