@zgfe/modules-settings 2.0.0-zhongyuan.25 → 2.0.0-zhongyuan.26

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.
@@ -31,7 +31,10 @@ declare let apis: {
31
31
  updateCompanyAdmin: string;
32
32
  updateUserAuthCEP: string;
33
33
  disableDemand: string;
34
- copyDemand: string;
34
+ getComments: string;
35
+ addComments: string;
36
+ operateList: string;
37
+ designateProcessor: string;
35
38
  updateGroupAuth: string;
36
39
  deleteGroup: string;
37
40
  wxSubscribeUserList: string;
@@ -34,8 +34,13 @@ var apis = {
34
34
  updateUserAuthCEP: '/cep-console/api/v1/permission/updateUserAuth',
35
35
  //禁用接口
36
36
  disableDemand: '/zg/web/v2/approve/demand/disableDemand',
37
- //复制接口
38
- copyDemand: '/zg/web/v2/approve/demand/copyDemand',
37
+ //评论接口
38
+ getComments: '/zg/web/v2/approve/demand/getComments',
39
+ //添加评论接口
40
+ addComments: '/zg/web/v2/approve/demand/addComments',
41
+ //历史记录
42
+ operateList: '/zg/web/v2/approve/demand/operateList',
43
+ designateProcessor: '/zg/web/v2/approve/demand/designateProcessor',
39
44
  updateGroupAuth: '/auth/updateGroupAuth.jsp',
40
45
  deleteGroup: '/auth/deleteGroup.jsp',
41
46
  wxSubscribeUserList: '/wx_subscribe/getWxSubscribeUserInfoList.jsp',
@@ -2,4 +2,17 @@ import { ColumnsType } from 'antd/es/table/interface';
2
2
  declare const columnsEvent: (gotoPage?: Function, isControl?: boolean) => ColumnsType<{
3
3
  pageId: number;
4
4
  }>;
5
- export { columnsEvent };
5
+ declare const demandTabList: ({
6
+ label: string;
7
+ value: number;
8
+ key: string;
9
+ color: string;
10
+ buttonName: string;
11
+ } | {
12
+ label: string;
13
+ value: number;
14
+ key: string;
15
+ color: string;
16
+ buttonName?: undefined;
17
+ })[];
18
+ export { columnsEvent, demandTabList };
@@ -97,4 +97,57 @@ var columnsEvent = function columnsEvent(gotoPage, isControl) {
97
97
  }
98
98
  }]);
99
99
  };
100
- export { columnsEvent };
100
+ var demandTabList = [{
101
+ label: '待设计',
102
+ value: 1,
103
+ key: 'nodename1',
104
+ color: '#fda145',
105
+ buttonName: '开始设计'
106
+ }, {
107
+ label: '设计',
108
+ value: 2,
109
+ key: 'nodename2',
110
+ color: '#fda145',
111
+ buttonName: '设计完成'
112
+ }, {
113
+ label: '审核1',
114
+ value: 3,
115
+ key: 'nodename3',
116
+ color: '#fb5547',
117
+ buttonName: '审核通过'
118
+ }, {
119
+ label: '审核2',
120
+ value: 4,
121
+ key: 'nodename4',
122
+ color: '#fb5547',
123
+ buttonName: '审核通过'
124
+ }, {
125
+ label: '开发',
126
+ value: 5,
127
+ key: 'nodename5',
128
+ color: '#165dff',
129
+ buttonName: '开发完成'
130
+ }, {
131
+ label: '测试',
132
+ value: 6,
133
+ key: 'nodename6',
134
+ color: '#165dff',
135
+ buttonName: '测试完成'
136
+ }, {
137
+ label: '已完成',
138
+ value: 101,
139
+ key: 'finishedSum',
140
+ color: '#2cbe54',
141
+ buttonName: '批量上线'
142
+ }, {
143
+ label: '已关闭',
144
+ value: 102,
145
+ key: 'closedSum',
146
+ color: '#cccfd5'
147
+ }, {
148
+ label: '已超时',
149
+ value: 103,
150
+ key: 'overTimeSum',
151
+ color: '#fda145'
152
+ }];
153
+ export { columnsEvent, demandTabList };