This commit is contained in:
feng0207
2026-08-11 22:22:10 +08:00
commit 5e312c1266
6985 changed files with 1061169 additions and 0 deletions
@@ -0,0 +1,33 @@
<template>
<view class="agreement">
<view class="content" v-html="agreement"></view>
</view>
</template>
<script>
import api from 'pages/api/api.js';
import http from 'pages/api/index';
export default {
data() {
return {
agreement: ''
};
},
mounted() {
this.getAgreement();
},
methods: {
getAgreement() {
http(api.userAgreement, {}).then(res => {
console.log(res);
this.agreement = res.content;
});
}
}
};
</script>
<style>
.agreement .content {
margin: 10rpx;
}
</style>