12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <rich-text :nodes="nodes"></rich-text>
- </template>
- <script>
- export default {
- data() {
- return {
- // 页面类型 1 用户协议 2 关于我们
- type:1,
- // 文本内容
- nodes:''
- }
- },
- onLoad(e) {
- // 设置页面类型
- this.type = Number(e.type)
- this.getData()
- },
- methods: {
- getData(){
- this.request('/common/agreement',{id:this.type},"GET").then(res=>{
- if(res.code ===1){
- this.nodes = res.data
- }
- })
- },
- }
- }
- </script>
- <style>
- </style>
|