Project .vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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>
  8. <view id="height" class="index-header u-flex u-row-between "
  9. style="position: relative; " slot="left">
  10. <u-icon @click='return1' name="arrow-left" color="#fff" size="28"></u-icon>
  11. </view>
  12. </u-navbar>
  13. <view class="header-down " :style="{marginTop:height+'rpx'}"
  14. style="padding: 28rpx 0 0 32rpx;box-sizing: border-box;">
  15. <view class="mingpianfont">
  16. 项目经历
  17. </view>
  18. <view class="explain">
  19. <text>丰富的项目经历更能得到HR和猎头的青睐</text>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. <!-- 个人信息 -->
  25. <view class="personal">
  26. <view class="body-input u-flex-col u-row-center ">
  27. <text class="input-title">项目名称</text>
  28. <u--input customStyle="padding:0 !important" type="text" placeholder="请填写您的公司名称" border
  29. placeholderClass='input-style' ></u--input>
  30. </view>
  31. <view class="body-input u-flex-col u-row-center" >
  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;" ></u--input>
  36. </view>
  37. <view class="body-input u-flex-col u-row-center" >
  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;" ></u--input>
  42. </view>
  43. <view class="body-input u-flex-col u-row-center">
  44. <text class="input-title">项目角色</text>
  45. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  46. placeholder="请选择您的项目角色" border placeholderClass='input-style' suffixIcon="arrow-right"
  47. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"></u--input>
  48. </view>
  49. <view class="body-input u-flex-col u-row-center" @click="todcp">
  50. <text class="input-title">项目描述</text>
  51. <u--input :disabled="true" disabledColor="#fff" customStyle="padding:0 !important" type="text"
  52. placeholder="请填写" border placeholderClass='input-style' suffixIcon="arrow-right"
  53. suffixIconStyle="font-size: 32rpx;font-weight: 400;color: #CACACA;"
  54. ></u--input>
  55. </view>
  56. <view class="body-input u-flex-col u-row-center " style="height: 250rpx;">
  57. </view>
  58. <view class="button" @click="next">
  59. 下一步
  60. </view>
  61. </view>
  62. <!-- 选择器 -->
  63. <u-picker title="性别" :show="sexShow" @confirm="sexConfirm" :columns="sexdata" @cancel='close()'></u-picker>
  64. <u-datetime-picker title="出生日期" :minDate="minDate" @confirm="birthdayConfirm" :show="birthdayShow" mode="date"
  65. @cancel='close()'></u-datetime-picker>
  66. </view>
  67. </template>
  68. <script>
  69. import {
  70. } from "@/units/inquire.js"
  71. export default {
  72. data() {
  73. return {
  74. height:''
  75. }
  76. },
  77. onLoad() {
  78. this.getHeight()
  79. this.minDate = Number(new Date('1900-01-01'));
  80. },
  81. methods: {
  82. getHeight() {
  83. const query = uni.createSelectorQuery().in(this);
  84. query.select('#height').boundingClientRect(data => {
  85. this.height = (data.height) * 2
  86. }).exec();
  87. },
  88. todcp(){
  89. uni.navigateTo({
  90. url:'../pagesA/description'
  91. })
  92. },
  93. next(){
  94. uni.navigateTo({
  95. url:'../pagesA/teach'
  96. })
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss">
  102. page {
  103. background-color: #F3F3F3;
  104. }
  105. .index-page {
  106. overflow: hidden;
  107. margin-bottom: 60rpx;
  108. .mingpianfont {
  109. height: 50rpx;
  110. font-size: 36rpx;
  111. font-family: PingFangSC-Medium, PingFang SC;
  112. font-weight: 500;
  113. color: #FFFFFF;
  114. line-height: 50rpx;
  115. }
  116. .explain {
  117. margin-top: 24rpx;
  118. width: 528rpx;
  119. height: 36rpx;
  120. font-size: 26rpx;
  121. font-family: PingFangSC-Regular, PingFang SC;
  122. font-weight: 400;
  123. color: #FFFFFF;
  124. line-height: 36rpx;
  125. }
  126. //个人信息
  127. .personal {
  128. width: 750rpx;
  129. background: #FFFFFF;
  130. border-radius: 28rpx 28rpx 0rpx 0rpx;
  131. margin-top: -40rpx;
  132. position: relative;
  133. z-index: 99;
  134. padding: 40rpx 32rpx 0;
  135. margin-bottom: 60rpx;
  136. box-sizing: border-box;
  137. .body-input {
  138. height: 170rpx;
  139. border-bottom: 2rpx solid #F4F4F4;
  140. .input-title {
  141. font-size: 26rpx;
  142. font-family: PingFangSC-Regular, PingFang SC;
  143. font-weight: 400;
  144. color: #888888;
  145. margin-bottom: 20rpx;
  146. margin-top: 30rpx;
  147. box-sizing: border-box;
  148. }
  149. .input-style {
  150. font-size: 32rpx;
  151. font-family: PingFangSC-Regular, PingFang SC;
  152. font-weight: 400;
  153. color: #CACACA;
  154. }
  155. }
  156. .button {
  157. width: 686rpx;
  158. height: 88rpx !important;
  159. background: #0C66C2;
  160. border-radius: 12rpx;
  161. font-size: 32rpx;
  162. font-family: PingFangSC-Medium, PingFang SC;
  163. font-weight: 500;
  164. color: #FFFFFF;
  165. line-height: 88rpx;
  166. margin: 10rpx 0 0rpx 0;
  167. display: flex;
  168. justify-content: center;
  169. // position: fixed;
  170. // bottom: 60rpx;
  171. }
  172. }
  173. .index-item {
  174. // width: 702rpx;
  175. // background: #FFFFFF;
  176. // border-radius: 20rpx;
  177. // margin: 20rpx auto;
  178. // padding: 0 20rpx 24rpx 10rpx;
  179. .item-down {
  180. text:first-child {
  181. font-size: 22rpx;
  182. font-family: SFPro-Regular, SFPro;
  183. font-weight: 400;
  184. color: #666666;
  185. }
  186. text:last-child {
  187. font-size: 22rpx;
  188. font-family: PingFangSC-Regular, PingFang SC;
  189. font-weight: 400;
  190. color: #666666;
  191. }
  192. }
  193. .item-gongsi {
  194. margin-bottom: 16rpx;
  195. .text2 {
  196. font-size: 24rpx;
  197. font-family: SFPro-Regular, SFPro;
  198. font-weight: 400;
  199. color: #666666;
  200. }
  201. .logo {
  202. width: 42rpx;
  203. height: 42rpx;
  204. border-radius: 10rpx;
  205. margin-right: 16rpx;
  206. }
  207. .text1 {
  208. max-width: 192rpx;
  209. font-size: 24rpx;
  210. font-family: PingFangSC-Regular, PingFang SC;
  211. font-weight: 400;
  212. color: #444444;
  213. margin-right: 12rpx;
  214. }
  215. }
  216. .item-label {
  217. margin-bottom: 20rpx;
  218. text {
  219. margin-right: 16rpx;
  220. line-height: 46rpx;
  221. background: #F7F7F7;
  222. border-radius: 4rpx;
  223. padding: 0 14rpx;
  224. font-size: 24rpx;
  225. font-family: PingFangSC-Regular, PingFang SC;
  226. font-weight: 400;
  227. color: #5F5F5F;
  228. }
  229. }
  230. .item-top {
  231. height: 88rpx;
  232. .text1 {
  233. font-size: 32rpx;
  234. font-family: PingFangSC-Medium, PingFang SC;
  235. font-weight: 500;
  236. color: #222222;
  237. margin-right: 16rpx;
  238. }
  239. .text2 {
  240. width: 50rpx;
  241. line-height: 32rpx;
  242. background: rgba(255, 83, 53, 0.1);
  243. border-radius: 4rpx;
  244. text-align: center;
  245. font-size: 20rpx;
  246. font-family: PingFangSC-Regular, PingFang SC;
  247. font-weight: 400;
  248. color: #FF5335;
  249. margin-right: 12rpx;
  250. }
  251. .text3 {
  252. width: 90rpx;
  253. line-height: 32rpx;
  254. background: #FFF2E8;
  255. border-radius: 4rpx;
  256. text-align: center;
  257. font-size: 20rpx;
  258. font-family: PingFangSC-Regular, PingFang SC;
  259. font-weight: 400;
  260. color: #FF8620;
  261. margin-right: 12rpx;
  262. }
  263. .text4 {
  264. line-height: 32rpx;
  265. background: #E6EFF8;
  266. border-radius: 4rpx;
  267. padding: 0 4rpx;
  268. text-align: center;
  269. font-size: 20rpx;
  270. font-family: SFPro-Regular, SFPro;
  271. font-weight: 400;
  272. color: #0C66C2;
  273. }
  274. .text5 {
  275. font-size: 32rpx;
  276. font-family: JDZhengHT-Regular, JDZhengHT;
  277. font-weight: 400;
  278. color: #0C66C2;
  279. }
  280. }
  281. }
  282. .index-navbar {
  283. position: sticky;
  284. top: 0;
  285. left: 0;
  286. width: 750rpx;
  287. z-index: 10;
  288. .header-down {
  289. height: 92rpx;
  290. padding: 20rpx 24rpx;
  291. box-sizing: border-box;
  292. .font {
  293. font-size: 40rpx;
  294. font-family: PingFangSC-Medium, PingFang SC;
  295. font-weight: 500;
  296. color: #222222;
  297. }
  298. .right-item {
  299. padding: 0 16rpx;
  300. height: 52rpx;
  301. background: #F3F3F3;
  302. border-radius: 4rpx;
  303. margin-left: 20rpx;
  304. .text {
  305. margin-right: 4rpx;
  306. font-size: 26rpx;
  307. font-family: PingFangSC-Regular, PingFang SC;
  308. font-weight: 400;
  309. color: #666666;
  310. }
  311. }
  312. .down-left {
  313. .text {
  314. margin-right: 4rpx;
  315. font-size: 26rpx;
  316. font-family: PingFangSC-Medium, PingFang SC;
  317. font-weight: 500;
  318. color: #222222;
  319. }
  320. }
  321. }
  322. .index-bg {
  323. position: absolute;
  324. top: 0;
  325. left: 0;
  326. z-index: -1;
  327. width: 750rpx;
  328. height: 392rpx;
  329. }
  330. }
  331. .index-header {
  332. flex: 1;
  333. padding: 0 32rpx;
  334. height: 50rpx;
  335. .index-search {
  336. width: 200rpx;
  337. height: 64rpx;
  338. background: #FFFFFF;
  339. border-radius: 20rpx;
  340. padding: 0 28rpx;
  341. .text1 {
  342. font-size: 24rpx;
  343. font-family: PingFangSC-Regular, PingFang SC;
  344. font-weight: 400;
  345. color: #999999;
  346. margin-left: 16rpx;
  347. }
  348. }
  349. .index-tabs {
  350. text:first-child {
  351. font-size: 36rpx;
  352. font-family: PingFangSC-Medium, PingFang SC;
  353. font-weight: 500;
  354. color: #222222;
  355. }
  356. text:last-child {
  357. width: 76rpx;
  358. height: 12rpx;
  359. background: linear-gradient(270deg, #208EFF 0%, rgba(28, 159, 227, 0) 100%);
  360. margin-top: -20rpx;
  361. border-radius: 100rpx;
  362. }
  363. }
  364. }
  365. }
  366. ::v-deep .u-navbar__content__left {
  367. padding: 0 !important;
  368. }
  369. ::v-deep .u-subsection {
  370. width: 312rpx !important;
  371. }
  372. </style>