yinsi.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <view>
  3. <view class="page">
  4. <text class="title">以下权限选择后方可生效</text>
  5. <view class="">
  6. <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
  7. <view class="u-flex u-row-between">
  8. <view class="" style="margin-top: 48rpx;">
  9. <view class="title">简历及联系方式</view>
  10. <text class="mar">开启后,项目经理可查看您的简历及联系方式</text>
  11. </view>
  12. <u-radio :customStyle="{marginBottom: '8px'}" :name="1" @change="radioChange">
  13. </u-radio>
  14. </view>
  15. <view class="u-flex u-row-between" style="margin-top:20rpx ;border-top: 2rpx solid #F0F0F0;">
  16. <view class="">
  17. <view class="title" style="margin-top: 40rpx;">仅简历</view>
  18. <text class="mar">开启后,对猎头隐藏联系方式,猎头看不到</text>
  19. </view>
  20. <u-radio :customStyle="{marginBottom: '8px'}" :name="2" @change="radioChange">
  21. </u-radio>
  22. </view>
  23. </u-radio-group>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. radiovalue1: 1,
  33. }
  34. },
  35. onLoad() {
  36. },
  37. methods: {
  38. groupChange(n) {
  39. console.log('groupChange', n);
  40. },
  41. radioChange(n) {
  42. console.log('radioChange', n);
  43. }
  44. }
  45. }
  46. </script>
  47. <style scoped>
  48. .page {
  49. padding: 36rpx 32rpx 0;
  50. height: 100vh;
  51. box-sizing: border-box;
  52. }
  53. .title {
  54. font-size: 32rpx;
  55. font-family: PingFangSC-Regular, PingFang SC;
  56. font-weight: 400;
  57. color: #222222;
  58. }
  59. .mar{
  60. margin-top: 20rpx;
  61. font-size: 24rpx;
  62. font-family: PingFangSC-Regular, PingFang SC;
  63. font-weight: 400;
  64. color: #1A1C24;
  65. display: block;
  66. }
  67. </style>