jianlichange.vue 3.8 KB

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