jianlichange.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <view>
  3. <u-popup :show="show" :round='16' mode="bottom" @close="close" @open="open">
  4. <view class="" style="padding: 0 28rpx;box-sizing: border-box;">
  5. <view class="topFont">选择简历完善方式</view>
  6. <view class="">
  7. <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
  8. <view :class="[radiovalue1==1?'border':'border2']" class=" u-flex u-row-between">
  9. <view class="">
  10. <view class="font1">手动完善简历</view>
  11. <view class="font2">手动编辑完善简历信息</view>
  12. </view>
  13. <view class="">
  14. <u-radio name='1'>
  15. </u-radio>
  16. </view>
  17. </view>
  18. <view :class="[radiovalue1==1?'border2':'border']" class=" u-flex u-row-between" style="margin-top: 20rpx;">
  19. <view class="">
  20. <view class="font1">导入简历识别</view>
  21. <view class="font2">一键上传文件,快速导入识别</view>
  22. </view>
  23. <view class="">
  24. <u-radio name='2'>
  25. </u-radio>
  26. </view>
  27. </view>
  28. </u-radio-group>
  29. <view class="u-flex " style="margin-top: 54rpx;margin-bottom: 30rpx;">
  30. <view class="btn1" style="padding: 22rpx 48rpx;box-sizing: border-box;">暂不找工作</view>
  31. <view class="btn2" style="padding: 22rpx 154rpx;box-sizing: border-box;" @click="tonext">下一步
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </u-popup>
  37. </view>
  38. </template>
  39. <script setup>
  40. export default {
  41. data() {
  42. return {
  43. show: true,
  44. radiovalue1: '1'
  45. }
  46. },
  47. methods: {
  48. open() {
  49. // console.log('open');
  50. },
  51. close() {
  52. this.show = false
  53. // console.log('close');
  54. },
  55. //单选框
  56. groupChange(n) {
  57. console.log('groupChange', n);
  58. this.radiovalue1=n
  59. },
  60. radioChange(n) {
  61. console.log('radioChange', n);
  62. },
  63. //下一步
  64. tonext() {
  65. uni.navigateTo({
  66. url:'/pagesA/jianli'
  67. })
  68. }
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. .border {
  74. width: 694rpx;
  75. height: 160rpx;
  76. // background: #F7F9FD;
  77. border-radius: 16rpx;
  78. border: 2rpx solid #0C66C2;
  79. padding: 38rpx 0 28rpx 24rpx;
  80. box-sizing: border-box;
  81. .font1 {
  82. font-size: 32rpx;
  83. font-family: PingFangSC-Medium, PingFang SC;
  84. font-weight: 500;
  85. color: #0C66C2;
  86. line-height: 44rpx;
  87. }
  88. .font2 {
  89. font-size: 24rpx;
  90. font-family: PingFangSC-Regular, PingFang SC;
  91. font-weight: 400;
  92. color: #1A82ED;
  93. line-height: 34rpx;
  94. margin-top: 16rpx;
  95. }
  96. }
  97. .border2 {
  98. background: #FFFFFF;
  99. border-radius: 16rpx;
  100. border: 2rpx solid #D7D7D7;
  101. width: 694rpx;
  102. height: 160rpx;
  103. padding: 38rpx 0 28rpx 24rpx;
  104. box-sizing: border-box;
  105. .font1 {
  106. font-size: 32rpx;
  107. font-family: PingFangSC-Medium, PingFang SC;
  108. font-weight: 500;
  109. color: #444;
  110. line-height: 44rpx;
  111. }
  112. .font2 {
  113. font-size: 24rpx;
  114. font-family: PingFangSC-Regular, PingFang SC;
  115. font-weight: 400;
  116. color: #666;
  117. line-height: 34rpx;
  118. margin-top: 16rpx;
  119. }
  120. }
  121. .btn1 {
  122. width: 256rpx;
  123. height: 88rpx;
  124. border-radius: 12rpx;
  125. border: 2rpx solid #BFBFBF;
  126. font-size: 32rpx;
  127. font-family: PingFangSC-Regular, PingFang SC;
  128. font-weight: 400;
  129. color: #444444;
  130. }
  131. .btn2 {
  132. width: 406rpx;
  133. height: 88rpx;
  134. background: #0C66C2;
  135. border-radius: 12rpx;
  136. font-size: 32rpx;
  137. font-family: PingFangSC-Medium, PingFang SC;
  138. font-weight: 500;
  139. color: #FFFFFF;
  140. margin-left: 24rpx;
  141. }
  142. .topFont {
  143. font-size: 36rpx;
  144. font-family: PingFangSC-Medium, PingFang SC;
  145. font-weight: 500;
  146. color: #222222;
  147. line-height: 50rpx;
  148. margin: 44rpx 0 48rpx 0;
  149. }
  150. </style>