feat: implement gas and delivery admin systems

This commit is contained in:
david
2026-07-30 14:16:58 +08:00
parent 1093385f95
commit f5ecc0d973
252 changed files with 49385 additions and 363 deletions

View File

@@ -0,0 +1,36 @@
<template>
<VChart
v-if="renderChart"
:option="option"
autoresize
:style="{ width, height }"
/>
</template>
<script lang="ts" setup>
import type { EChartsOption } from 'echarts';
import { nextTick, ref } from 'vue';
import VChart from 'vue-echarts';
defineProps({
option: {
type: Object as () => EChartsOption,
default: () => ({}),
},
width: {
type: String,
default: '100%',
},
height: {
type: String,
default: '100%',
},
});
const renderChart = ref(false);
nextTick(() => {
renderChart.value = true;
});
</script>
<style scoped lang="less"></style>