yinsi.vue 1.9 KB

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