2022-09-08 10:58:17 +00:00
|
|
|
<template>
|
2022-09-09 00:35:24 +00:00
|
|
|
<view class="">
|
|
|
|
|
<u-parse :html="content"></u-parse>
|
2022-09-08 10:58:17 +00:00
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
2022-09-09 00:35:24 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { reactive, ref } from 'vue'
|
|
|
|
|
import { AgreementEnum } from '@/enums/agreementEnums'
|
|
|
|
|
const agreement = ref('') // 协议类型
|
|
|
|
|
|
|
|
|
|
|
2022-09-08 10:58:17 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
</style>
|