myJobInformation.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <template>
  2. <view>
  3. <u-navbar back-text="求职信息" back-icon-size="28" back-icon-color="#ffffff"
  4. :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="main">
  6. <!-- 个人信息 -->
  7. <view class="person-infos">
  8. <view class="infos">
  9. <view class="name">
  10. 许慕
  11. </view>
  12. <view class="gender-age">
  13. <text class="text">女</text>|
  14. <text class="text">28</text>
  15. </view>
  16. </view>
  17. <view class="photo">
  18. <u-avatar :src="src" size="120" mode="circle"></u-avatar>
  19. <img class="camera" src="../../../assets/img/riFill-camera-fill Copy@1x.png" alt="">
  20. </view>
  21. </view>
  22. <u-select v-model="show" mode="single-column" :list="list" @confirm="confirm"></u-select>
  23. <!-- 信息填写 -->
  24. <view class="information-group">
  25. <!-- 联系电话 -->
  26. <view class="item">
  27. <view class="title">
  28. 联系电话
  29. </view>
  30. <view class="input">
  31. <input v-model="tel" type="text" placeholder="">
  32. </view>
  33. </view>
  34. <!-- 意向行业 -->
  35. <view class="item">
  36. <view class="title">
  37. 意向行业
  38. </view>
  39. <view class="input">
  40. <input type="text" placeholder="请选择意向行业">
  41. </view>
  42. <view class="icon">
  43. <u-icon name="arrow-right" color="#999999"></u-icon>
  44. </view>
  45. </view>
  46. <!--意向岗位 -->
  47. <view class="item">
  48. <view class="title">
  49. 意向岗位
  50. </view>
  51. <view class="input">
  52. <input type="text" placeholder="请填写想找的工作岗位">
  53. </view>
  54. </view>
  55. <!-- 期望薪资 -->
  56. <view class="item">
  57. <view class="title">
  58. 期望薪资
  59. </view>
  60. <view class="input">
  61. <input type="text" placeholder="请填写期望薪资">
  62. </view>
  63. <view class="unit">
  64. 元/天
  65. </view>
  66. </view>
  67. <!-- 结算方式 -->
  68. <view class="item">
  69. <view class="title">
  70. 结算方式
  71. </view>
  72. <view class="input">
  73. <input type="text" placeholder="请选择结算方式">
  74. </view>
  75. <view class="icon">
  76. <u-icon name="arrow-right" color="#999999"></u-icon>
  77. </view>
  78. </view>
  79. <!-- 工作经验 -->
  80. <view class="item">
  81. <view class="title">
  82. 工作经验
  83. </view>
  84. <view class="input">
  85. <input type="text" placeholder="请选择工作经验">
  86. </view>
  87. <view class="icon">
  88. <u-icon name="arrow-right" color="#999999"></u-icon>
  89. </view>
  90. </view>
  91. <!-- 学历 -->
  92. <view class="item">
  93. <view class="title">
  94. 学历
  95. </view>
  96. <view class="input">
  97. <input type="text" placeholder="请选择学历">
  98. </view>
  99. <view class="icon">
  100. <u-icon name="arrow-right" color="#999999"></u-icon>
  101. </view>
  102. </view>
  103. </view>
  104. </view>
  105. <view class="service-description">
  106. <view class="title">
  107. <text>*</text>服务描述
  108. </view>
  109. <textarea class="textarea"placeholder="请描述您能提供哪些服务,或者是您擅长的,有足浴您更快、更准确的找到工作。"></textarea>
  110. </view>
  111. <button class="save" type="default">保存</button>
  112. </view>
  113. </template>
  114. <script>
  115. export default {
  116. data() {
  117. return {
  118. src: 'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fci.xiaohongshu.com%2F8de99fdd-9eb8-705a-df1a-4af35b8366b3%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fci.xiaohongshu.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1691222390&t=e34c33e89b90bdb21dd8320f835d3bd8',
  119. tel: '15011110000',
  120. show: false,
  121. list: []
  122. }
  123. },
  124. methods: {
  125. confirm() {
  126. this.show = false;
  127. }
  128. }
  129. }
  130. </script>
  131. <style>
  132. page {
  133. background: #F0F0F2;
  134. padding-bottom: 150px;
  135. }
  136. </style>
  137. <style lang="scss" scoped>
  138. .main {
  139. margin: 24rpx 32rpx;
  140. background-color: #fff;
  141. padding: 40rpx 32rpx 0;
  142. border-radius: 12px;
  143. .person-infos {
  144. display: flex;
  145. justify-content: space-between;
  146. .infos {
  147. .name {
  148. color: rgba(51, 51, 51, 1);
  149. font-size: 20px;
  150. font-family: 'PingFangSC-medium';
  151. }
  152. .gender-age {
  153. color: rgba(119, 119, 119, 1);
  154. margin-top: 8rpx;
  155. .text {
  156. margin: 0 8rpx;
  157. }
  158. .text:nth-of-type(1) {
  159. margin-left: 0;
  160. }
  161. }
  162. }
  163. .photo {
  164. position: relative;
  165. img {
  166. width: 60px;
  167. height: 60px;
  168. }
  169. .camera {
  170. width: 48rpx;
  171. height: 48rpx;
  172. position: absolute;
  173. top: 36rpx;
  174. left: 36rpx;
  175. z-index: 999;
  176. }
  177. }
  178. }
  179. .information-group {
  180. .item {
  181. display: flex;
  182. align-items: center;
  183. padding: 24rpx 0;
  184. border-bottom: 1px solid #f1f1f1;
  185. .title {
  186. color: rgba(51, 51, 51, 1);
  187. font-size: 32rpx;
  188. width: 140rpx;
  189. }
  190. .input {
  191. width: 360rpx;
  192. margin-left: 24rpx;
  193. /deep/.uni-input-input {
  194. color: rgba(51, 51, 51, 1);
  195. }
  196. }
  197. .icon{
  198. margin-left: auto;
  199. }
  200. .unit{
  201. margin-left: auto;
  202. color: #333333;
  203. font-size: 24rpx;
  204. }
  205. }
  206. }
  207. }
  208. // 服务描述
  209. .service-description{
  210. margin: 24rpx 32rpx;
  211. background-color: #fff;
  212. border-radius: 12px;
  213. padding: 24rpx 32rpx;
  214. .title{
  215. color: #333333;
  216. font-size: 18px;
  217. font-family: 'PingFangSC-medium';
  218. }
  219. text{
  220. color: #FF0000;
  221. }
  222. .textarea{
  223. margin-top:24rpx;
  224. line-height:40rpx;
  225. width: 100%;
  226. height:240rpx;
  227. }
  228. }
  229. .save{
  230. background-color: rgba(34, 149, 255, 1);
  231. color: rgba(241, 241, 241, 1);
  232. font-size: 18px;
  233. height: 96rpx;
  234. line-height: 96rpx;
  235. border-radius: 50px;
  236. position: fixed;
  237. left: 32rpx;
  238. right: 32rpx;
  239. bottom: 20rpx;
  240. z-index: 999;
  241. }
  242. </style>