mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-25 19:06:35 +08:00
48 lines
1.5 KiB
Vue
48 lines
1.5 KiB
Vue
<template>
|
|
<div>
|
|
<n-carousel :autoplay="autoplay" :interval="interval" :centered-slides="centeredSlides" :direction="direction"
|
|
:dot-placement="dotPlacement" :dot-type="dotType" :draggable="draggable" :effect="effect"
|
|
:slides-per-view="slidesPerview" :show-arrow="showArrow" :show-dots="showDots">
|
|
<n-image v-for="url in option.dataset" :object-fit="fit" preview-disabled :src="url"
|
|
:fallback-src="requireErrorImg()" :width="w" :height="h"></n-image>
|
|
</n-carousel>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { PropType, toRefs, shallowReactive, watch } from 'vue'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { requireErrorImg } from '@/utils'
|
|
import { useChartDataFetch } from '@/hooks'
|
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
|
import { option as configOption } from './config'
|
|
|
|
const props = defineProps({
|
|
chartConfig: {
|
|
type: Object as PropType<CreateComponentType>,
|
|
required: true
|
|
}
|
|
})
|
|
|
|
const option = shallowReactive({
|
|
dataset: configOption.dataset
|
|
})
|
|
|
|
const { w, h } = toRefs(props.chartConfig.attr)
|
|
const { autoplay, interval, slidesPerview, direction, draggable, centeredSlides, effect, dotType, dotPlacement, showArrow, showDots, fit } = toRefs(props.chartConfig.option)
|
|
|
|
watch(
|
|
() => props.chartConfig.option.dataset,
|
|
(newData: any) => {
|
|
option.dataset = newData
|
|
},
|
|
{
|
|
immediate: true,
|
|
deep: false
|
|
}
|
|
)
|
|
|
|
useChartDataFetch(props.chartConfig, useChartEditStore, (newData: any) => {
|
|
option.dataset = newData
|
|
})
|
|
</script>
|