eoss-ui 0.7.21 → 0.7.23
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 +5 -4
- package/lib/button.js +5 -4
- package/lib/calogin.js +5 -4
- package/lib/checkbox-group.js +5 -4
- package/lib/data-table-form.js +5 -4
- package/lib/data-table.js +5 -4
- package/lib/date-picker.js +5 -4
- package/lib/dialog.js +5 -4
- package/lib/eoss-ui.common.js +47 -31
- package/lib/flow-group.js +5 -4
- package/lib/flow-list.js +5 -4
- package/lib/flow.js +17 -11
- package/lib/form.js +5 -4
- package/lib/handle-user.js +5 -4
- package/lib/handler.js +5 -4
- package/lib/icon.js +5 -4
- package/lib/index.js +1 -1
- package/lib/input-number.js +5 -4
- package/lib/input.js +5 -4
- package/lib/login.js +19 -8
- package/lib/main.js +15 -14
- package/lib/nav.js +5 -4
- package/lib/page.js +5 -4
- package/lib/pagination.js +5 -4
- package/lib/player.js +5 -4
- package/lib/qr-code.js +5 -4
- package/lib/radio-group.js +5 -4
- package/lib/retrial-auth.js +5 -4
- package/lib/select-ganged.js +5 -4
- package/lib/select.js +5 -4
- package/lib/selector-panel.js +5 -4
- package/lib/selector.js +5 -4
- package/lib/sizer.js +5 -4
- package/lib/steps.js +5 -4
- package/lib/switch.js +5 -4
- package/lib/table-form.js +5 -4
- package/lib/tabs.js +5 -4
- package/lib/tips.js +5 -4
- package/lib/tree-group.js +5 -4
- package/lib/tree.js +5 -4
- package/lib/upload.js +5 -4
- package/lib/utils/util.js +5 -4
- package/lib/wujie.js +5 -4
- package/lib/wxlogin.js +5 -4
- package/package.json +1 -1
- package/packages/flow/src/processForm.vue +4 -0
- package/packages/login/src/main.vue +20 -2
- package/packages/main/src/simplicity/index.vue +2 -2
- package/src/index.js +1 -1
- package/src/utils/util.js +6 -5
package/lib/button-group.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/button.js
CHANGED
|
@@ -243,16 +243,17 @@ var ajax = function ajax(_ref) {
|
|
|
243
243
|
http.interceptors.response.use(function (response) {
|
|
244
244
|
// delPendingRequest(response.config);
|
|
245
245
|
loading && loading.close();
|
|
246
|
-
if (response.headers.authorization
|
|
247
|
-
setStorage({
|
|
246
|
+
if (response.headers.authorization) {
|
|
247
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
248
|
+
|
|
248
249
|
key: ['token', 'Authorization'],
|
|
249
250
|
value: response.headers.authorization
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
253
254
|
|
|
254
|
-
if (ssId
|
|
255
|
-
setStorage({
|
|
255
|
+
if (ssId) {
|
|
256
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
256
257
|
key: 'ssId',
|
|
257
258
|
value: ssId
|
|
258
259
|
});
|
package/lib/calogin.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/checkbox-group.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/data-table-form.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/data-table.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/date-picker.js
CHANGED
|
@@ -243,16 +243,17 @@ var ajax = function ajax(_ref) {
|
|
|
243
243
|
http.interceptors.response.use(function (response) {
|
|
244
244
|
// delPendingRequest(response.config);
|
|
245
245
|
loading && loading.close();
|
|
246
|
-
if (response.headers.authorization
|
|
247
|
-
setStorage({
|
|
246
|
+
if (response.headers.authorization) {
|
|
247
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
248
|
+
|
|
248
249
|
key: ['token', 'Authorization'],
|
|
249
250
|
value: response.headers.authorization
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
253
254
|
|
|
254
|
-
if (ssId
|
|
255
|
-
setStorage({
|
|
255
|
+
if (ssId) {
|
|
256
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
256
257
|
key: 'ssId',
|
|
257
258
|
value: ssId
|
|
258
259
|
});
|
package/lib/dialog.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/eoss-ui.common.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
|
@@ -31601,8 +31602,8 @@ var CommonOpinions_component = normalizeComponent(
|
|
|
31601
31602
|
)
|
|
31602
31603
|
|
|
31603
31604
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
31604
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
31605
|
-
var
|
|
31605
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=46843512&
|
|
31606
|
+
var processFormvue_type_template_id_46843512_render = function () {
|
|
31606
31607
|
var _vm = this
|
|
31607
31608
|
var _h = _vm.$createElement
|
|
31608
31609
|
var _c = _vm._self._c || _h
|
|
@@ -31888,6 +31889,8 @@ var processFormvue_type_template_id_e6806444_render = function () {
|
|
|
31888
31889
|
radioList: _vm.radioList,
|
|
31889
31890
|
multiple: _vm.multiple,
|
|
31890
31891
|
isCustomUser: !_vm.isShowNextUser ? 1 : _vm.isCustomUser,
|
|
31892
|
+
isCurrentNodeForbiddenChangeCandidate:
|
|
31893
|
+
_vm.isCurrentNodeForbiddenChangeCandidate,
|
|
31891
31894
|
options: _vm.options,
|
|
31892
31895
|
presetEdit: _vm.presetEdit,
|
|
31893
31896
|
mix: _vm.multiple,
|
|
@@ -32379,11 +32382,11 @@ var processFormvue_type_template_id_e6806444_render = function () {
|
|
|
32379
32382
|
1
|
|
32380
32383
|
)
|
|
32381
32384
|
}
|
|
32382
|
-
var
|
|
32383
|
-
|
|
32385
|
+
var processFormvue_type_template_id_46843512_staticRenderFns = []
|
|
32386
|
+
processFormvue_type_template_id_46843512_render._withStripped = true
|
|
32384
32387
|
|
|
32385
32388
|
|
|
32386
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
32389
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=46843512&
|
|
32387
32390
|
|
|
32388
32391
|
// 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=4750588e&
|
|
32389
32392
|
var selectUservue_type_template_id_4750588e_render = function () {
|
|
@@ -34273,6 +34276,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
34273
34276
|
//
|
|
34274
34277
|
//
|
|
34275
34278
|
//
|
|
34279
|
+
//
|
|
34276
34280
|
|
|
34277
34281
|
|
|
34278
34282
|
|
|
@@ -34353,6 +34357,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
34353
34357
|
return {
|
|
34354
34358
|
loading: false,
|
|
34355
34359
|
isCustomUser: 0,
|
|
34360
|
+
isCurrentNodeForbiddenChangeCandidate: 0,
|
|
34356
34361
|
allLoading: null,
|
|
34357
34362
|
selectUser: false,
|
|
34358
34363
|
multiple: false,
|
|
@@ -34895,6 +34900,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
34895
34900
|
_this6.allLoading.close();
|
|
34896
34901
|
}
|
|
34897
34902
|
if (status === 'success') {
|
|
34903
|
+
_this6.isCurrentNodeForbiddenChangeCandidate = nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
|
|
34898
34904
|
_this6.nextNode.userInfo = nextUserList;
|
|
34899
34905
|
_this6.countersignaturetypeCode = countersignaturetypeCode;
|
|
34900
34906
|
_this6.nextNode.countersignaturetypeText = countersignaturetypeText;
|
|
@@ -35177,8 +35183,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
35177
35183
|
|
|
35178
35184
|
var processForm_component = normalizeComponent(
|
|
35179
35185
|
src_processFormvue_type_script_lang_js_,
|
|
35180
|
-
|
|
35181
|
-
|
|
35186
|
+
processFormvue_type_template_id_46843512_render,
|
|
35187
|
+
processFormvue_type_template_id_46843512_staticRenderFns,
|
|
35182
35188
|
false,
|
|
35183
35189
|
null,
|
|
35184
35190
|
null,
|
|
@@ -56568,8 +56574,8 @@ layout_src_main.install = function (Vue) {
|
|
|
56568
56574
|
};
|
|
56569
56575
|
|
|
56570
56576
|
/* harmony default export */ var packages_layout = (layout_src_main);
|
|
56571
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=
|
|
56572
|
-
var
|
|
56577
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=3be2e7f1&
|
|
56578
|
+
var mainvue_type_template_id_3be2e7f1_render = function () {
|
|
56573
56579
|
var _vm = this
|
|
56574
56580
|
var _h = _vm.$createElement
|
|
56575
56581
|
var _c = _vm._self._c || _h
|
|
@@ -57844,7 +57850,7 @@ var mainvue_type_template_id_53be147b_render = function () {
|
|
|
57844
57850
|
)
|
|
57845
57851
|
: _vm._e()
|
|
57846
57852
|
}
|
|
57847
|
-
var
|
|
57853
|
+
var mainvue_type_template_id_3be2e7f1_staticRenderFns = [
|
|
57848
57854
|
function () {
|
|
57849
57855
|
var _vm = this
|
|
57850
57856
|
var _h = _vm.$createElement
|
|
@@ -57859,10 +57865,10 @@ var mainvue_type_template_id_53be147b_staticRenderFns = [
|
|
|
57859
57865
|
])
|
|
57860
57866
|
},
|
|
57861
57867
|
]
|
|
57862
|
-
|
|
57868
|
+
mainvue_type_template_id_3be2e7f1_render._withStripped = true
|
|
57863
57869
|
|
|
57864
57870
|
|
|
57865
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
57871
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=3be2e7f1&
|
|
57866
57872
|
|
|
57867
57873
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=325dc074&
|
|
57868
57874
|
var resetPasswordvue_type_template_id_325dc074_render = function () {
|
|
@@ -60111,9 +60117,19 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
60111
60117
|
}).then(function (res) {
|
|
60112
60118
|
if (res.rCode === 0) {
|
|
60113
60119
|
var results = res.results;
|
|
60114
|
-
if (results.statusCode === 0) {
|
|
60120
|
+
if (results.statusCode === 0 || results.statusCode === 2) {
|
|
60121
|
+
// statusCode为2时 代表密码过期,也应执行handleResults
|
|
60115
60122
|
clearTimeout(_this12.interval);
|
|
60116
|
-
|
|
60123
|
+
if (results.statusCode === 2) {
|
|
60124
|
+
_this12.$alert(results.msg ? results.msg : '您的初始密码已过期,请及时修改!', '提示', {
|
|
60125
|
+
confirmButtonText: '确定',
|
|
60126
|
+
type: 'warning'
|
|
60127
|
+
}).then(function () {
|
|
60128
|
+
_this12.handleResults(results, 3);
|
|
60129
|
+
}).catch(function (e) {});
|
|
60130
|
+
} else {
|
|
60131
|
+
_this12.handleResults(results, 3);
|
|
60132
|
+
}
|
|
60117
60133
|
} else {
|
|
60118
60134
|
_this12.loginInfo(true);
|
|
60119
60135
|
}
|
|
@@ -60327,8 +60343,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
60327
60343
|
|
|
60328
60344
|
var login_src_main_component = normalizeComponent(
|
|
60329
60345
|
packages_login_src_mainvue_type_script_lang_js_,
|
|
60330
|
-
|
|
60331
|
-
|
|
60346
|
+
mainvue_type_template_id_3be2e7f1_render,
|
|
60347
|
+
mainvue_type_template_id_3be2e7f1_staticRenderFns,
|
|
60332
60348
|
false,
|
|
60333
60349
|
null,
|
|
60334
60350
|
null,
|
|
@@ -60449,8 +60465,8 @@ mainvue_type_template_id_d57cecee_render._withStripped = true
|
|
|
60449
60465
|
|
|
60450
60466
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=d57cecee&
|
|
60451
60467
|
|
|
60452
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
60453
|
-
var
|
|
60468
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=7cb3c8cc&scoped=true&
|
|
60469
|
+
var simplicityvue_type_template_id_7cb3c8cc_scoped_true_render = function () {
|
|
60454
60470
|
var _vm = this
|
|
60455
60471
|
var _h = _vm.$createElement
|
|
60456
60472
|
var _c = _vm._self._c || _h
|
|
@@ -61144,11 +61160,11 @@ var simplicityvue_type_template_id_1f6395a8_scoped_true_render = function () {
|
|
|
61144
61160
|
),
|
|
61145
61161
|
])
|
|
61146
61162
|
}
|
|
61147
|
-
var
|
|
61148
|
-
|
|
61163
|
+
var simplicityvue_type_template_id_7cb3c8cc_scoped_true_staticRenderFns = []
|
|
61164
|
+
simplicityvue_type_template_id_7cb3c8cc_scoped_true_render._withStripped = true
|
|
61149
61165
|
|
|
61150
61166
|
|
|
61151
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
61167
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=7cb3c8cc&scoped=true&
|
|
61152
61168
|
|
|
61153
61169
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
|
|
61154
61170
|
var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
|
|
@@ -68590,11 +68606,11 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
68590
68606
|
}
|
|
68591
68607
|
if (close) {
|
|
68592
68608
|
if (close === old) {
|
|
68593
|
-
this.tabs.splice(n,
|
|
68609
|
+
this.tabs.splice(n, 1);
|
|
68594
68610
|
} else {
|
|
68595
68611
|
var d = utils_util["a" /* default */].indexOfObj(this.tabs, close, 'id,code,appCode');
|
|
68596
68612
|
if (d > -1) {
|
|
68597
|
-
this.tabs.splice(d,
|
|
68613
|
+
this.tabs.splice(d, 1);
|
|
68598
68614
|
}
|
|
68599
68615
|
}
|
|
68600
68616
|
}
|
|
@@ -68645,11 +68661,11 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
68645
68661
|
|
|
68646
68662
|
var simplicity_component = normalizeComponent(
|
|
68647
68663
|
src_simplicityvue_type_script_lang_js_,
|
|
68648
|
-
|
|
68649
|
-
|
|
68664
|
+
simplicityvue_type_template_id_7cb3c8cc_scoped_true_render,
|
|
68665
|
+
simplicityvue_type_template_id_7cb3c8cc_scoped_true_staticRenderFns,
|
|
68650
68666
|
false,
|
|
68651
68667
|
null,
|
|
68652
|
-
"
|
|
68668
|
+
"7cb3c8cc",
|
|
68653
68669
|
null
|
|
68654
68670
|
|
|
68655
68671
|
)
|
|
@@ -93791,7 +93807,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
93791
93807
|
}
|
|
93792
93808
|
|
|
93793
93809
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
93794
|
-
version: '0.7.
|
|
93810
|
+
version: '0.7.23',
|
|
93795
93811
|
install: install,
|
|
93796
93812
|
Button: packages_button,
|
|
93797
93813
|
ButtonGroup: button_group,
|
package/lib/flow-group.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/flow-list.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/flow.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
|
@@ -8558,8 +8559,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
|
|
|
8558
8559
|
)
|
|
8559
8560
|
|
|
8560
8561
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
8561
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
8562
|
-
var
|
|
8562
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=46843512&
|
|
8563
|
+
var processFormvue_type_template_id_46843512_render = function () {
|
|
8563
8564
|
var _vm = this
|
|
8564
8565
|
var _h = _vm.$createElement
|
|
8565
8566
|
var _c = _vm._self._c || _h
|
|
@@ -8845,6 +8846,8 @@ var processFormvue_type_template_id_e6806444_render = function () {
|
|
|
8845
8846
|
radioList: _vm.radioList,
|
|
8846
8847
|
multiple: _vm.multiple,
|
|
8847
8848
|
isCustomUser: !_vm.isShowNextUser ? 1 : _vm.isCustomUser,
|
|
8849
|
+
isCurrentNodeForbiddenChangeCandidate:
|
|
8850
|
+
_vm.isCurrentNodeForbiddenChangeCandidate,
|
|
8848
8851
|
options: _vm.options,
|
|
8849
8852
|
presetEdit: _vm.presetEdit,
|
|
8850
8853
|
mix: _vm.multiple,
|
|
@@ -9336,11 +9339,11 @@ var processFormvue_type_template_id_e6806444_render = function () {
|
|
|
9336
9339
|
1
|
|
9337
9340
|
)
|
|
9338
9341
|
}
|
|
9339
|
-
var
|
|
9340
|
-
|
|
9342
|
+
var processFormvue_type_template_id_46843512_staticRenderFns = []
|
|
9343
|
+
processFormvue_type_template_id_46843512_render._withStripped = true
|
|
9341
9344
|
|
|
9342
9345
|
|
|
9343
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
9346
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=46843512&
|
|
9344
9347
|
|
|
9345
9348
|
// 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=4750588e&
|
|
9346
9349
|
var selectUservue_type_template_id_4750588e_render = function () {
|
|
@@ -11230,6 +11233,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
11230
11233
|
//
|
|
11231
11234
|
//
|
|
11232
11235
|
//
|
|
11236
|
+
//
|
|
11233
11237
|
|
|
11234
11238
|
|
|
11235
11239
|
|
|
@@ -11310,6 +11314,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
11310
11314
|
return {
|
|
11311
11315
|
loading: false,
|
|
11312
11316
|
isCustomUser: 0,
|
|
11317
|
+
isCurrentNodeForbiddenChangeCandidate: 0,
|
|
11313
11318
|
allLoading: null,
|
|
11314
11319
|
selectUser: false,
|
|
11315
11320
|
multiple: false,
|
|
@@ -11852,6 +11857,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
11852
11857
|
_this6.allLoading.close();
|
|
11853
11858
|
}
|
|
11854
11859
|
if (status === 'success') {
|
|
11860
|
+
_this6.isCurrentNodeForbiddenChangeCandidate = nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
|
|
11855
11861
|
_this6.nextNode.userInfo = nextUserList;
|
|
11856
11862
|
_this6.countersignaturetypeCode = countersignaturetypeCode;
|
|
11857
11863
|
_this6.nextNode.countersignaturetypeText = countersignaturetypeText;
|
|
@@ -12134,8 +12140,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12134
12140
|
|
|
12135
12141
|
var processForm_component = Object(componentNormalizer["a" /* default */])(
|
|
12136
12142
|
src_processFormvue_type_script_lang_js_,
|
|
12137
|
-
|
|
12138
|
-
|
|
12143
|
+
processFormvue_type_template_id_46843512_render,
|
|
12144
|
+
processFormvue_type_template_id_46843512_staticRenderFns,
|
|
12139
12145
|
false,
|
|
12140
12146
|
null,
|
|
12141
12147
|
null,
|
package/lib/form.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/handle-user.js
CHANGED
|
@@ -242,16 +242,17 @@ var ajax = function ajax(_ref) {
|
|
|
242
242
|
http.interceptors.response.use(function (response) {
|
|
243
243
|
// delPendingRequest(response.config);
|
|
244
244
|
loading && loading.close();
|
|
245
|
-
if (response.headers.authorization
|
|
246
|
-
setStorage({
|
|
245
|
+
if (response.headers.authorization) {
|
|
246
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
247
|
+
|
|
247
248
|
key: ['token', 'Authorization'],
|
|
248
249
|
value: response.headers.authorization
|
|
249
250
|
});
|
|
250
251
|
}
|
|
251
252
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
252
253
|
|
|
253
|
-
if (ssId
|
|
254
|
-
setStorage({
|
|
254
|
+
if (ssId) {
|
|
255
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
255
256
|
key: 'ssId',
|
|
256
257
|
value: ssId
|
|
257
258
|
});
|
package/lib/handler.js
CHANGED
|
@@ -243,16 +243,17 @@ var ajax = function ajax(_ref) {
|
|
|
243
243
|
http.interceptors.response.use(function (response) {
|
|
244
244
|
// delPendingRequest(response.config);
|
|
245
245
|
loading && loading.close();
|
|
246
|
-
if (response.headers.authorization
|
|
247
|
-
setStorage({
|
|
246
|
+
if (response.headers.authorization) {
|
|
247
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
248
|
+
|
|
248
249
|
key: ['token', 'Authorization'],
|
|
249
250
|
value: response.headers.authorization
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
253
254
|
|
|
254
|
-
if (ssId
|
|
255
|
-
setStorage({
|
|
255
|
+
if (ssId) {
|
|
256
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
256
257
|
key: 'ssId',
|
|
257
258
|
value: ssId
|
|
258
259
|
});
|
package/lib/icon.js
CHANGED
|
@@ -243,16 +243,17 @@ var ajax = function ajax(_ref) {
|
|
|
243
243
|
http.interceptors.response.use(function (response) {
|
|
244
244
|
// delPendingRequest(response.config);
|
|
245
245
|
loading && loading.close();
|
|
246
|
-
if (response.headers.authorization
|
|
247
|
-
setStorage({
|
|
246
|
+
if (response.headers.authorization) {
|
|
247
|
+
response.headers.authorization !== getStorage('token') && setStorage({
|
|
248
|
+
|
|
248
249
|
key: ['token', 'Authorization'],
|
|
249
250
|
value: response.headers.authorization
|
|
250
251
|
});
|
|
251
252
|
}
|
|
252
253
|
var ssId = response.headers.ssId || response.headers.Ssid || response.headers.ssid;
|
|
253
254
|
|
|
254
|
-
if (ssId
|
|
255
|
-
setStorage({
|
|
255
|
+
if (ssId) {
|
|
256
|
+
ssId !== getStorage('ssId') && setStorage({
|
|
256
257
|
key: 'ssId',
|
|
257
258
|
value: ssId
|
|
258
259
|
});
|