main
黄海 9 months ago
parent 14499bf08c
commit fc683779ba

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

@ -21,7 +21,7 @@
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"serve": "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:test": "vue-tsc && vite build --mode test",
"build:pro": "vue-tsc && vite build --mode production", "build:pro": "vue-tsc && vite build --mode production",
"type:check": "vue-tsc --noEmit --skipLibCheck", "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 { getStageList, getSubjectList, getSchemeList, deleteScheme } from "@/api/modules/base";
import { CirclePlus, Delete, EditPen } from "@element-plus/icons-vue"; import { CirclePlus, Delete, EditPen } from "@element-plus/icons-vue";
const _toolButton = ["refresh"]; const _toolButton = ["refresh"] as any;
const subjectEnum = ref<any>([]); const subjectEnum = ref<any>([]);
// ProTable // ProTable

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

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

Loading…
Cancel
Save