12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <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>
- <u-checkbox :customStyle="{marginBottom: '8px'}" :name="1" @change="radioChange">
- </u-checkbox>
- </view>
- </u-checkbox-group>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- private_setting
- } from "@/units/inquire.js"
- export default {
- data() {
- return {
- radiovalue1:0,
- }
- },
- onLoad() {
- },
- methods: {
- groupChange(n) {
- this.radiovalue1 = n
- private_setting({
- private_setting:this.radiovalue1==0?'false':'true'
- }).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>
|