Ver código fonte

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 4 anos atrás
pai
commit
05707d5693

+ 1 - 0
types/src/interface/bill.ts

@@ -109,6 +109,7 @@ export interface IBookmark {
   createTime: number;
   telNo: string;
   kind: BRType;
+  institution?: string;
 }
 // 修改书签
 export interface ISetBookmark {

+ 1 - 0
types/src/interface/editLog.ts

@@ -17,6 +17,7 @@ export interface ILogDetail<T = any> {
   oldValue?: string; // 旧值
   field?: string; // 修改的field
   processID?: string; // 流程ID
+  institution?: string; // 单位名称
 }
 
 export interface IEditLog {

+ 6 - 0
types/src/interface/process.ts

@@ -231,3 +231,9 @@ export interface ITodo {
 export interface IApprovalTodo extends ITodo {
   data: IApprovalTodoData;
 }
+
+export enum ChangeRecord{
+  CURRENT = 'current', // 当前清单
+  ALLBILLS = 'all-bills', // 全部清单
+  ALLGLJS = 'all-gljs', // 全部材价
+}