yinsi.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view>
  3. <view class="page">
  4. <text class="title">以下权限选择后方可生效</text>
  5. <view class="">
  6. <u-checkbox-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="0" @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. <!-- @change="radioChange" -->
  21. <u-checkbox :customStyle="{marginBottom: '8px'}" :name="1">
  22. </u-checkbox>
  23. </view>
  24. </u-checkbox-group>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {
  31. private_setting,
  32. index
  33. } from "@/units/inquire.js"
  34. export default {
  35. data() {
  36. return {
  37. radiovalue1: 0,
  38. }
  39. },
  40. onLoad() {
  41. this.index()
  42. },
  43. methods: {
  44. index() {
  45. index().then(res=>{
  46. this.radiovalue1 = res.data.group_info.is_resume_show
  47. console.log(this.radiovalue1);
  48. })
  49. },
  50. groupChange(n) {
  51. this.radiovalue1 = n
  52. private_setting({
  53. private_setting: this.radiovalue1 == 0 ? true : false
  54. }).then(res => {
  55. if (res.code == 1) {
  56. this.$u.toast("修改成功")
  57. }
  58. })
  59. },
  60. // radioChange(n) {
  61. // console.log('radioChange', n);
  62. // }
  63. }
  64. }
  65. </script>
  66. <style scoped>
  67. .page {
  68. padding: 36rpx 32rpx 0;
  69. height: 100vh;
  70. box-sizing: border-box;
  71. }
  72. .title {
  73. font-size: 32rpx;
  74. font-family: PingFangSC-Regular, PingFang SC;
  75. font-weight: 400;
  76. color: #222222;
  77. }
  78. .mar {
  79. margin-top: 20rpx;
  80. font-size: 24rpx;
  81. font-family: PingFangSC-Regular, PingFang SC;
  82. font-weight: 400;
  83. color: #1A1C24;
  84. display: block;
  85. }
  86. </style>