🚀 修复构建问题.
This commit is contained in:
@@ -6,13 +6,13 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { ECBasicOption } from 'echarts/types/src/util/types';
|
import type { EChartsOption } from 'echarts';
|
||||||
import { computed, nextTick, ref } from 'vue';
|
import { computed, nextTick, ref } from 'vue';
|
||||||
import { useAppStore } from '@/store';
|
import { useAppStore } from '@/store';
|
||||||
import VCharts from 'vue-echarts';
|
import VCharts from 'vue-echarts';
|
||||||
|
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
options: ECBasicOption,
|
options: EChartsOption,
|
||||||
autoResize: boolean,
|
autoResize: boolean,
|
||||||
width: string,
|
width: string,
|
||||||
height: string,
|
height: string,
|
||||||
|
|||||||
@@ -207,7 +207,7 @@
|
|||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { TableData } from '@arco-design/web-vue/es/table/interface';
|
import type { TableData } from '@arco-design/web-vue/es/table/interface';
|
||||||
import type { ExecLogQueryResponse,ExecLogQueryRequest } from '@/api/exec/exec-log';
|
import type { ExecLogQueryResponse, ExecLogQueryRequest } from '@/api/exec/exec-log';
|
||||||
import { reactive, ref, onMounted, onUnmounted } from 'vue';
|
import { reactive, ref, onMounted, onUnmounted } from 'vue';
|
||||||
import {
|
import {
|
||||||
batchDeleteExecCommandLog,
|
batchDeleteExecCommandLog,
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
const selectedKeys = ref<number[]>([]);
|
const selectedKeys = ref<number[]>([]);
|
||||||
const tableRenderData = ref<ExecLogQueryResponse[]>([]);
|
const tableRenderData = ref<ExecLogQueryResponse[]>([]);
|
||||||
const formModel = reactive<ExecLogQueryResponse>({
|
const formModel = reactive<ExecLogQueryRequest>({
|
||||||
id: undefined,
|
id: undefined,
|
||||||
userId: undefined,
|
userId: undefined,
|
||||||
description: undefined,
|
description: undefined,
|
||||||
|
|||||||
Reference in New Issue
Block a user