123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <view>
- <view class="page">
- <text class="title">以下权限选择后方可生效</text>
- <view class="">
- <u-checkbox-group v-model="radiovalue1" placement="column" @change="groupChange">
- <!-- <view class="u-flex u-row-between">
- <view class="" style="margin-top: 48rpx;">
- <view class="title">简历及联系方式</view>
- <text class="mar">开启后,项目经理可查看您的简历及联系方式</text>
- </view>
- <u-radio :customStyle="{marginBottom: '8px'}" :name="0" @change="radioChange">
- </u-radio>
- </view> -->
- <view class="u-flex u-row-between" style="margin-top:20rpx ;border-top: 2rpx solid #F0F0F0;">
- <view class="">
- <view class="title" style="margin-top: 40rpx;">联系方式</view>
- <text class="mar">开启后,猎头可查看您的联系方式</text>
- </view>
- <!-- @change="radioChange" -->
- <u-checkbox :customStyle="{marginBottom: '8px'}" :name="1">
- </u-checkbox>
- </view>
- </u-checkbox-group>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- private_setting,
- index
- } from "@/units/inquire.js"
- export default {
- data() {
- return {
- radiovalue1: 0,
- }
- },
- onLoad() {
- this.index()
- },
- methods: {
- index() {
- index().then(res=>{
- this.radiovalue1 = res.data.group_info.is_resume_show
- console.log(this.radiovalue1);
- })
- },
- groupChange(n) {
- this.radiovalue1 = n
- private_setting({
- private_setting: this.radiovalue1 == 0 ? true : false
- }).then(res => {
- if (res.code == 1) {
- this.$u.toast("修改成功")
- }
- })
- },
- // radioChange(n) {
- // console.log('radioChange', n);
- // }
- }
- }
- </script>
- <style scoped>
- .page {
- padding: 36rpx 32rpx 0;
- height: 100vh;
- box-sizing: border-box;
- }
- .title {
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- .mar {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #1A1C24;
- display: block;
- }
- </style>
|