From 50111114eb8254fe4d6fc15e9781f2c47e3db74a Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期三, 24 七月 2024 00:12:52 +0800
Subject: [PATCH] 删除工艺路线绑定

---
 src/api/tigerapi/model/basModel.ts |   18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/src/api/tigerapi/model/basModel.ts b/src/api/tigerapi/model/basModel.ts
index c2a9d7e..19e4325 100644
--- a/src/api/tigerapi/model/basModel.ts
+++ b/src/api/tigerapi/model/basModel.ts
@@ -1,6 +1,9 @@
 import { Ref } from 'vue';
 import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
 import { ActionItem } from '/@/components/Table';
+import { CustModalParams } from './systemModel';
+import { EventDataNode } from 'ant-design-vue/lib/tree';
+import { ContextMenuItem } from '/@/components/TigerTree';
 //鐗╂枡淇℃伅瀹炰綋
 export type MaterialInfoParams = {
   ITEM_CODE?: string;
@@ -125,13 +128,13 @@
   EditOperation: (data: Ref<any[]>, d, u, item: string | undefined) => void;
   OpenSelectItem: (openItemModal: Fn, ...args) => void;
   GetSelectSuccess: (d, u, ...args) => {};
-  GetHomeUrl: () => string;
+  GetHomeUrl: (params: {} | undefined) => string;
   GetBaseColumns: (type: string | undefined) => [] | {};
   GetSearchForm: (type: string | undefined) => [] | {};
-  GetCrudForm: (type: string | undefined,) => [] | {};
+  GetCrudForm: (type: string | undefined) => [] | {};
   GetBaseForm: () => [] | {};
   GetBaseCards: (type: string | undefined) => [];
-  OthersValues: (val: string, id: string) => {};
+  KeyFieldValues: (val: string, id: string) => {};
   GetTitle: (type: string | undefined) => {};
   GetCrudColSlots: () => [];
   nodeChange: ({}) => void;
@@ -141,10 +144,15 @@
   navChangeItem: (action: any, ...args) => void;
   GetUseModals: () => {};
   GetUseDrawers: () => [];
-  GetUseTables: (data: Ref<Recordable[]>, ...args) => [];
+  GetUseTables: (data: Ref<Recordable[]>, ...args) => {};
+  GetUseForm: (...args) => {};
   SubmitFunc: (values: Recordable<any>, type: string, emit) => void;
   FormSearch: (d) => string | {};
   GetSlots: (type: string | undefined) => {};
   GenerateHtml: (type: string | null) => HTMLElement | null;
-  CustFunc: (type: string | undefined, ...args) => void | any;
+  CustFunc: (param: CustModalParams) => void | any;
+  SubmitAll: (data: Ref<any[]>, keyFieldValues: Ref<{}>, ...args) => void | any;
+  CustInitData: (data: Ref<any[]>, keyFieldValues: Ref<{}>, type: string) => void | any;
+  GetCustData: () => {};
+  GetRightMenuList: (node: EventDataNode, ...args) => ContextMenuItem[];
 }

--
Gitblit v1.9.3