123456789101112131415161718192021222324252627 |
- <template>
-
- <a-typography style="padding: 20px;">
- <a-typography-title :level="3">联系方式</a-typography-title>
- <a-typography-paragraph style="padding: 20px;">
- <a-space direction="vertical" :size="50" style="width: 100%;">
- <div v-html="detail.value"></div>
- </a-space>
- </a-typography-paragraph>
- </a-typography>
-
-
- </template>
-
- <script setup lang="ts">
- import { ref, computed, onMounted, defineEmits } from 'vue';
- import { GetSysconfigDetail } from '@/apis/models';
- let detail = ref<any>('')
- onMounted(() => {
- GetSysconfigDetail({ name: 'contact' }).then(res => {
- detail.value = res.data
- })
- })
- </script>
-
- <style>
- </style>
|