vip_policy.vue 491 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="padding30">
  3. <view v-html="info.content" class="padding30 border_radius_20 bg_color_fff"></view>
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from "vue";
  8. import { agreementMember } from "@/api/agreement";
  9. import { onLoad } from "@dcloudio/uni-app";
  10. const info = ref({});
  11. onLoad(() => {
  12. agreementMemberFn();
  13. })
  14. function agreementMemberFn() {
  15. agreementMember().then(res => {
  16. if (res.code == 200) {
  17. info.value = res.data;
  18. }
  19. })
  20. }
  21. </script>