@ningboyz/types 1.5.46 → 1.5.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.5.46",
4
+ "version": "1.5.47",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -31,19 +31,21 @@ export interface IDictResponseDictPara {
31
31
  /** 是否填写付费总额 */
32
32
  isPayTotal: number;
33
33
  /** 是否需要签章 */
34
- needSign:boolean
34
+ needSign: boolean;
35
35
  /** 是否为需要进行签章的电子签章类型 */
36
- isDzqzSign:boolean
36
+ isDzqzSign: boolean;
37
37
  /** 原合同的相关附件类型 */
38
- yzhtPathType:boolean
38
+ yzhtPathType: boolean;
39
39
  /** 品种技术中动态字段的名称 */
40
- formFieldObj:IFormFieldObj
40
+ formFieldObj: IFormFieldObj;
41
41
  /** 限制上传的附件文件类型 */
42
42
  usesPathType: string[];
43
43
  /** 是否隐藏点击上传按钮 */
44
44
  hideUpload: boolean;
45
45
  /** 是否隐藏点击拍摄按钮 */
46
46
  hideCamera: boolean;
47
+ /** 是否办理结果附件 */
48
+ processingResult: boolean;
47
49
  }
48
50
 
49
51
  export class TDictResponseDictPara implements IDictResponseDictPara {
@@ -69,22 +71,23 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
69
71
  /** 对应的编码 */
70
72
  code: string = "";
71
73
  /** 是否需要签章 */
72
- needSign:boolean=false
74
+ needSign: boolean = false;
73
75
  /** 是否为需要进行签章的电子签章类型 */
74
- isDzqzSign:boolean = false
76
+ isDzqzSign: boolean = false;
75
77
  /** 原合同的相关附件类型 */
76
- yzhtPathType:boolean=false
78
+ yzhtPathType: boolean = false;
77
79
  /** 品种技术中动态字段的名称 */
78
- formFieldObj:IFormFieldObj = {authorField:"发明人",bookCodeField:"证书号",magaZineField:"编号"}
80
+ formFieldObj: IFormFieldObj = { authorField: "发明人", bookCodeField: "证书号", magaZineField: "编号" };
79
81
  /** 限制上传的附件文件类型 */
80
- usesPathType: string[]=[];
81
- /** 是否隐藏点击上传按钮 */
82
- hideUpload: boolean=false;
82
+ usesPathType: string[] = [];
83
+ /** 是否隐藏点击上传按钮 */
84
+ hideUpload: boolean = false;
83
85
  /** 是否隐藏点击拍摄按钮 */
84
- hideCamera: boolean=false;
86
+ hideCamera: boolean = false;
87
+ /** 是否办理结果附件 */
88
+ processingResult: boolean = false;
85
89
  }
86
90
 
87
-
88
91
  export interface IFormFieldObj {
89
92
  authorField: string;
90
93
  bookCodeField: string;
@@ -164,4 +164,6 @@ export enum TButtonType {
164
164
  attachmentExport = "attachmentExport",
165
165
  /** 查看合同 */
166
166
  reviewContract = "reviewContract",
167
+ /** 查看账单 */
168
+ checkBill = "checkBill",
167
169
  }