easy3wui 1.4.204 → 1.4.205
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/lib/Easy3wFlow/index.js +0 -4
- package/package.json +1 -1
package/lib/Easy3wFlow/index.js
CHANGED
|
@@ -130,9 +130,6 @@ var Easy3wFlow = function (_Component) {
|
|
|
130
130
|
|
|
131
131
|
var renderTopTemp = flowData.map(function (flow, index) {
|
|
132
132
|
var styleflowcircle = (0, _classnames2['default'])(['flowcircle', 'haiergrey']);
|
|
133
|
-
console.log('==11', flowCurMainCode);
|
|
134
|
-
console.log('==12', flow.code);
|
|
135
|
-
|
|
136
133
|
if (flow.status === '10') {
|
|
137
134
|
styleflowcircle = flowCurMainCode === flow.code ? (0, _classnames2['default'])(['flowcircle-active', 'haierorange']) : (0, _classnames2['default'])(['flowcircle', 'haierorange']);
|
|
138
135
|
} else if (flow.status === '20' || flow.status === '30') {
|
|
@@ -167,7 +164,6 @@ var Easy3wFlow = function (_Component) {
|
|
|
167
164
|
item = item || flow.children[0];
|
|
168
165
|
var firstItem = item || flow;
|
|
169
166
|
// const firstItem = flow.children[0] || flow;
|
|
170
|
-
console.log('==13', firstItem);
|
|
171
167
|
var firstItemCode = firstItem.code;
|
|
172
168
|
var handlePage = firstItem.handlePage + '?businessId=' + businessId + '&processCode=' + processCode + '&roleCode=' + roleCode + '&flowCurCode=' + firstItemCode + '&flowCurMainCode=' + (firstItem.mainCode || '1') + '&noReGetFlowFlag=1';
|
|
173
169
|
var readPage = firstItem.readPage + '?businessId=' + businessId + '&processCode=' + processCode + '&roleCode=' + roleCode + '&flowCurCode=' + firstItem.code + '&flowCurMainCode=' + (firstItem.mainCode || '1') + '&noReGetFlowFlag=1';
|