wujingjing
2024-08-29 4739692ba84e946660d83c386e750d70e1e37f82
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
    <div>
        <span v-if="data?.title" class="text-base font-bold flex-center">{{ data?.title }}</span>
        <AMISRenderer :schema="testData" :locals="data?.amis_data" />
    </div>
</template>
 
<script setup lang="ts">
import type { PropType } from 'vue';
import AMISRenderer from '/@/components/amis/AMISRenderer.vue';
 
// import  周社会存销比 from './testData/周社会存销比.json'
// import  客户情况 from './testData/客户情况.json'
 
// import  市场综合状态 from './testData/市场综合状态.json'
// import  销售季度销量 from './testData/销售季度销量.json'
// import  经济运行 from './testData/经济运行.json'
import testData from './testData.json'
 
const props = defineProps({
    data: {
        type: Object as PropType<any>,
    },
});
 
 
</script>
<style scoped lang="scss"></style>