123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <view class='flex'>
- <text>允许他人分享我的名片</text>
- <u-switch v-model="value3" ></u-switch>
- </view>
- <view class="flex">
- <text>允许圈子成员查看我的主页</text>
- <u-switch v-model="value3" ></u-switch>
- </view>
- <view class="flex">
- <text>自动接受换名片邀请</text>
- <u-switch v-model="value3" ></u-switch>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|