yinsi.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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" style="margin-top:20rpx ;border-top: 2rpx solid #F0F0F0;">
  8. <view class="">
  9. <view class="title" style="margin-top: 40rpx;">联系方式</view>
  10. <text class="mar">开启后,猎头可查看您的联系方式</text>
  11. </view>
  12. <!-- @change="radioChange" -->
  13. <u-checkbox :customStyle="{marginBottom: '8px'}" :name="1">
  14. </u-checkbox>
  15. </view>
  16. </u-checkbox-group>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import {
  23. private_setting,
  24. index
  25. } from "@/units/inquire.js"
  26. export default {
  27. data() {
  28. return {
  29. radiovalue1: [],
  30. }
  31. },
  32. onLoad() {
  33. this.index()
  34. },
  35. methods: {
  36. index() {
  37. index().then(res=>{
  38. if(res.data.group_info.is_resume_show==1){
  39. this.radiovalue1 = [res.data.group_info.is_resume_show]
  40. }
  41. console.log('kkk',this.radiovalue1);
  42. })
  43. },
  44. groupChange(n) {
  45. this.radiovalue1=n
  46. private_setting({
  47. is_resume_show: this.radiovalue1.length == 0 ? false: true
  48. }).then(res => {
  49. if (res.code == 1) {
  50. this.$u.toast("修改成功")
  51. this.index()
  52. }
  53. })
  54. },
  55. // radioChange(n) {
  56. // console.log('radioChange', n);
  57. // }
  58. }
  59. }
  60. </script>
  61. <style scoped>
  62. .page {
  63. padding: 36rpx 32rpx 0;
  64. height: 100vh;
  65. box-sizing: border-box;
  66. }
  67. .title {
  68. font-size: 32rpx;
  69. font-family: PingFangSC-Regular, PingFang SC;
  70. font-weight: 400;
  71. color: #222222;
  72. }
  73. .mar {
  74. margin-top: 20rpx;
  75. font-size: 24rpx;
  76. font-family: PingFangSC-Regular, PingFang SC;
  77. font-weight: 400;
  78. color: #1A1C24;
  79. display: block;
  80. }
  81. </style>