set.vue 519 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <view class='flex'>
  4. <text>允许他人分享我的名片</text>
  5. <u-switch v-model="value3" ></u-switch>
  6. </view>
  7. <view class="flex">
  8. <text>允许圈子成员查看我的主页</text>
  9. <u-switch v-model="value3" ></u-switch>
  10. </view>
  11. <view class="flex">
  12. <text>自动接受换名片邀请</text>
  13. <u-switch v-model="value3" ></u-switch>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. }
  23. }
  24. </script>
  25. <style lang="scss">
  26. </style>