浏览代码

fix: 修改bug

bill 10 月之前
父节点
当前提交
a92f576c11
共有 3 个文件被更改,包括 3 次插入1 次删除
  1. 1 0
      src/app/criminal/view/example/index.vue
  2. 1 0
      src/app/ga/view/example/index.vue
  3. 1 1
      vite.config.ts

+ 1 - 0
src/app/criminal/view/example/index.vue

@@ -46,6 +46,7 @@
       >
         <CaseEditMenu
           :caseId="row.caseId"
+          :case="row"
           :prevMenu="[
             { key: 'info', label: '编辑案件', onClick: () => editHandler(row) },
           ]"

+ 1 - 0
src/app/ga/view/example/index.vue

@@ -46,6 +46,7 @@
       >
         <CaseEditMenu
           :caseId="row.caseId"
+          :case="row"
           :prevMenu="[
             { key: 'info', label: '编辑案件', onClick: () => editHandler(row) },
           ]"

+ 1 - 1
vite.config.ts

@@ -3,7 +3,7 @@ import vue from "@vitejs/plugin-vue";
 import { resolve } from "path";
 import ElementPlus from "unplugin-element-plus/vite";
 
-let app = "fire";
+let app = "criminal";
 if (process.argv.length > 3) {
   app = process.argv[process.argv.length - 1].trim();
 }