zsjyShengxue.vue 433 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script setup>
  6. import {
  7. ref,
  8. reactive
  9. } from "vue";
  10. import {
  11. onLoad
  12. } from "@dcloudio/uni-app"
  13. import * as httpApi from "@/api/common.js"
  14. const data = reactive({
  15. content: ''
  16. })
  17. onLoad(() => {
  18. pageInit();
  19. })
  20. function pageInit() {
  21. httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
  22. data.content = res.data.content;
  23. })
  24. }
  25. </script>
  26. <style>
  27. </style>