eoss-ui 0.6.84 → 0.6.85
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 +105 -93
- package/lib/button.js +105 -93
- package/lib/calogin.js +105 -93
- package/lib/checkbox-group.js +105 -93
- package/lib/data-table-form.js +105 -93
- package/lib/data-table.js +105 -93
- package/lib/date-picker.js +105 -93
- package/lib/dialog.js +105 -93
- package/lib/eoss-ui.common.js +416 -446
- package/lib/flow-group.js +112 -95
- package/lib/flow-list.js +105 -93
- package/lib/flow.js +185 -137
- package/lib/form.js +216 -264
- package/lib/handle-user.js +105 -93
- package/lib/handler.js +105 -93
- package/lib/icon.js +105 -93
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/input-number.js +105 -93
- package/lib/input.js +105 -93
- package/lib/login.js +112 -97
- package/lib/main.js +105 -93
- package/lib/nav.js +105 -93
- package/lib/page.js +105 -93
- package/lib/pagination.js +105 -93
- package/lib/player.js +105 -93
- package/lib/qr-code.js +105 -93
- package/lib/radio-group.js +105 -93
- package/lib/retrial-auth.js +105 -93
- package/lib/select-ganged.js +105 -93
- package/lib/select.js +105 -93
- package/lib/selector-panel.js +105 -93
- package/lib/selector.js +123 -99
- package/lib/sizer.js +105 -93
- package/lib/steps.js +105 -93
- package/lib/switch.js +105 -93
- package/lib/table-form.js +164 -190
- package/lib/tabs.js +105 -93
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/icon.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +105 -93
- package/lib/tree-group.js +105 -93
- package/lib/tree.js +105 -93
- package/lib/upload.js +105 -93
- package/lib/utils/util.js +105 -93
- package/lib/wujie.js +105 -93
- package/lib/wxlogin.js +105 -93
- package/package.json +1 -1
- package/packages/flow/src/component/taskUnionExamine.vue +17 -5
- package/packages/flow/src/main.vue +7 -3
- package/packages/flow/src/selectUser.vue +22 -8
- package/packages/flow/src/supervise.vue +1 -0
- package/packages/flow-group/src/main.vue +4 -0
- package/packages/form/src/main.vue +84 -72
- package/packages/form/src/table.vue +42 -36
- package/packages/icons/src/icon.json +1 -1
- package/packages/login/src/main.vue +5 -8
- package/packages/selector/src/main.vue +20 -4
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/icon.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/icon.scss +4 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +141 -129
package/lib/flow.js
CHANGED
|
@@ -257,99 +257,7 @@ var ajax = function ajax(_ref) {
|
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
259
|
if (response.status === 200) {
|
|
260
|
-
|
|
261
|
-
removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump', 'showLaunch']);
|
|
262
|
-
var href = '';
|
|
263
|
-
try {
|
|
264
|
-
href = win.top.location.href;
|
|
265
|
-
} catch (error) {
|
|
266
|
-
href = win.location.href;
|
|
267
|
-
}
|
|
268
|
-
if (href.indexOf('#/login') === -1 && href.indexOf('/login.html') === -1) {
|
|
269
|
-
var remind = sessionStorage.getItem('remind');
|
|
270
|
-
if (!remind) {
|
|
271
|
-
clearTimeout(loginMsg);
|
|
272
|
-
loginMsg = setTimeout(function () {
|
|
273
|
-
sessionStorage.setItem('remind', 1);
|
|
274
|
-
eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"].confirm(response.data.rCode === 69 ? '该账号在其他地方已登陆!' : '登录已过期,请重新登录!', '提示', response.data.rCode === 69 ? {
|
|
275
|
-
confirmButtonText: '确定',
|
|
276
|
-
closeOnClickModal: false,
|
|
277
|
-
type: 'warning'
|
|
278
|
-
} : {
|
|
279
|
-
confirmButtonText: '确定',
|
|
280
|
-
cancelButtonText: '取消',
|
|
281
|
-
closeOnClickModal: false,
|
|
282
|
-
type: 'warning'
|
|
283
|
-
}).then(function () {
|
|
284
|
-
try {
|
|
285
|
-
var loginPage = getStorage('login') || getStorage('loginPage');
|
|
286
|
-
if (loginPage) {
|
|
287
|
-
var src = void 0;
|
|
288
|
-
if (!startWith(loginPage, ['http', '/'], true)) {
|
|
289
|
-
var pathname = win.top.location.pathname;
|
|
290
|
-
if (pathname !== '/') {
|
|
291
|
-
pathname = pathname.split('/');
|
|
292
|
-
pathname.splice(pathname.length - 1);
|
|
293
|
-
pathname = pathname.join('/');
|
|
294
|
-
src = pathname + '/' + loginPage.replace('./', '');
|
|
295
|
-
} else {
|
|
296
|
-
src = pathname + loginPage.replace('./', '');
|
|
297
|
-
}
|
|
298
|
-
} else {
|
|
299
|
-
src = loginPage;
|
|
300
|
-
}
|
|
301
|
-
win.top.location.href = src;
|
|
302
|
-
} else if (win.top.location.href.indexOf('main.html') > -1) {
|
|
303
|
-
win.top.location.href = './login.html';
|
|
304
|
-
} else {
|
|
305
|
-
var hash = win.top.location.hash;
|
|
306
|
-
if (hash) {
|
|
307
|
-
var len = win.top.location.href.indexOf(hash);
|
|
308
|
-
win.top.location.href = win.location.href.slice(0, len) + '#/login';
|
|
309
|
-
} else {
|
|
310
|
-
win.top.location.href = '/login.html';
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
} catch (error) {
|
|
314
|
-
win.postMessage({ type: 1 }, '*');
|
|
315
|
-
}
|
|
316
|
-
}).catch(function (e) {
|
|
317
|
-
sessionStorage.removeItem('remind');
|
|
318
|
-
});
|
|
319
|
-
}, 2000);
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
} else if (response.data.rCode === 61) {
|
|
323
|
-
clearTimeout(initAuth);
|
|
324
|
-
initAuth = setTimeout(function () {
|
|
325
|
-
Object(eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"])({
|
|
326
|
-
title: '请进行二次鉴权',
|
|
327
|
-
closeOnClickModal: false,
|
|
328
|
-
closeOnPressEscape: false,
|
|
329
|
-
showConfirmButton: false,
|
|
330
|
-
dangerouslyUseHTMLString: true,
|
|
331
|
-
scroll: false,
|
|
332
|
-
customClass: 'es-retrial-auth-msg',
|
|
333
|
-
render: function render(h, msgBox) {
|
|
334
|
-
return h('es-retrial-auth', {
|
|
335
|
-
ref: 'auth',
|
|
336
|
-
props: {
|
|
337
|
-
reload: response.data.results.reload || response.data.results.refresh,
|
|
338
|
-
group: response.data.results.retrialAuthGroupIds,
|
|
339
|
-
type: response.data.results.retrialAuthType,
|
|
340
|
-
msgBox: msgBox
|
|
341
|
-
}
|
|
342
|
-
});
|
|
343
|
-
},
|
|
344
|
-
callback: function callback(res, obj) {
|
|
345
|
-
obj.$children.forEach(function (item) {
|
|
346
|
-
item.clearTimeouts && item.clearTimeouts();
|
|
347
|
-
return;
|
|
348
|
-
});
|
|
349
|
-
}
|
|
350
|
-
});
|
|
351
|
-
}, 1000);
|
|
352
|
-
}
|
|
260
|
+
responses(response.data);
|
|
353
261
|
// eslint-disable-next-line no-undef
|
|
354
262
|
return Promise.resolve(JSON.parse(JSON.stringify(response.data)));
|
|
355
263
|
}
|
|
@@ -2870,6 +2778,109 @@ var replenish = function replenish(_ref15) {
|
|
|
2870
2778
|
return data;
|
|
2871
2779
|
};
|
|
2872
2780
|
|
|
2781
|
+
/**
|
|
2782
|
+
* responses
|
|
2783
|
+
* @desc:状态码响应
|
|
2784
|
+
* @author huangbo
|
|
2785
|
+
* @date 2022年5月7日
|
|
2786
|
+
* @param {object} [data] - 数字或字符串型数字
|
|
2787
|
+
**/
|
|
2788
|
+
var responses = function responses(data) {
|
|
2789
|
+
if (data.rCode === 64 || data.rCode === 65 || data.rCode === 67 || data.rCode === 69) {
|
|
2790
|
+
removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump', 'showLaunch']);
|
|
2791
|
+
var href = '';
|
|
2792
|
+
try {
|
|
2793
|
+
href = win.top.location.href;
|
|
2794
|
+
} catch (error) {
|
|
2795
|
+
href = win.location.href;
|
|
2796
|
+
}
|
|
2797
|
+
if (href.indexOf('#/login') === -1 && href.indexOf('/login.html') === -1) {
|
|
2798
|
+
var remind = sessionStorage.getItem('remind');
|
|
2799
|
+
if (!remind) {
|
|
2800
|
+
clearTimeout(loginMsg);
|
|
2801
|
+
loginMsg = setTimeout(function () {
|
|
2802
|
+
sessionStorage.setItem('remind', 1);
|
|
2803
|
+
eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"].confirm(data.rCode === 69 ? '该账号在其他地方已登陆!' : '登录已过期,请重新登录!', '提示', data.rCode === 69 ? {
|
|
2804
|
+
confirmButtonText: '确定',
|
|
2805
|
+
closeOnClickModal: false,
|
|
2806
|
+
type: 'warning'
|
|
2807
|
+
} : {
|
|
2808
|
+
confirmButtonText: '确定',
|
|
2809
|
+
cancelButtonText: '取消',
|
|
2810
|
+
closeOnClickModal: false,
|
|
2811
|
+
type: 'warning'
|
|
2812
|
+
}).then(function () {
|
|
2813
|
+
try {
|
|
2814
|
+
var loginPage = getStorage('login') || getStorage('loginPage');
|
|
2815
|
+
if (loginPage) {
|
|
2816
|
+
var src = void 0;
|
|
2817
|
+
if (!startWith(loginPage, ['http', '/'], true)) {
|
|
2818
|
+
var pathname = win.top.location.pathname;
|
|
2819
|
+
if (pathname !== '/') {
|
|
2820
|
+
pathname = pathname.split('/');
|
|
2821
|
+
pathname.splice(pathname.length - 1);
|
|
2822
|
+
pathname = pathname.join('/');
|
|
2823
|
+
src = pathname + '/' + loginPage.replace('./', '');
|
|
2824
|
+
} else {
|
|
2825
|
+
src = pathname + loginPage.replace('./', '');
|
|
2826
|
+
}
|
|
2827
|
+
} else {
|
|
2828
|
+
src = loginPage;
|
|
2829
|
+
}
|
|
2830
|
+
win.top.location.href = src;
|
|
2831
|
+
} else if (win.top.location.href.indexOf('main.html') > -1) {
|
|
2832
|
+
win.top.location.href = './login.html';
|
|
2833
|
+
} else {
|
|
2834
|
+
var hash = win.top.location.hash;
|
|
2835
|
+
if (hash) {
|
|
2836
|
+
var len = win.top.location.href.indexOf(hash);
|
|
2837
|
+
win.top.location.href = win.location.href.slice(0, len) + '#/login';
|
|
2838
|
+
} else {
|
|
2839
|
+
win.top.location.href = '/login.html';
|
|
2840
|
+
}
|
|
2841
|
+
}
|
|
2842
|
+
} catch (error) {
|
|
2843
|
+
win.postMessage({ type: 1 }, '*');
|
|
2844
|
+
}
|
|
2845
|
+
}).catch(function (e) {
|
|
2846
|
+
sessionStorage.removeItem('remind');
|
|
2847
|
+
});
|
|
2848
|
+
}, 2000);
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
} else if (data.rCode === 61) {
|
|
2852
|
+
clearTimeout(initAuth);
|
|
2853
|
+
initAuth = setTimeout(function () {
|
|
2854
|
+
Object(eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"])({
|
|
2855
|
+
title: '请进行二次鉴权',
|
|
2856
|
+
closeOnClickModal: false,
|
|
2857
|
+
closeOnPressEscape: false,
|
|
2858
|
+
showConfirmButton: false,
|
|
2859
|
+
dangerouslyUseHTMLString: true,
|
|
2860
|
+
scroll: false,
|
|
2861
|
+
customClass: 'es-retrial-auth-msg',
|
|
2862
|
+
render: function render(h, msgBox) {
|
|
2863
|
+
return h('es-retrial-auth', {
|
|
2864
|
+
ref: 'auth',
|
|
2865
|
+
props: {
|
|
2866
|
+
reload: data.results.reload || data.results.refresh,
|
|
2867
|
+
group: data.results.retrialAuthGroupIds,
|
|
2868
|
+
type: data.results.retrialAuthType,
|
|
2869
|
+
msgBox: msgBox
|
|
2870
|
+
}
|
|
2871
|
+
});
|
|
2872
|
+
},
|
|
2873
|
+
callback: function callback(res, obj) {
|
|
2874
|
+
obj.$children.forEach(function (item) {
|
|
2875
|
+
item.clearTimeouts && item.clearTimeouts();
|
|
2876
|
+
return;
|
|
2877
|
+
});
|
|
2878
|
+
}
|
|
2879
|
+
});
|
|
2880
|
+
}, 1000);
|
|
2881
|
+
}
|
|
2882
|
+
};
|
|
2883
|
+
|
|
2873
2884
|
/**
|
|
2874
2885
|
* rgbToHsv
|
|
2875
2886
|
* @desc:rgb转化成hsv
|
|
@@ -3526,6 +3537,7 @@ var watermark = function watermark(option) {
|
|
|
3526
3537
|
receiveMessage: receiveMessage,
|
|
3527
3538
|
removeStorage: removeStorage,
|
|
3528
3539
|
replenish: replenish,
|
|
3540
|
+
responses: responses,
|
|
3529
3541
|
rgbToHsv: rgbToHsv,
|
|
3530
3542
|
rmbToCapital: rmbToCapital,
|
|
3531
3543
|
sendMessage: sendMessage,
|
|
@@ -4469,7 +4481,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4469
4481
|
// ESM COMPAT FLAG
|
|
4470
4482
|
__webpack_require__.r(__webpack_exports__);
|
|
4471
4483
|
|
|
4472
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
4484
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=439fd8c6&
|
|
4473
4485
|
var render = function () {
|
|
4474
4486
|
var _vm = this
|
|
4475
4487
|
var _h = _vm.$createElement
|
|
@@ -6527,18 +6539,20 @@ var render = function () {
|
|
|
6527
6539
|
},
|
|
6528
6540
|
[_vm._v("不同意")]
|
|
6529
6541
|
),
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6542
|
+
!_vm.isHideTemporarySave
|
|
6543
|
+
? _c(
|
|
6544
|
+
"el-button",
|
|
6545
|
+
{
|
|
6546
|
+
staticClass: "es-button-agree-save",
|
|
6547
|
+
on: {
|
|
6548
|
+
click: function ($event) {
|
|
6549
|
+
_vm.saveInfo()
|
|
6550
|
+
},
|
|
6551
|
+
},
|
|
6537
6552
|
},
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
),
|
|
6553
|
+
[_vm._v("暂存")]
|
|
6554
|
+
)
|
|
6555
|
+
: _vm._e(),
|
|
6542
6556
|
],
|
|
6543
6557
|
1
|
|
6544
6558
|
)
|
|
@@ -6552,7 +6566,7 @@ var render = function () {
|
|
|
6552
6566
|
{ staticClass: "es-user-defined" },
|
|
6553
6567
|
[
|
|
6554
6568
|
_vm._l(
|
|
6555
|
-
_vm.hideBtn
|
|
6569
|
+
_vm.hideBtn || _vm.isHideTemporarySave
|
|
6556
6570
|
? _vm.btnList.slice(0, 1)
|
|
6557
6571
|
: _vm.btnList,
|
|
6558
6572
|
function (item) {
|
|
@@ -7341,7 +7355,7 @@ var staticRenderFns = []
|
|
|
7341
7355
|
render._withStripped = true
|
|
7342
7356
|
|
|
7343
7357
|
|
|
7344
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
7358
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=439fd8c6&
|
|
7345
7359
|
|
|
7346
7360
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
7347
7361
|
var regenerator_ = __webpack_require__(4);
|
|
@@ -9158,8 +9172,8 @@ processFormvue_type_template_id_09ba35c6_render._withStripped = true
|
|
|
9158
9172
|
|
|
9159
9173
|
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=09ba35c6&
|
|
9160
9174
|
|
|
9161
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=
|
|
9162
|
-
var
|
|
9175
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=3588d66f&
|
|
9176
|
+
var selectUservue_type_template_id_3588d66f_render = function () {
|
|
9163
9177
|
var _vm = this
|
|
9164
9178
|
var _h = _vm.$createElement
|
|
9165
9179
|
var _c = _vm._self._c || _h
|
|
@@ -9263,7 +9277,8 @@ var selectUservue_type_template_id_2f6c6827_render = function () {
|
|
|
9263
9277
|
{
|
|
9264
9278
|
class:
|
|
9265
9279
|
_vm.isCustomUser &&
|
|
9266
|
-
_vm.isCurrentNodeForbiddenChangeCandidate == 0
|
|
9280
|
+
_vm.isCurrentNodeForbiddenChangeCandidate == 0 &&
|
|
9281
|
+
!_vm.isUnionSeal
|
|
9267
9282
|
? ""
|
|
9268
9283
|
: "no-icon",
|
|
9269
9284
|
attrs: {
|
|
@@ -9273,10 +9288,12 @@ var selectUservue_type_template_id_2f6c6827_render = function () {
|
|
|
9273
9288
|
title: _vm.title,
|
|
9274
9289
|
max: "5",
|
|
9275
9290
|
mix: _vm.mix,
|
|
9291
|
+
min: _vm.isUnionSeal ? 1 : 0,
|
|
9276
9292
|
disabled:
|
|
9277
9293
|
!_vm.isCustomUser ||
|
|
9278
9294
|
_vm.isCurrentNodeForbiddenChangeCandidate == 1,
|
|
9279
|
-
filterable: Boolean(_vm.isCustomUser),
|
|
9295
|
+
filterable: Boolean(_vm.isCustomUser && !_vm.isUnionSeal),
|
|
9296
|
+
select: _vm.isUnionSeal == false,
|
|
9280
9297
|
where: _vm.newWhere,
|
|
9281
9298
|
multiple: _vm.newMultiple,
|
|
9282
9299
|
param: Object.assign({}, _vm.newParams, { info: "no" }),
|
|
@@ -9304,11 +9321,11 @@ var selectUservue_type_template_id_2f6c6827_render = function () {
|
|
|
9304
9321
|
2
|
|
9305
9322
|
)
|
|
9306
9323
|
}
|
|
9307
|
-
var
|
|
9308
|
-
|
|
9324
|
+
var selectUservue_type_template_id_3588d66f_staticRenderFns = []
|
|
9325
|
+
selectUservue_type_template_id_3588d66f_render._withStripped = true
|
|
9309
9326
|
|
|
9310
9327
|
|
|
9311
|
-
// CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=
|
|
9328
|
+
// CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=3588d66f&
|
|
9312
9329
|
|
|
9313
9330
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=script&lang=js&
|
|
9314
9331
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -9405,6 +9422,10 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
9405
9422
|
//
|
|
9406
9423
|
//
|
|
9407
9424
|
//
|
|
9425
|
+
//
|
|
9426
|
+
//
|
|
9427
|
+
//
|
|
9428
|
+
//
|
|
9408
9429
|
|
|
9409
9430
|
|
|
9410
9431
|
|
|
@@ -9418,6 +9439,10 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
9418
9439
|
tabs: {
|
|
9419
9440
|
type: Object
|
|
9420
9441
|
},
|
|
9442
|
+
isUnionSeal: {
|
|
9443
|
+
type: Boolean,
|
|
9444
|
+
default: false
|
|
9445
|
+
},
|
|
9421
9446
|
nextUser: {
|
|
9422
9447
|
default: function _default() {
|
|
9423
9448
|
return [];
|
|
@@ -9515,7 +9540,10 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
9515
9540
|
|
|
9516
9541
|
computed: {
|
|
9517
9542
|
newWhere: function newWhere() {
|
|
9518
|
-
return _extends({
|
|
9543
|
+
return _extends({
|
|
9544
|
+
mid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId + '-org-1',
|
|
9545
|
+
filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
|
|
9546
|
+
}, this.where);
|
|
9519
9547
|
}
|
|
9520
9548
|
},
|
|
9521
9549
|
watch: {
|
|
@@ -9791,8 +9819,8 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
9791
9819
|
|
|
9792
9820
|
var selectUser_component = Object(componentNormalizer["a" /* default */])(
|
|
9793
9821
|
src_selectUservue_type_script_lang_js_,
|
|
9794
|
-
|
|
9795
|
-
|
|
9822
|
+
selectUservue_type_template_id_3588d66f_render,
|
|
9823
|
+
selectUservue_type_template_id_3588d66f_staticRenderFns,
|
|
9796
9824
|
false,
|
|
9797
9825
|
null,
|
|
9798
9826
|
null,
|
|
@@ -15742,8 +15770,8 @@ var reset_component = Object(componentNormalizer["a" /* default */])(
|
|
|
15742
15770
|
)
|
|
15743
15771
|
|
|
15744
15772
|
/* harmony default export */ var src_reset = (reset_component.exports);
|
|
15745
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
15746
|
-
var
|
|
15773
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=97551c4a&
|
|
15774
|
+
var taskUnionExaminevue_type_template_id_97551c4a_render = function () {
|
|
15747
15775
|
var _vm = this
|
|
15748
15776
|
var _h = _vm.$createElement
|
|
15749
15777
|
var _c = _vm._self._c || _h
|
|
@@ -15817,6 +15845,8 @@ var taskUnionExaminevue_type_template_id_5a4f1a86_render = function () {
|
|
|
15817
15845
|
: _vm.infoList.nextCurrentOrgObj,
|
|
15818
15846
|
multiple: _vm.newMultiple,
|
|
15819
15847
|
mix: _vm.currentMix,
|
|
15848
|
+
isUnionSeal: _vm.type == "unionSeal",
|
|
15849
|
+
selectUserList: _vm.unionSealData || [],
|
|
15820
15850
|
types:
|
|
15821
15851
|
_vm.type == "takeAdvice"
|
|
15822
15852
|
? _vm.currentOrgTabs.length > 0
|
|
@@ -16000,11 +16030,11 @@ var taskUnionExaminevue_type_template_id_5a4f1a86_render = function () {
|
|
|
16000
16030
|
1
|
|
16001
16031
|
)
|
|
16002
16032
|
}
|
|
16003
|
-
var
|
|
16004
|
-
|
|
16033
|
+
var taskUnionExaminevue_type_template_id_97551c4a_staticRenderFns = []
|
|
16034
|
+
taskUnionExaminevue_type_template_id_97551c4a_render._withStripped = true
|
|
16005
16035
|
|
|
16006
16036
|
|
|
16007
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
16037
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=97551c4a&
|
|
16008
16038
|
|
|
16009
16039
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
|
|
16010
16040
|
var taskUnionExaminevue_type_script_lang_js_components;
|
|
@@ -16139,6 +16169,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16139
16169
|
//
|
|
16140
16170
|
//
|
|
16141
16171
|
//
|
|
16172
|
+
//
|
|
16173
|
+
//
|
|
16142
16174
|
|
|
16143
16175
|
|
|
16144
16176
|
|
|
@@ -16172,6 +16204,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16172
16204
|
opinion: ''
|
|
16173
16205
|
},
|
|
16174
16206
|
onlyName: '',
|
|
16207
|
+
unionSealData: [],
|
|
16175
16208
|
currentOrgTabs: [],
|
|
16176
16209
|
foreignOrgTabs: [],
|
|
16177
16210
|
foreignOrgTabsParam: {},
|
|
@@ -16321,10 +16354,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16321
16354
|
isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
|
|
16322
16355
|
isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
|
|
16323
16356
|
|
|
16324
|
-
console.log(otherOrgDisabledObjId, 'otherOrgDisabledObjId');
|
|
16325
16357
|
if (otherOrgDisabledObjId) {
|
|
16326
16358
|
_this3.otherOrgDisabledObjId = otherOrgDisabledObjId.split(',');
|
|
16327
|
-
console.log(_this3.otherOrgDisabledObjId, otherOrgDisabledObjId.split(','));
|
|
16328
16359
|
}
|
|
16329
16360
|
if (res.data.customizedConfig) {
|
|
16330
16361
|
if (res.data.customizedConfig.currentOrgSelectorCustomized) {
|
|
@@ -16369,8 +16400,18 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16369
16400
|
}
|
|
16370
16401
|
_this3.isOpinionRequired = isOpinionRequired;
|
|
16371
16402
|
if (_this3.type == 'unionSeal') {
|
|
16372
|
-
|
|
16373
|
-
|
|
16403
|
+
var names = unionDispatchOrgName.split(',');
|
|
16404
|
+
var ids = unionDispatchOrgId.split(',');
|
|
16405
|
+
names.map(function (x, i) {
|
|
16406
|
+
if (x) {
|
|
16407
|
+
_this3.unionSealData.push({
|
|
16408
|
+
showname: x,
|
|
16409
|
+
showid: ids[i]
|
|
16410
|
+
});
|
|
16411
|
+
}
|
|
16412
|
+
});
|
|
16413
|
+
// this.onlyName = unionDispatchOrgName;
|
|
16414
|
+
// this.infoList.nextOtherOrgObj.push(unionDispatchOrgId);
|
|
16374
16415
|
}
|
|
16375
16416
|
if (_this3.type == 'twoOfficesDispatch') {
|
|
16376
16417
|
_this3.onlyName = orgNames;
|
|
@@ -16429,7 +16470,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16429
16470
|
data: {
|
|
16430
16471
|
opinion: opinion,
|
|
16431
16472
|
pendingId: pendingId,
|
|
16432
|
-
nextOtherOrgObj:
|
|
16473
|
+
nextOtherOrgObj: this.type == 'unionSeal' ? this.unionSealData.map(function (x) {
|
|
16474
|
+
return x.showid;
|
|
16475
|
+
}).join(',') : Array.isArray(nextOtherOrgObj) ? nextOtherOrgObj.join(',') : nextOtherOrgObj,
|
|
16433
16476
|
nextCurrentOrgObj: Array.isArray(nextCurrentOrgObj) ? nextCurrentOrgObj.join(',') : nextCurrentOrgObj,
|
|
16434
16477
|
notificationMsg: noticeInfo,
|
|
16435
16478
|
notificationType: noticeType.join(','),
|
|
@@ -16575,8 +16618,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
16575
16618
|
|
|
16576
16619
|
var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
16577
16620
|
component_taskUnionExaminevue_type_script_lang_js_,
|
|
16578
|
-
|
|
16579
|
-
|
|
16621
|
+
taskUnionExaminevue_type_template_id_97551c4a_render,
|
|
16622
|
+
taskUnionExaminevue_type_template_id_97551c4a_staticRenderFns,
|
|
16580
16623
|
false,
|
|
16581
16624
|
null,
|
|
16582
16625
|
null,
|
|
@@ -21386,8 +21429,8 @@ var freeStartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
21386
21429
|
)
|
|
21387
21430
|
|
|
21388
21431
|
/* harmony default export */ var freeStartFlow = (freeStartFlow_component.exports);
|
|
21389
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=template&id=
|
|
21390
|
-
var
|
|
21432
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=template&id=5fbd4d48&
|
|
21433
|
+
var supervisevue_type_template_id_5fbd4d48_render = function () {
|
|
21391
21434
|
var _vm = this
|
|
21392
21435
|
var _h = _vm.$createElement
|
|
21393
21436
|
var _c = _vm._self._c || _h
|
|
@@ -21540,11 +21583,11 @@ var supervisevue_type_template_id_36b18004_render = function () {
|
|
|
21540
21583
|
1
|
|
21541
21584
|
)
|
|
21542
21585
|
}
|
|
21543
|
-
var
|
|
21544
|
-
|
|
21586
|
+
var supervisevue_type_template_id_5fbd4d48_staticRenderFns = []
|
|
21587
|
+
supervisevue_type_template_id_5fbd4d48_render._withStripped = true
|
|
21545
21588
|
|
|
21546
21589
|
|
|
21547
|
-
// CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=
|
|
21590
|
+
// CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=5fbd4d48&
|
|
21548
21591
|
|
|
21549
21592
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=script&lang=js&
|
|
21550
21593
|
var supervisevue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -21684,6 +21727,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
21684
21727
|
url: api["hc" /* toTaskSupervise */],
|
|
21685
21728
|
params: {
|
|
21686
21729
|
businessId: this.businessId,
|
|
21730
|
+
appId: this.appId,
|
|
21687
21731
|
userId: util["a" /* default */].getStorage('userId')
|
|
21688
21732
|
}
|
|
21689
21733
|
}).then(function (res) {
|
|
@@ -21714,8 +21758,8 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
21714
21758
|
|
|
21715
21759
|
var supervise_component = Object(componentNormalizer["a" /* default */])(
|
|
21716
21760
|
src_supervisevue_type_script_lang_js_,
|
|
21717
|
-
|
|
21718
|
-
|
|
21761
|
+
supervisevue_type_template_id_5fbd4d48_render,
|
|
21762
|
+
supervisevue_type_template_id_5fbd4d48_staticRenderFns,
|
|
21719
21763
|
false,
|
|
21720
21764
|
null,
|
|
21721
21765
|
null,
|
|
@@ -23415,6 +23459,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
23415
23459
|
//
|
|
23416
23460
|
//
|
|
23417
23461
|
//
|
|
23462
|
+
//
|
|
23418
23463
|
|
|
23419
23464
|
|
|
23420
23465
|
|
|
@@ -23501,6 +23546,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
23501
23546
|
styles: {},
|
|
23502
23547
|
optionsKey: 0,
|
|
23503
23548
|
endMessage: '',
|
|
23549
|
+
isHideTemporarySave: false,
|
|
23504
23550
|
oldNextOperate: '',
|
|
23505
23551
|
taskOperationShiftedNodeList: null,
|
|
23506
23552
|
currentNodeEnableItemHandleDescription: false,
|
|
@@ -23799,6 +23845,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
23799
23845
|
};
|
|
23800
23846
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
23801
23847
|
if (res.status == 'success') {
|
|
23848
|
+
_this.isHideTemporarySave = res.data.nodeExtAttr.isHideTemporarySave == 1;
|
|
23802
23849
|
_this.isBanInputOpinion = res.data.nodeExtAttr.isBanInputOpinion;
|
|
23803
23850
|
_this.directCreateCircularReadWhenFlowStarted = res.data.nodeExtAttr.directCreateCircularReadWhenFlowStarted == 1;
|
|
23804
23851
|
|
|
@@ -24475,7 +24522,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
24475
24522
|
} else if (res.fun === 'toUnionSeal()') {
|
|
24476
24523
|
// 联合用印
|
|
24477
24524
|
this.flowType = 'unionSeal';
|
|
24478
|
-
this.flowDisabled =
|
|
24525
|
+
this.flowDisabled = false;
|
|
24479
24526
|
this.flowTitle = res.value;
|
|
24480
24527
|
this.toStartDraf(res);
|
|
24481
24528
|
} else if (res.fun == 'toTwoOfficesDispatch()') {
|
|
@@ -25035,6 +25082,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
25035
25082
|
});
|
|
25036
25083
|
});
|
|
25037
25084
|
}
|
|
25085
|
+
_this27.isHideTemporarySave = nodeInfoMap.nodeExtAttr.isHideTemporarySave == 1;
|
|
25038
25086
|
_this27.pendingItemHandleDescription = pendingItemHandleDescription;
|
|
25039
25087
|
if (currentOrgSelectorParams.enableCurrentOrgConfig == 'true') {
|
|
25040
25088
|
_this27.currentOrgSelectorTabs = currentOrgSelectorParams.currentOrgType.split(',');
|