45 lines
766 B
Vue
45 lines
766 B
Vue
<!-- 会员信息 -->
|
|
<template>
|
|
<s-layout navbar="normal" title="会员协议">
|
|
<view class="main" v-html="data">
|
|
|
|
</view>
|
|
</s-layout>
|
|
</template>
|
|
<script setup>
|
|
import {
|
|
computed,
|
|
reactive,
|
|
onBeforeMount,
|
|
onMounted,
|
|
ref
|
|
} from 'vue';
|
|
import request from '@/sheep/request';
|
|
import {
|
|
baseUrl,
|
|
apiPath
|
|
} from '@/sheep/config';
|
|
import sheep from '@/sheep';
|
|
const data = ref([]);
|
|
request({
|
|
url: `${baseUrl}${apiPath}/member/paid-member-agree/get`,
|
|
method: 'GET',
|
|
params: {
|
|
},
|
|
custom: {
|
|
showLoading: false,
|
|
},
|
|
}).then((res) => {
|
|
data.value = res.data.content
|
|
});
|
|
// 使用 onMounted 生命周期钩子
|
|
onMounted(() => {
|
|
|
|
});
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.main{
|
|
width: 93%;
|
|
margin:10px auto;
|
|
}
|
|
</style> |