jianlichange.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. uni.setStorageSync('nowork',1)
  58. },
  59. close() {
  60. this.show = false
  61. // console.log('close');
  62. },
  63. //单选框
  64. groupChange(n) {
  65. console.log(n);
  66. this.radiovalue1 = n
  67. },
  68. radioChange(n) {
  69. console.log('radioChange', n);
  70. },
  71. //下一步
  72. tonext() {
  73. uni.setStorageSync("radiovalue1", this.radiovalue1)
  74. if (this.radiovalue1 == 1) {
  75. uni.navigateTo({
  76. url: '/pagesA/jianli?radiovalue1=' + this.radiovalue1
  77. })
  78. } else {
  79. uni.navigateTo({
  80. url: "/pagesA/upload"
  81. })
  82. }
  83. }
  84. }
  85. }
  86. </script>
  87. <style lang="scss">
  88. .border {
  89. width: 694rpx;
  90. height: 160rpx;
  91. // background: #F7F9FD;
  92. border-radius: 16rpx;
  93. border: 2rpx solid #0C66C2;
  94. padding: 38rpx 0 28rpx 24rpx;
  95. box-sizing: border-box;
  96. .font1 {
  97. font-size: 32rpx;
  98. font-family: PingFangSC-Medium, PingFang SC;
  99. font-weight: 500;
  100. color: #0C66C2;
  101. line-height: 44rpx;
  102. }
  103. .font2 {
  104. font-size: 24rpx;
  105. font-family: PingFangSC-Regular, PingFang SC;
  106. font-weight: 400;
  107. color: #1A82ED;
  108. line-height: 34rpx;
  109. margin-top: 16rpx;
  110. }
  111. }
  112. .border2 {
  113. background: #FFFFFF;
  114. border-radius: 16rpx;
  115. border: 2rpx solid #D7D7D7;
  116. width: 694rpx;
  117. height: 160rpx;
  118. padding: 38rpx 0 28rpx 24rpx;
  119. box-sizing: border-box;
  120. .font1 {
  121. font-size: 32rpx;
  122. font-family: PingFangSC-Medium, PingFang SC;
  123. font-weight: 500;
  124. color: #444;
  125. line-height: 44rpx;
  126. }
  127. .font2 {
  128. font-size: 24rpx;
  129. font-family: PingFangSC-Regular, PingFang SC;
  130. font-weight: 400;
  131. color: #666;
  132. line-height: 34rpx;
  133. margin-top: 16rpx;
  134. }
  135. }
  136. .btn1 {
  137. width: 256rpx;
  138. height: 88rpx;
  139. border-radius: 12rpx;
  140. border: 2rpx solid #BFBFBF;
  141. font-size: 30rpx;
  142. font-family: PingFangSC-Regular, PingFang SC;
  143. font-weight: 400;
  144. color: #444444;
  145. text-align: center;
  146. }
  147. .btn2 {
  148. width: 406rpx;
  149. height: 88rpx;
  150. background: #0C66C2;
  151. border-radius: 12rpx;
  152. font-size: 32rpx;
  153. font-family: PingFangSC-Medium, PingFang SC;
  154. font-weight: 500;
  155. color: #FFFFFF;
  156. margin-left: 24rpx;
  157. }
  158. .topFont {
  159. font-size: 36rpx;
  160. font-family: PingFangSC-Medium, PingFang SC;
  161. font-weight: 500;
  162. color: #222222;
  163. line-height: 50rpx;
  164. margin: 44rpx 0 48rpx 0;
  165. }
  166. </style>