12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view>
- {{data.content}}
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive
- } from "vue";
- import {
- onLoad
- } from "@dcloudio/uni-app"
- import * as httpApi from "@/api/common.js"
- const data = reactive({
- content: ''
- })
- onLoad(() => {
- pageInit();
- })
- function pageInit() {
- httpApi.getCommonGaikuangJianjieInfo().then(res => {
- data.content = res.data.content;
- })
- }
- </script>
- <style>
- </style>
|