main
黄海 9 months ago
parent 14499bf08c
commit fc683779ba

@ -2,7 +2,7 @@
VITE_USER_NODE_ENV = development
# 公共基础路径
VITE_PUBLIC_PATH = /
VITE_PUBLIC_PATH = /base
# 路由模式
# Optional: hash | history

@ -21,7 +21,7 @@
"scripts": {
"dev": "vite",
"serve": "vite",
"build:dev": "vue-tsc && vite build --mode development",
"build:dev": "vite build --mode development",
"build:test": "vue-tsc && vite build --mode test",
"build:pro": "vue-tsc && vite build --mode production",
"type:check": "vue-tsc --noEmit --skipLibCheck",

@ -35,7 +35,7 @@ import SchemeDialog from "@/views/base/scheme/components/SchemeDialog.vue";
import { getStageList, getSubjectList, getSchemeList, deleteScheme } from "@/api/modules/base";
import { CirclePlus, Delete, EditPen } from "@element-plus/icons-vue";
const _toolButton = ["refresh"];
const _toolButton = ["refresh"] as any;
const subjectEnum = ref<any>([]);
// ProTable

@ -19,7 +19,7 @@ import { getStageList } from "@/api/modules/base";
const router = useRouter();
const _toolButton = ["refresh"];
const _toolButton = ["refresh"] as any;
// ProTable
// const proTable = ref<ProTableInstance>();

@ -38,7 +38,7 @@ import { CirclePlus, Delete, EditPen } from "@element-plus/icons-vue";
const proTable = ref<ProTableInstance>();
const initParam = reactive({ stage_id: "" });
const _toolButton = ["refresh"];
const _toolButton = ["refresh"] as any;
const getTableList = (params: any) => {
return getSubjectList(params);

Loading…
Cancel
Save