| | |
| | | </div> |
| | | </div> |
| | | <div v-if="urlList && urlList.length > 0" class="w-full"> |
| | | <HTMLCom :data="`${SERVE_URL}/views/project/ch/demo/Overview.html`" v-for="(item, index) in urlList" :key="index"></HTMLCom> |
| | | <HTMLCom :data="item.url" v-for="(item, index) in urlList" :key="index"></HTMLCom> |
| | | </div> |
| | | </template> |
| | | <div v-else class="text-red-500">{{ error }}</div> |
| | |
| | | import { PATH_ICON, SCATTER_SYMBOL_SIZE, timeDataOptionToContent } from '../common'; |
| | | import HTMLCom from '../htmlCom/HTMLCom.vue'; |
| | | import { ChartTypeEnum, chartTypeMapEchart } from '../types'; |
| | | import { SERVE_URL } from '/@/constants/index'; |
| | | import { axisLabelFormatter } from '/@/utils/chart'; |
| | | const props = defineProps(['data', 'error']); |
| | | |