36 lines
526 B
Vue
36 lines
526 B
Vue
|
<template>
|
||
|
<div class="page">
|
||
|
<div v-html="listData"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import request from '@/utils/request'
|
||
|
export default {
|
||
|
name: 'SutaIndex',
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
listData:''
|
||
|
};
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
this.listFn()
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
listFn(){
|
||
|
request.put("/api/user/userAgreement",{}).then(res =>{
|
||
|
this.listData = JSON.parse(JSON.stringify(res.data.data.privacy))
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.page{
|
||
|
padding: 0 15px;
|
||
|
}
|
||
|
</style>
|