@ningboyz/types 1.5.66 → 1.5.68

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.66",
4
+ "version": "1.5.68",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -19,6 +19,7 @@ export interface IDictResponseDictPara {
19
19
  * 以上配置只能配置一个
20
20
  * */
21
21
  change: string[];
22
+ list: any[];
22
23
  noChange: string[];
23
24
  code: string;
24
25
  /** 附件归属 */
@@ -59,6 +60,7 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
59
60
  show: boolean = false;
60
61
  gdzc: boolean = false;
61
62
  change: string[] = [];
63
+ list: any[] = [];
62
64
  pathType: string = "";
63
65
  noChange: string[] = [];
64
66
  unused: number = 0;
@@ -166,4 +166,6 @@ export enum TButtonType {
166
166
  reviewContract = "reviewContract",
167
167
  /** 查看账单 */
168
168
  checkBill = "checkBill",
169
+ /** 异常处理 */
170
+ exceptionHandling = "exceptionHandling",
169
171
  }