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

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',
@@ -1,144 +1,144 @@
1
- .application {
2
- height: 100%;
3
- min-height: 400px;
4
- overflow-x: hidden;
5
- overflow-y: auto;
6
-
7
- &-modal {
8
- .ant-modal-body {
9
- padding: 24px !important;
10
- }
11
- .ant-modal-confirm-body .ant-modal-confirm-title {
12
- color: #000;
13
- font-size: 24px;
14
- line-height: 24px;
15
- }
16
-
17
- .ant-modal-confirm-body .ant-modal-confirm-content {
18
- margin-top: 0;
19
- padding-top: 24px;
20
- }
21
-
22
- .ant-modal-close {
23
- padding-top: 8px;
24
- padding-right: 6px;
25
-
26
- &-x {
27
- color: #021429;
28
- font-size: 24px;
29
- }
30
- }
31
- }
32
-
33
- &-drawer {
34
- .ant-drawer-header-title {
35
- flex-direction: row-reverse;
36
- }
37
- }
38
-
39
- .bsicon {
40
- color: #9aa1a9;
41
- font-size: 16px !important;
42
- }
43
- .bsicon:hover {
44
- color: var(--io-i-, #165dff);
45
- }
46
-
47
- .bsicon.shanchu:hover {
48
- color: #fb5547;
49
- }
50
-
51
- .zhuge.icon-shanchu:hover {
52
- color: #fb5547;
53
- }
54
-
55
- &-alert-info {
56
- background-color: #e6f7ff;
57
- border: 1px solid #91d5ff;
58
- border-radius: 2px;
59
- }
60
-
61
- &-form {
62
- display: flex;
63
- align-items: center;
64
- justify-content: space-between;
65
-
66
- &-item {
67
- display: flex;
68
- gap: 8px;
69
- align-items: center;
70
-
71
- .bsicon {
72
- color: #fd9f41;
73
- }
74
-
75
- .bsicon:hover {
76
- color: var(--io-i-, #fd9f41);
77
- }
78
- }
79
-
80
- .ant-btn-sm {
81
- height: 32px;
82
- padding: 4px 16px;
83
- }
84
- }
85
-
86
- .ant-divider-horizontal {
87
- margin: 14px 0;
88
- }
89
-
90
- .biz-loading-container.loading {
91
- margin-top: 100px;
92
- }
93
-
94
- &-disabled,
95
- &-disabled:hover,
96
- &-disabled:focus {
97
- cursor: not-allowed !important;
98
- }
99
-
100
- .ant-btn-primary[disabled],
101
- .ant-btn-primary[disabled]:hover,
102
- .ant-btn-primary[disabled]:focus,
103
- .ant-btn-primary[disabled]:active {
104
- color: #fff;
105
- background: var(--io-i2-, #d0dfff);
106
- border: 1px solid #d0dfff;
107
- }
108
-
109
- .settings-card {
110
- gap: 6px;
111
- height: 120px;
112
- }
113
- &-rowContent {
114
- height: calc(100vh - 302px);
115
- overflow: overlay;
116
- }
117
- &-contentList-label {
118
- display: grid;
119
- grid-template-columns: 230px repeat(4, minmax(90px, 1fr)) 135px 90px 260px;
120
- align-items: center;
121
- padding-right: 14px;
122
- border-bottom: 1px solid #ecedf0;
123
- }
124
- &-contentList-item-name {
125
- color: #000;
126
- font-weight: bold;
127
- font-size: 14px;
128
- }
129
- &-contentList-item-status-icon0,
130
- &-contentList-item-status-icon1 {
131
- display: inline-block;
132
- width: 6px;
133
- height: 6px;
134
- margin-right: 3px;
135
- border-radius: 50%;
136
- transform: translateY(-1px);
137
- }
138
- &-contentList-item-status-icon0 {
139
- background: #67727f;
140
- }
141
- &-contentList-item-status-icon1 {
142
- background: #165dff;
143
- }
144
- }
1
+ .application {
2
+ height: 100%;
3
+ min-height: 400px;
4
+ overflow-x: hidden;
5
+ overflow-y: auto;
6
+
7
+ &-modal {
8
+ .ant-modal-body {
9
+ padding: 24px !important;
10
+ }
11
+ .ant-modal-confirm-body .ant-modal-confirm-title {
12
+ color: #000;
13
+ font-size: 24px;
14
+ line-height: 24px;
15
+ }
16
+
17
+ .ant-modal-confirm-body .ant-modal-confirm-content {
18
+ margin-top: 0;
19
+ padding-top: 24px;
20
+ }
21
+
22
+ .ant-modal-close {
23
+ padding-top: 8px;
24
+ padding-right: 6px;
25
+
26
+ &-x {
27
+ color: #021429;
28
+ font-size: 24px;
29
+ }
30
+ }
31
+ }
32
+
33
+ &-drawer {
34
+ .ant-drawer-header-title {
35
+ flex-direction: row-reverse;
36
+ }
37
+ }
38
+
39
+ .bsicon {
40
+ color: #9aa1a9;
41
+ font-size: 16px !important;
42
+ }
43
+ .bsicon:hover {
44
+ color: var(--io-i-, #165dff);
45
+ }
46
+
47
+ .bsicon.shanchu:hover {
48
+ color: #fb5547;
49
+ }
50
+
51
+ .zhuge.icon-shanchu:hover {
52
+ color: #fb5547;
53
+ }
54
+
55
+ &-alert-info {
56
+ background-color: #e6f7ff;
57
+ border: 1px solid #91d5ff;
58
+ border-radius: 2px;
59
+ }
60
+
61
+ &-form {
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: space-between;
65
+
66
+ &-item {
67
+ display: flex;
68
+ gap: 8px;
69
+ align-items: center;
70
+
71
+ .bsicon {
72
+ color: #fd9f41;
73
+ }
74
+
75
+ .bsicon:hover {
76
+ color: var(--io-i-, #fd9f41);
77
+ }
78
+ }
79
+
80
+ .ant-btn-sm {
81
+ height: 32px;
82
+ padding: 4px 16px;
83
+ }
84
+ }
85
+
86
+ .ant-divider-horizontal {
87
+ margin: 14px 0;
88
+ }
89
+
90
+ .biz-loading-container.loading {
91
+ margin-top: 100px;
92
+ }
93
+
94
+ &-disabled,
95
+ &-disabled:hover,
96
+ &-disabled:focus {
97
+ cursor: not-allowed !important;
98
+ }
99
+
100
+ .ant-btn-primary[disabled],
101
+ .ant-btn-primary[disabled]:hover,
102
+ .ant-btn-primary[disabled]:focus,
103
+ .ant-btn-primary[disabled]:active {
104
+ color: #fff;
105
+ background: var(--io-i2-, #d0dfff);
106
+ border: 1px solid #d0dfff;
107
+ }
108
+
109
+ .settings-card {
110
+ gap: 6px;
111
+ height: 120px;
112
+ }
113
+ &-rowContent {
114
+ height: calc(100vh - 302px);
115
+ overflow: overlay;
116
+ }
117
+ &-contentList-label {
118
+ display: grid;
119
+ grid-template-columns: 230px repeat(4, minmax(90px, 1fr)) 135px 90px 260px;
120
+ align-items: center;
121
+ padding-right: 14px;
122
+ border-bottom: 1px solid #ecedf0;
123
+ }
124
+ &-contentList-item-name {
125
+ color: #000;
126
+ font-weight: bold;
127
+ font-size: 14px;
128
+ }
129
+ &-contentList-item-status-icon0,
130
+ &-contentList-item-status-icon1 {
131
+ display: inline-block;
132
+ width: 6px;
133
+ height: 6px;
134
+ margin-right: 3px;
135
+ border-radius: 50%;
136
+ transform: translateY(-1px);
137
+ }
138
+ &-contentList-item-status-icon0 {
139
+ background: #67727f;
140
+ }
141
+ &-contentList-item-status-icon1 {
142
+ background: #165dff;
143
+ }
144
+ }
@@ -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 };