eoss-ui 0.7.11 → 0.7.13
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/button-group.js +107 -101
- package/lib/button.js +107 -101
- package/lib/calogin.js +107 -101
- package/lib/checkbox-group.js +108 -102
- package/lib/config/api.js +5 -1
- package/lib/data-table-form.js +108 -102
- package/lib/data-table.js +109 -103
- package/lib/date-picker.js +107 -101
- package/lib/dialog.js +107 -101
- package/lib/eoss-ui.common.js +710 -354
- package/lib/flow-group.js +107 -101
- package/lib/flow-list.js +116 -109
- package/lib/flow.js +553 -190
- package/lib/form.js +107 -101
- package/lib/handle-user.js +108 -102
- package/lib/handler.js +108 -102
- package/lib/icon.js +108 -102
- package/lib/index.js +1 -1
- package/lib/input-number.js +107 -101
- package/lib/input.js +107 -101
- package/lib/login.js +162 -163
- package/lib/main.js +140 -134
- package/lib/nav.js +107 -101
- package/lib/notify.js +110 -104
- package/lib/page.js +107 -101
- package/lib/pagination.js +107 -101
- package/lib/player.js +107 -101
- package/lib/qr-code.js +107 -101
- package/lib/radio-group.js +108 -102
- package/lib/retrial-auth.js +110 -104
- package/lib/select-ganged.js +108 -102
- package/lib/select.js +108 -102
- package/lib/selector-panel.js +125 -119
- package/lib/selector.js +109 -103
- package/lib/sizer.js +109 -103
- package/lib/steps.js +107 -101
- package/lib/switch.js +107 -101
- package/lib/table-form.js +107 -101
- package/lib/tabs.js +107 -101
- package/lib/tips.js +108 -102
- package/lib/tree-group.js +107 -101
- package/lib/tree.js +108 -102
- package/lib/upload.js +117 -111
- package/lib/wujie.js +107 -101
- package/lib/wxlogin.js +107 -101
- package/package.json +1 -1
- package/packages/flow/src/component/Circulate.vue +2 -0
- package/packages/flow/src/component/FileList.vue +1 -0
- package/packages/flow/src/component/FreeCirculation.vue +231 -0
- package/packages/flow/src/component/taskUnionExamine.vue +1 -0
- package/packages/flow/src/freeStartFlow.vue +1 -0
- package/packages/flow/src/main.vue +20 -3
- package/packages/login/src/resetPassword.vue +3 -8
- package/src/config/api.js +8 -1
- package/src/index.js +1 -1
|
@@ -122,6 +122,14 @@
|
|
|
122
122
|
:news-info="nextNode.notificationMsg"
|
|
123
123
|
@cancel="closeProcess($event)"
|
|
124
124
|
/>
|
|
125
|
+
|
|
126
|
+
<FreeCirculation
|
|
127
|
+
v-else-if="typeCode == 'freeCirculation'"
|
|
128
|
+
:appId="resetAppId"
|
|
129
|
+
:params="param"
|
|
130
|
+
:formLabelPosition="formLabelPosition"
|
|
131
|
+
:simpleTips="simpleTips"
|
|
132
|
+
/>
|
|
125
133
|
<Supervise
|
|
126
134
|
:businessId="businessId"
|
|
127
135
|
:appId="resetAppId"
|
|
@@ -213,6 +221,7 @@
|
|
|
213
221
|
multiple
|
|
214
222
|
mix
|
|
215
223
|
:disableds="otherOrgDisabledObjId"
|
|
224
|
+
:where="{ filid: 'other' }"
|
|
216
225
|
@change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
|
|
217
226
|
:types="foreignOrgSelectorTabs"
|
|
218
227
|
:params="foreignOrgSelectorParams"
|
|
@@ -528,6 +537,7 @@
|
|
|
528
537
|
:nextUser="nextOtherOrgObjSelect"
|
|
529
538
|
multiple
|
|
530
539
|
mix
|
|
540
|
+
:where="{ filid: 'other' }"
|
|
531
541
|
:disableds="otherOrgDisabledObjId"
|
|
532
542
|
@change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
|
|
533
543
|
:types="foreignOrgSelectorTabs"
|
|
@@ -1130,6 +1140,7 @@ import FreeStartFlow from './freeStartFlow.vue';
|
|
|
1130
1140
|
import SelectUser from './selectUser.vue';
|
|
1131
1141
|
import Supervise from './supervise.vue';
|
|
1132
1142
|
import circulate from './component/Circulate.vue';
|
|
1143
|
+
import FreeCirculation from './component/FreeCirculation.vue';
|
|
1133
1144
|
import {
|
|
1134
1145
|
findSysCodes,
|
|
1135
1146
|
getHandleInfoHtml,
|
|
@@ -1171,7 +1182,8 @@ export default {
|
|
|
1171
1182
|
circulate,
|
|
1172
1183
|
Preset,
|
|
1173
1184
|
Reset,
|
|
1174
|
-
Supervise
|
|
1185
|
+
Supervise,
|
|
1186
|
+
FreeCirculation
|
|
1175
1187
|
},
|
|
1176
1188
|
props: {
|
|
1177
1189
|
showShrink: { type: Boolean, default: true },
|
|
@@ -1584,7 +1596,12 @@ export default {
|
|
|
1584
1596
|
this.$emit('endMessageChange', this.endMessage);
|
|
1585
1597
|
},
|
|
1586
1598
|
getInfo() {
|
|
1587
|
-
if (
|
|
1599
|
+
if (
|
|
1600
|
+
this.typeCode == 'supervise' ||
|
|
1601
|
+
this.typeCode == 'read' ||
|
|
1602
|
+
this.typeCode == 'freeCirculation'
|
|
1603
|
+
)
|
|
1604
|
+
return;
|
|
1588
1605
|
if (
|
|
1589
1606
|
this.showCirculate != undefined &&
|
|
1590
1607
|
!this.showCirculate &&
|
|
@@ -2961,7 +2978,7 @@ export default {
|
|
|
2961
2978
|
this.circularReadParamsMap.circularReadOrgRoleCode;
|
|
2962
2979
|
}
|
|
2963
2980
|
this.currentOrgName = currentOrgName;
|
|
2964
|
-
this.nextOperateCheckType = nextOperateCheckType;
|
|
2981
|
+
this.nextOperateCheckType = nextOperateCheckType || 'select';
|
|
2965
2982
|
this.currentNodeIsCircularReadNode =
|
|
2966
2983
|
nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
|
|
2967
2984
|
|
|
@@ -352,7 +352,7 @@ export default {
|
|
|
352
352
|
},
|
|
353
353
|
data() {
|
|
354
354
|
return {
|
|
355
|
-
activeIndex: '
|
|
355
|
+
activeIndex: '0',
|
|
356
356
|
checkPassword: null,
|
|
357
357
|
checkPasswordMsg: null,
|
|
358
358
|
btnText: '获取验证码',
|
|
@@ -368,15 +368,10 @@ export default {
|
|
|
368
368
|
if (this.type) {
|
|
369
369
|
let types = this.type.split(',');
|
|
370
370
|
if (types.length) {
|
|
371
|
-
|
|
372
|
-
if (item != '0' && (item == '11' || item == '6')) {
|
|
373
|
-
this.activeIndex = item;
|
|
374
|
-
return;
|
|
375
|
-
}
|
|
376
|
-
});
|
|
371
|
+
this.activeIndex = types[0];
|
|
377
372
|
}
|
|
378
373
|
} else {
|
|
379
|
-
this.activeIndex =
|
|
374
|
+
this.activeIndex = '0';
|
|
380
375
|
}
|
|
381
376
|
},
|
|
382
377
|
destroyed() {
|
package/src/config/api.js
CHANGED
|
@@ -305,4 +305,11 @@ export const endFlowAndStartTaskCircularRead =
|
|
|
305
305
|
export const getNodeInfoForStart =
|
|
306
306
|
flowPendingPrefix + '/task/taskHandle/getNodeInfoForStart.dhtml';
|
|
307
307
|
export const freeStartFlow = '/bpm/bpmBackend/freeStartFlow';
|
|
308
|
-
export const getUrgencyLevelChangedNotificationType =
|
|
308
|
+
export const getUrgencyLevelChangedNotificationType =
|
|
309
|
+
'/bpm/bpmBackend/getUrgencyLevelChangedNotificationType';
|
|
310
|
+
// 自由发起传阅查询
|
|
311
|
+
export const toFreeTaskCircularRead = '/bpm/bpmBackend/toFreeTaskCircularRead';
|
|
312
|
+
// 自由发起传阅提交
|
|
313
|
+
export const freeTaskCircularRead =
|
|
314
|
+
'/bpm/bpmBackend/freeTaskCircularRead';
|
|
315
|
+
|