@xatlas/rainbow-core 2.4.3 → 2.4.5
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/dist/core.common.js +262 -160
- package/dist/core.common.js.map +1 -1
- package/dist/core.css +1 -1
- package/dist/core.umd.js +262 -160
- package/dist/core.umd.js.map +1 -1
- package/dist/core.umd.min.js +3 -3
- package/dist/core.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/core.common.js
CHANGED
|
@@ -3151,7 +3151,8 @@ function list_toPrimitive(t, r) { if ("object" != list_typeof(t) || !t) return t
|
|
|
3151
3151
|
var _this = this;
|
|
3152
3152
|
var h = this.$createElement;
|
|
3153
3153
|
var idName = this.idName,
|
|
3154
|
-
hide = this.hide
|
|
3154
|
+
hide = this.hide,
|
|
3155
|
+
action = this.action;
|
|
3155
3156
|
var columns = this.model.attrs.filter(function (attr) {
|
|
3156
3157
|
return !['all', 'list'].includes(attr.hidden) && !hide.includes(attr.name) && attr.name !== idName && attr.metaType !== 'model' && attr.type !== 'link';
|
|
3157
3158
|
}).map(function (attr) {
|
|
@@ -3181,7 +3182,7 @@ function list_toPrimitive(t, r) { if ("object" != list_typeof(t) || !t) return t
|
|
|
3181
3182
|
"value": text,
|
|
3182
3183
|
"row": record,
|
|
3183
3184
|
"schema": attr,
|
|
3184
|
-
"editable": _this.
|
|
3185
|
+
"editable": _this.editable(record, action, attr),
|
|
3185
3186
|
"idName": _this.idName,
|
|
3186
3187
|
"rowIndex": index
|
|
3187
3188
|
}
|
|
@@ -3615,6 +3616,14 @@ function list_toPrimitive(t, r) { if ("object" != list_typeof(t) || !t) return t
|
|
|
3615
3616
|
onFileChange: function onFileChange(action, files) {
|
|
3616
3617
|
var key = action.list ? action.list : 'file';
|
|
3617
3618
|
this.handleAction(action, null, list_defineProperty({}, key, files));
|
|
3619
|
+
},
|
|
3620
|
+
editable: function editable(record, action, attr) {
|
|
3621
|
+
var editable = this.configs['list.actionRowNotEditing.key'] && this.configs['list.actionRowNotEditing.value'] ? this.actionRowEditing && !this.configs['list.actionRowNotEditing.value'].split(',').includes(record[this.configs['list.actionRowNotEditing.key']]) : this.actionRowEditing;
|
|
3622
|
+
if (action !== null && action !== void 0 && action.list) {
|
|
3623
|
+
var list = action.list.split(',');
|
|
3624
|
+
return editable && list.includes(attr.name);
|
|
3625
|
+
}
|
|
3626
|
+
return editable;
|
|
3618
3627
|
}
|
|
3619
3628
|
}
|
|
3620
3629
|
});
|
|
@@ -5138,8 +5147,9 @@ var SHOW_RULES = {
|
|
|
5138
5147
|
}];
|
|
5139
5148
|
},
|
|
5140
5149
|
settingActions: function settingActions() {
|
|
5150
|
+
var _this$action;
|
|
5141
5151
|
var actions = [{
|
|
5142
|
-
key: '',
|
|
5152
|
+
key: ((_this$action = this.action) === null || _this$action === void 0 ? void 0 : _this$action.key) || '',
|
|
5143
5153
|
name: '保存',
|
|
5144
5154
|
icon: 'save',
|
|
5145
5155
|
method: 'PUT',
|
|
@@ -5399,18 +5409,18 @@ var SHOW_RULES = {
|
|
|
5399
5409
|
actionModel = this.actionModel,
|
|
5400
5410
|
idName = this.idName,
|
|
5401
5411
|
editions = this.editions,
|
|
5402
|
-
_this$
|
|
5403
|
-
key = _this$
|
|
5404
|
-
method = _this$
|
|
5405
|
-
_this$
|
|
5406
|
-
_this$
|
|
5407
|
-
_this$
|
|
5408
|
-
_this$
|
|
5409
|
-
type = _this$
|
|
5410
|
-
redirectProfile = _this$
|
|
5411
|
-
autofill = _this$
|
|
5412
|
-
_this$
|
|
5413
|
-
confirmActionDialog = _this$
|
|
5412
|
+
_this$action2 = this.action,
|
|
5413
|
+
key = _this$action2.key,
|
|
5414
|
+
method = _this$action2.method,
|
|
5415
|
+
_this$action2$params = _this$action2.params,
|
|
5416
|
+
_this$action2$params2 = _this$action2$params === void 0 ? {} : _this$action2$params,
|
|
5417
|
+
_this$action2$params3 = _this$action2$params2.commit,
|
|
5418
|
+
_this$action2$params4 = _this$action2$params3 === void 0 ? {} : _this$action2$params3,
|
|
5419
|
+
type = _this$action2$params4.type,
|
|
5420
|
+
redirectProfile = _this$action2$params4.redirectProfile,
|
|
5421
|
+
autofill = _this$action2$params2.autofill,
|
|
5422
|
+
_this$action2$params5 = _this$action2$params2.confirmActionDialog,
|
|
5423
|
+
confirmActionDialog = _this$action2$params5 === void 0 ? null : _this$action2$params5,
|
|
5414
5424
|
schema = this.schema;
|
|
5415
5425
|
var submit = /*#__PURE__*/function () {
|
|
5416
5426
|
var _ref2 = action_asyncToGenerator( /*#__PURE__*/action_regeneratorRuntime().mark(function _callee3() {
|
|
@@ -28745,8 +28755,8 @@ var WorkFlowDesigner_component = normalizeComponent(
|
|
|
28745
28755
|
)
|
|
28746
28756
|
|
|
28747
28757
|
/* harmony default export */ var WorkFlowDesigner = (WorkFlowDesigner_component.exports);
|
|
28748
|
-
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"f0c52eea-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=template&id=
|
|
28749
|
-
var
|
|
28758
|
+
// CONCATENATED MODULE: ../node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"f0c52eea-vue-loader-template"}!../node_modules/cache-loader/dist/cjs.js??ref--13-0!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!../node_modules/cache-loader/dist/cjs.js??ref--1-0!../node_modules/vue-loader/lib??vue-loader-options!../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=template&id=5970b818&scoped=true
|
|
28759
|
+
var RuntimeWorkFlowvue_type_template_id_5970b818_scoped_true_render = function render() {
|
|
28750
28760
|
var _this = this,
|
|
28751
28761
|
_vm$currentNode$data$,
|
|
28752
28762
|
_vm$currentNode$data$2;
|
|
@@ -29287,7 +29297,23 @@ var RuntimeWorkFlowvue_type_template_id_3f2edf36_scoped_true_render = function r
|
|
|
29287
29297
|
"slot": "title"
|
|
29288
29298
|
},
|
|
29289
29299
|
slot: "title"
|
|
29290
|
-
}, [_vm._v(" " + _vm._s(item.node_name) + " ")
|
|
29300
|
+
}, [_vm._v(" " + _vm._s(item.node_name) + " "), _c('a-button', {
|
|
29301
|
+
directives: [{
|
|
29302
|
+
name: "show",
|
|
29303
|
+
rawName: "v-show",
|
|
29304
|
+
value: item.operate_data,
|
|
29305
|
+
expression: "item.operate_data"
|
|
29306
|
+
}],
|
|
29307
|
+
attrs: {
|
|
29308
|
+
"icon": "read",
|
|
29309
|
+
"type": "link"
|
|
29310
|
+
},
|
|
29311
|
+
on: {
|
|
29312
|
+
"click": function click($event) {
|
|
29313
|
+
return _vm.showOperateData(item);
|
|
29314
|
+
}
|
|
29315
|
+
}
|
|
29316
|
+
})], 1), _vm.$store.state.app.icon ? _c('a-avatar', {
|
|
29291
29317
|
attrs: {
|
|
29292
29318
|
"slot": "avatar",
|
|
29293
29319
|
"src": _vm.$store.state.app.icon
|
|
@@ -29333,7 +29359,7 @@ var RuntimeWorkFlowvue_type_template_id_3f2edf36_scoped_true_render = function r
|
|
|
29333
29359
|
}
|
|
29334
29360
|
}), _vm._v(" " + _vm._s(item.operator.name) + "(" + _vm._s(item.operator.org_name) + ") ")], 1)], 1)], 1)], 1)], 1);
|
|
29335
29361
|
}
|
|
29336
|
-
}], null, false,
|
|
29362
|
+
}], null, false, 542072683)
|
|
29337
29363
|
})], 1)], 1) : _vm._e(), _vm.paneSet.has('3') ? _c('a-tab-pane', {
|
|
29338
29364
|
key: "3",
|
|
29339
29365
|
attrs: {
|
|
@@ -29393,6 +29419,35 @@ var RuntimeWorkFlowvue_type_template_id_3f2edf36_scoped_true_render = function r
|
|
|
29393
29419
|
"nodeHandlerChange": _vm.nodeHandlerChange
|
|
29394
29420
|
}
|
|
29395
29421
|
}) : _vm._e()], 1)], 1) : _vm._e()], 1)], 1), _c('a-modal', {
|
|
29422
|
+
attrs: {
|
|
29423
|
+
"title": "操作表单",
|
|
29424
|
+
"visible": _vm.isShowOperateData,
|
|
29425
|
+
"footer": null,
|
|
29426
|
+
"width": "50%"
|
|
29427
|
+
},
|
|
29428
|
+
on: {
|
|
29429
|
+
"cancel": _vm.hideOperateData
|
|
29430
|
+
}
|
|
29431
|
+
}, [_c('a-descriptions', {
|
|
29432
|
+
attrs: {
|
|
29433
|
+
"bordered": "",
|
|
29434
|
+
"column": {
|
|
29435
|
+
xxl: 2,
|
|
29436
|
+
xl: 2,
|
|
29437
|
+
lg: 2,
|
|
29438
|
+
md: 2,
|
|
29439
|
+
sm: 2,
|
|
29440
|
+
xs: 1
|
|
29441
|
+
}
|
|
29442
|
+
}
|
|
29443
|
+
}, _vm._l(_vm.operateDataItems, function (attr) {
|
|
29444
|
+
return _c('a-descriptions-item', {
|
|
29445
|
+
key: attr.id,
|
|
29446
|
+
attrs: {
|
|
29447
|
+
"label": attr.alias
|
|
29448
|
+
}
|
|
29449
|
+
}, [_vm._v(" " + _vm._s(_vm.formatter(attr, attr.value, attr)) + " ")]);
|
|
29450
|
+
}), 1)], 1), _c('a-modal', {
|
|
29396
29451
|
staticClass: "jjh-fullscreen",
|
|
29397
29452
|
attrs: {
|
|
29398
29453
|
"bodyStyle": {
|
|
@@ -29428,9 +29483,9 @@ var RuntimeWorkFlowvue_type_template_id_3f2edf36_scoped_true_render = function r
|
|
|
29428
29483
|
}
|
|
29429
29484
|
}, [_vm._v("关闭")])], 1)], 2)], 1);
|
|
29430
29485
|
};
|
|
29431
|
-
var
|
|
29486
|
+
var RuntimeWorkFlowvue_type_template_id_5970b818_scoped_true_staticRenderFns = [];
|
|
29432
29487
|
|
|
29433
|
-
// CONCATENATED MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=template&id=
|
|
29488
|
+
// CONCATENATED MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=template&id=5970b818&scoped=true
|
|
29434
29489
|
|
|
29435
29490
|
// EXTERNAL MODULE: external {"root":"vuedraggable","commonjs2":"vuedraggable","commonjs":"vuedraggable","amd":"vuedraggable"}
|
|
29436
29491
|
var external_root_vuedraggable_commonjs2_vuedraggable_commonjs_vuedraggable_amd_vuedraggable_ = __webpack_require__("289a");
|
|
@@ -29460,6 +29515,7 @@ function RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator(fn) { return fu
|
|
|
29460
29515
|
|
|
29461
29516
|
|
|
29462
29517
|
|
|
29518
|
+
|
|
29463
29519
|
var OPERATE = {
|
|
29464
29520
|
START: 'start',
|
|
29465
29521
|
CHECK: 'check',
|
|
@@ -29479,7 +29535,7 @@ var CHECK_ACTION = {
|
|
|
29479
29535
|
};
|
|
29480
29536
|
/* harmony default export */ var RuntimeWorkFlowvue_type_script_lang_js = ({
|
|
29481
29537
|
name: 'runtime-workflow',
|
|
29482
|
-
mixins: [form_base],
|
|
29538
|
+
mixins: [form_base, cell],
|
|
29483
29539
|
components: {
|
|
29484
29540
|
NodeContainer: NodeContainer,
|
|
29485
29541
|
Item: Item,
|
|
@@ -29499,6 +29555,8 @@ var CHECK_ACTION = {
|
|
|
29499
29555
|
initNodeContainer: false,
|
|
29500
29556
|
fullscreen: false,
|
|
29501
29557
|
fullscreenLoading: false,
|
|
29558
|
+
isShowOperateData: false,
|
|
29559
|
+
operateDataItems: [],
|
|
29502
29560
|
nodeData: null,
|
|
29503
29561
|
paneKey: '3',
|
|
29504
29562
|
/**
|
|
@@ -29751,7 +29809,8 @@ var CHECK_ACTION = {
|
|
|
29751
29809
|
custom_back_node_code: undefined,
|
|
29752
29810
|
todos: undefined,
|
|
29753
29811
|
involve: undefined,
|
|
29754
|
-
reassign: undefined
|
|
29812
|
+
reassign: undefined,
|
|
29813
|
+
form_data: {}
|
|
29755
29814
|
},
|
|
29756
29815
|
model_id: null,
|
|
29757
29816
|
data_id: null
|
|
@@ -29944,19 +30003,57 @@ var CHECK_ACTION = {
|
|
|
29944
30003
|
}
|
|
29945
30004
|
});
|
|
29946
30005
|
},
|
|
29947
|
-
|
|
30006
|
+
showOperateData: function showOperateData(data) {
|
|
29948
30007
|
var _this2 = this;
|
|
30008
|
+
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function _callee2() {
|
|
30009
|
+
var columns, schema, operateData;
|
|
30010
|
+
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
30011
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
30012
|
+
case 0:
|
|
30013
|
+
columns = _this2.columns;
|
|
30014
|
+
if (!data.option_view_id) {
|
|
30015
|
+
_context2.next = 6;
|
|
30016
|
+
break;
|
|
30017
|
+
}
|
|
30018
|
+
_context2.next = 4;
|
|
30019
|
+
return _this2.eadApi.getViewSchema(data.option_view_id);
|
|
30020
|
+
case 4:
|
|
30021
|
+
schema = _context2.sent;
|
|
30022
|
+
columns = schema === null || schema === void 0 ? void 0 : schema.model.attrs;
|
|
30023
|
+
case 6:
|
|
30024
|
+
operateData = JSON.parse(data.operate_data);
|
|
30025
|
+
_this2.operateDataItems = [];
|
|
30026
|
+
columns.forEach(function (column) {
|
|
30027
|
+
if (column.name in operateData) {
|
|
30028
|
+
var item = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({}, column);
|
|
30029
|
+
item.value = operateData[column.name];
|
|
30030
|
+
_this2.operateDataItems.push(item);
|
|
30031
|
+
}
|
|
30032
|
+
});
|
|
30033
|
+
_this2.isShowOperateData = true;
|
|
30034
|
+
case 10:
|
|
30035
|
+
case "end":
|
|
30036
|
+
return _context2.stop();
|
|
30037
|
+
}
|
|
30038
|
+
}, _callee2);
|
|
30039
|
+
}))();
|
|
30040
|
+
},
|
|
30041
|
+
hideOperateData: function hideOperateData() {
|
|
30042
|
+
this.isShowOperateData = false;
|
|
30043
|
+
},
|
|
30044
|
+
fetchReassignUser: function fetchReassignUser() {
|
|
30045
|
+
var _this3 = this;
|
|
29949
30046
|
var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {
|
|
29950
30047
|
userName: this.reassignUserFilter,
|
|
29951
30048
|
pagination: this.reassignUserPagination
|
|
29952
30049
|
};
|
|
29953
30050
|
this.loadingReassignUser = true;
|
|
29954
30051
|
this.getAllUsers(params.userName, params.pagination).then(function (data) {
|
|
29955
|
-
var pagination = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({},
|
|
30052
|
+
var pagination = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({}, _this3.reassignUserPagination);
|
|
29956
30053
|
pagination.total = data.count;
|
|
29957
|
-
|
|
29958
|
-
|
|
29959
|
-
|
|
30054
|
+
_this3.loadingReassignUser = false;
|
|
30055
|
+
_this3.reassignUserData = data.results;
|
|
30056
|
+
_this3.reassignUserPagination = pagination;
|
|
29960
30057
|
});
|
|
29961
30058
|
},
|
|
29962
30059
|
handleTableChangeInvolveUser: function handleTableChangeInvolveUser(pagination) {
|
|
@@ -29972,57 +30069,57 @@ var CHECK_ACTION = {
|
|
|
29972
30069
|
});
|
|
29973
30070
|
},
|
|
29974
30071
|
fetchInvolveUser: function fetchInvolveUser() {
|
|
29975
|
-
var
|
|
30072
|
+
var _this4 = this;
|
|
29976
30073
|
var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {
|
|
29977
30074
|
userName: this.involveUserFilter,
|
|
29978
30075
|
pagination: this.involveUserPagination
|
|
29979
30076
|
};
|
|
29980
30077
|
this.loadingInvolveUser = true;
|
|
29981
30078
|
this.getAllUsers(params.userName, params.pagination).then(function (data) {
|
|
29982
|
-
var pagination = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({},
|
|
30079
|
+
var pagination = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({}, _this4.involveUserPagination);
|
|
29983
30080
|
pagination.total = data.count;
|
|
29984
|
-
|
|
29985
|
-
|
|
29986
|
-
|
|
30081
|
+
_this4.loadingInvolveUser = false;
|
|
30082
|
+
_this4.involveUserData = data.results;
|
|
30083
|
+
_this4.involveUserPagination = pagination;
|
|
29987
30084
|
});
|
|
29988
30085
|
},
|
|
29989
30086
|
getAllUsers: function getAllUsers(userName, pagination) {
|
|
29990
|
-
var
|
|
29991
|
-
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function
|
|
30087
|
+
var _this5 = this;
|
|
30088
|
+
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function _callee3() {
|
|
29992
30089
|
var data1, data;
|
|
29993
|
-
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function
|
|
29994
|
-
while (1) switch (
|
|
30090
|
+
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee3$(_context3) {
|
|
30091
|
+
while (1) switch (_context3.prev = _context3.next) {
|
|
29995
30092
|
case 0:
|
|
29996
|
-
|
|
29997
|
-
return
|
|
30093
|
+
_context3.next = 2;
|
|
30094
|
+
return _this5.eadApi.getDatasetApi('flowdir-allusercount', {
|
|
29998
30095
|
user_name: userName
|
|
29999
30096
|
});
|
|
30000
30097
|
case 2:
|
|
30001
|
-
data1 =
|
|
30002
|
-
|
|
30003
|
-
return
|
|
30098
|
+
data1 = _context3.sent;
|
|
30099
|
+
_context3.next = 5;
|
|
30100
|
+
return _this5.eadApi.getDatasetApi('flowdir-alluser', {
|
|
30004
30101
|
user_name: userName,
|
|
30005
30102
|
limit_index: (pagination.current - 1) * pagination.pageSize,
|
|
30006
30103
|
limit_num: pagination.pageSize
|
|
30007
30104
|
});
|
|
30008
30105
|
case 5:
|
|
30009
|
-
data =
|
|
30010
|
-
return
|
|
30106
|
+
data = _context3.sent;
|
|
30107
|
+
return _context3.abrupt("return", {
|
|
30011
30108
|
count: data1[0].count,
|
|
30012
30109
|
results: data
|
|
30013
30110
|
});
|
|
30014
30111
|
case 7:
|
|
30015
30112
|
case "end":
|
|
30016
|
-
return
|
|
30113
|
+
return _context3.stop();
|
|
30017
30114
|
}
|
|
30018
|
-
},
|
|
30115
|
+
}, _callee3);
|
|
30019
30116
|
}))();
|
|
30020
30117
|
},
|
|
30021
30118
|
/**
|
|
30022
30119
|
* 请求前最后的校验
|
|
30023
30120
|
*/
|
|
30024
30121
|
handleCommit: function handleCommit() {
|
|
30025
|
-
var
|
|
30122
|
+
var _this6 = this;
|
|
30026
30123
|
// this.$message.error('校验未通过')
|
|
30027
30124
|
// 上报
|
|
30028
30125
|
var isBpmnBack = false;
|
|
@@ -30106,7 +30203,7 @@ var CHECK_ACTION = {
|
|
|
30106
30203
|
}
|
|
30107
30204
|
if (this.currentNode.data.other_options.assert && this.currentNode.data.other_options.assert.length) {
|
|
30108
30205
|
var needAssert = this.currentNode.data.other_options.assert.filter(function (assertItem) {
|
|
30109
|
-
return assertItem.action === 'all' || assertItem.action ===
|
|
30206
|
+
return assertItem.action === 'all' || assertItem.action === _this6.workflowReq.page_operate.action;
|
|
30110
30207
|
}).filter(function (assertItem) {
|
|
30111
30208
|
return assertItem.expression && assertItem.message;
|
|
30112
30209
|
});
|
|
@@ -30118,20 +30215,20 @@ var CHECK_ACTION = {
|
|
|
30118
30215
|
try {
|
|
30119
30216
|
var data = {};
|
|
30120
30217
|
// eslint-disable-next-line no-return-assign
|
|
30121
|
-
|
|
30122
|
-
return data[column] =
|
|
30218
|
+
_this6.activityColumns.forEach(function (column) {
|
|
30219
|
+
return data[column] = _this6.actionModel[column];
|
|
30123
30220
|
});
|
|
30124
30221
|
// eslint-disable-next-line no-new-func
|
|
30125
30222
|
var expressionFn = new Function(Object.keys(data), 'return ' + item.expression);
|
|
30126
30223
|
var isOk = expressionFn.apply(void 0, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(Object.values(data)));
|
|
30127
30224
|
if (!isOk) {
|
|
30128
|
-
|
|
30225
|
+
_this6.$message.error(item.message);
|
|
30129
30226
|
return {
|
|
30130
30227
|
v: void 0
|
|
30131
30228
|
};
|
|
30132
30229
|
}
|
|
30133
30230
|
} catch (e) {
|
|
30134
|
-
|
|
30231
|
+
_this6.$message.error('断言表达式配置错误,' + item.message);
|
|
30135
30232
|
return {
|
|
30136
30233
|
v: void 0
|
|
30137
30234
|
};
|
|
@@ -30148,6 +30245,11 @@ var CHECK_ACTION = {
|
|
|
30148
30245
|
_iterator.f();
|
|
30149
30246
|
}
|
|
30150
30247
|
}
|
|
30248
|
+
if (this.runtimeData.currentNodeFormItem) {
|
|
30249
|
+
this.runtimeData.currentNodeFormItem.forEach(function (item) {
|
|
30250
|
+
_this6.workflowReq.page_operate.form_data[item.name] = _this6.actionModel[item.name];
|
|
30251
|
+
});
|
|
30252
|
+
}
|
|
30151
30253
|
this.actionModel.workflow = this.workflow;
|
|
30152
30254
|
this.actionModel.workflow_req = this.workflowReq;
|
|
30153
30255
|
var actionModel = RuntimeWorkFlowvue_type_script_lang_js_objectSpread({}, this.actionModel);
|
|
@@ -30164,32 +30266,32 @@ var CHECK_ACTION = {
|
|
|
30164
30266
|
* @param nodeHandler {NodeHandler}
|
|
30165
30267
|
*/
|
|
30166
30268
|
nodeHandlerReady: function nodeHandlerReady(nodeHandler) {
|
|
30167
|
-
var
|
|
30168
|
-
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function
|
|
30169
|
-
var _node$data,
|
|
30269
|
+
var _this7 = this;
|
|
30270
|
+
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function _callee4() {
|
|
30271
|
+
var _node$data, _this7$runtimeData$cu;
|
|
30170
30272
|
var node, columns, schema, optionForms;
|
|
30171
|
-
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function
|
|
30172
|
-
while (1) switch (
|
|
30273
|
+
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee4$(_context4) {
|
|
30274
|
+
while (1) switch (_context4.prev = _context4.next) {
|
|
30173
30275
|
case 0:
|
|
30174
|
-
|
|
30175
|
-
node =
|
|
30176
|
-
if (!
|
|
30177
|
-
|
|
30276
|
+
_this7.nodeHandler = nodeHandler;
|
|
30277
|
+
node = _this7.currentNode = nodeHandler.getNode(_this7.runtimeData.currentNodeCode); // 健壮考虑
|
|
30278
|
+
if (!_this7.runtimeData.PageOperate && node !== null && node !== void 0 && (_node$data = node.data) !== null && _node$data !== void 0 && _node$data.page_options) {
|
|
30279
|
+
_this7.runtimeData.PageOperate = node.data.page_options;
|
|
30178
30280
|
}
|
|
30179
|
-
columns =
|
|
30281
|
+
columns = _this7.columns;
|
|
30180
30282
|
if (!(node && node.data.option_view_id)) {
|
|
30181
|
-
|
|
30283
|
+
_context4.next = 9;
|
|
30182
30284
|
break;
|
|
30183
30285
|
}
|
|
30184
|
-
|
|
30185
|
-
return
|
|
30286
|
+
_context4.next = 7;
|
|
30287
|
+
return _this7.eadApi.getViewSchema(node.data.option_view_id);
|
|
30186
30288
|
case 7:
|
|
30187
|
-
schema =
|
|
30289
|
+
schema = _context4.sent;
|
|
30188
30290
|
columns = schema === null || schema === void 0 ? void 0 : schema.model.attrs;
|
|
30189
30291
|
case 9:
|
|
30190
30292
|
// form load
|
|
30191
|
-
optionForms = (
|
|
30192
|
-
|
|
30293
|
+
optionForms = (_this7$runtimeData$cu = _this7.runtimeData.currentNodeOptionForms) !== null && _this7$runtimeData$cu !== void 0 ? _this7$runtimeData$cu : node === null || node === void 0 ? void 0 : node.data.option_forms;
|
|
30294
|
+
_this7.runtimeData.currentNodeFormItem = optionForms.filter(function (value) {
|
|
30193
30295
|
return value.access !== 'none';
|
|
30194
30296
|
}).map(function (value) {
|
|
30195
30297
|
// 【BUG】 全局:const attr = this.view.schema.model.attrs.find(value1 => value1.name === value.attrCode)
|
|
@@ -30203,7 +30305,7 @@ var CHECK_ACTION = {
|
|
|
30203
30305
|
attr.params.readonly = value.access === 'readonly';
|
|
30204
30306
|
attr.required = value.required;
|
|
30205
30307
|
if (node && node.data.option_view_id) {
|
|
30206
|
-
|
|
30308
|
+
_this7.actionModel[attr.name] = null;
|
|
30207
30309
|
}
|
|
30208
30310
|
}
|
|
30209
30311
|
return attr;
|
|
@@ -30211,18 +30313,18 @@ var CHECK_ACTION = {
|
|
|
30211
30313
|
return value;
|
|
30212
30314
|
});
|
|
30213
30315
|
// back load
|
|
30214
|
-
|
|
30215
|
-
if (
|
|
30216
|
-
if (!
|
|
30217
|
-
|
|
30316
|
+
_this7.isCustomBack = (node === null || node === void 0 ? void 0 : node.data.back_type) === 'custom';
|
|
30317
|
+
if (_this7.isCustomBack) {
|
|
30318
|
+
if (!_this7.runtimeData.customBackNodes) {
|
|
30319
|
+
_this7.runtimeData.customBackNodes = RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(node === null || node === void 0 ? void 0 : node.data.custom_back_nodes);
|
|
30218
30320
|
}
|
|
30219
|
-
|
|
30321
|
+
_this7.workflowReq.page_operate.custom_back_node_code = _this7.runtimeData.customBackNodes[0];
|
|
30220
30322
|
}
|
|
30221
30323
|
case 13:
|
|
30222
30324
|
case "end":
|
|
30223
|
-
return
|
|
30325
|
+
return _context4.stop();
|
|
30224
30326
|
}
|
|
30225
|
-
},
|
|
30327
|
+
}, _callee4);
|
|
30226
30328
|
}))();
|
|
30227
30329
|
},
|
|
30228
30330
|
/**
|
|
@@ -30230,47 +30332,47 @@ var CHECK_ACTION = {
|
|
|
30230
30332
|
* @param nodeHandler {NodeHandler}
|
|
30231
30333
|
*/
|
|
30232
30334
|
nodeHandlerChange: function nodeHandlerChange(nodeHandler) {
|
|
30233
|
-
var
|
|
30234
|
-
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function
|
|
30235
|
-
var _data$data4, _data$data5,
|
|
30335
|
+
var _this8 = this;
|
|
30336
|
+
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function _callee5() {
|
|
30337
|
+
var _data$data4, _data$data5, _this8$runtimeData, _this8$runtimeData2;
|
|
30236
30338
|
var map, result, data, runtimeData, users;
|
|
30237
|
-
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function
|
|
30238
|
-
while (1) switch (
|
|
30339
|
+
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
30340
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
30239
30341
|
case 0:
|
|
30240
30342
|
map = nodeHandler.map();
|
|
30241
|
-
if (!(map.node.size === Object.keys(
|
|
30242
|
-
|
|
30343
|
+
if (!(map.node.size === Object.keys(_this8.workflow.node_json.node).length)) {
|
|
30344
|
+
_context5.next = 3;
|
|
30243
30345
|
break;
|
|
30244
30346
|
}
|
|
30245
|
-
return
|
|
30347
|
+
return _context5.abrupt("return");
|
|
30246
30348
|
case 3:
|
|
30247
30349
|
result = {};
|
|
30248
30350
|
Object.keys(map).forEach(function (key) {
|
|
30249
30351
|
result[key] = Object.fromEntries(map[key]);
|
|
30250
30352
|
});
|
|
30251
|
-
|
|
30252
|
-
|
|
30253
|
-
|
|
30254
|
-
return
|
|
30353
|
+
_this8.workflowReq.node_json = result;
|
|
30354
|
+
_this8.eadApi.getModelValues().workflow_req = _this8.workflowReq;
|
|
30355
|
+
_context5.next = 9;
|
|
30356
|
+
return _this8.eadApi.runCurrentAction();
|
|
30255
30357
|
case 9:
|
|
30256
|
-
data =
|
|
30358
|
+
data = _context5.sent;
|
|
30257
30359
|
if (data) {
|
|
30258
|
-
|
|
30360
|
+
_context5.next = 14;
|
|
30259
30361
|
break;
|
|
30260
30362
|
}
|
|
30261
|
-
|
|
30262
|
-
|
|
30263
|
-
return
|
|
30363
|
+
_this8.loading = false;
|
|
30364
|
+
_this8.$emit('close');
|
|
30365
|
+
return _context5.abrupt("return");
|
|
30264
30366
|
case 14:
|
|
30265
30367
|
// runtime数据
|
|
30266
|
-
|
|
30368
|
+
_this8.workflow = data === null || data === void 0 || (_data$data4 = data.data) === null || _data$data4 === void 0 ? void 0 : _data$data4.workflow;
|
|
30267
30369
|
runtimeData = data === null || data === void 0 || (_data$data5 = data.data) === null || _data$data5 === void 0 || (_data$data5 = _data$data5.workflow) === null || _data$data5 === void 0 ? void 0 : _data$data5.runtime_data;
|
|
30268
30370
|
if (runtimeData && Object.keys(runtimeData).length) {
|
|
30269
|
-
|
|
30371
|
+
_this8.runtimeData = runtimeData;
|
|
30270
30372
|
}
|
|
30271
30373
|
// 后续步骤默认执行人配置 selected init
|
|
30272
|
-
if (
|
|
30273
|
-
|
|
30374
|
+
if (_this8.runtimeData.todos) {
|
|
30375
|
+
_this8.runtimeData.todos.forEach(function (item) {
|
|
30274
30376
|
// 非自选 且 选择的为空,默认全选
|
|
30275
30377
|
if (!item.optional || item.optional && !item.optional.enable) {
|
|
30276
30378
|
if (!item.selected || !item.selected.length) {
|
|
@@ -30293,46 +30395,46 @@ var CHECK_ACTION = {
|
|
|
30293
30395
|
}
|
|
30294
30396
|
// item filter
|
|
30295
30397
|
// 【FEATURE】响应式更新支持
|
|
30296
|
-
if (
|
|
30297
|
-
|
|
30398
|
+
if (_this8.runtimeData.todos) {
|
|
30399
|
+
_this8.runtimeData.todos.forEach(function (item) {
|
|
30298
30400
|
if (!item.actorfilter) item.actorfilter = '';
|
|
30299
30401
|
item.actorsf = Object(external_commonjs_vue_commonjs2_vue_root_Vue_["ref"])(RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(item.actors));
|
|
30300
30402
|
});
|
|
30301
30403
|
}
|
|
30302
30404
|
// user cache
|
|
30303
30405
|
users = [];
|
|
30304
|
-
if ((
|
|
30305
|
-
users.push.apply(users, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(
|
|
30406
|
+
if ((_this8$runtimeData = _this8.runtimeData) !== null && _this8$runtimeData !== void 0 && (_this8$runtimeData = _this8$runtimeData.involve) !== null && _this8$runtimeData !== void 0 && _this8$runtimeData.actors) {
|
|
30407
|
+
users.push.apply(users, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(_this8.runtimeData.involve.actors));
|
|
30306
30408
|
}
|
|
30307
|
-
if ((
|
|
30308
|
-
users.push.apply(users, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(
|
|
30409
|
+
if ((_this8$runtimeData2 = _this8.runtimeData) !== null && _this8$runtimeData2 !== void 0 && (_this8$runtimeData2 = _this8$runtimeData2.reassign) !== null && _this8$runtimeData2 !== void 0 && _this8$runtimeData2.actors) {
|
|
30410
|
+
users.push.apply(users, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(_this8.runtimeData.reassign.actors));
|
|
30309
30411
|
}
|
|
30310
|
-
if (
|
|
30311
|
-
|
|
30412
|
+
if (_this8.runtimeData.todos) {
|
|
30413
|
+
_this8.runtimeData.todos.forEach(function (item) {
|
|
30312
30414
|
users.push.apply(users, RuntimeWorkFlowvue_type_script_lang_js_toConsumableArray(item.actors));
|
|
30313
30415
|
});
|
|
30314
30416
|
}
|
|
30315
|
-
|
|
30417
|
+
_this8.userCache = {};
|
|
30316
30418
|
users.forEach(function (user) {
|
|
30317
|
-
|
|
30419
|
+
_this8.userCache[user.uid] = "".concat(user.name, "\uFF08").concat(user.org_name, "\uFF09");
|
|
30318
30420
|
});
|
|
30319
30421
|
// 后续步骤处理
|
|
30320
|
-
|
|
30321
|
-
|
|
30322
|
-
|
|
30422
|
+
_this8.currentTodo = null;
|
|
30423
|
+
_this8.validExpression();
|
|
30424
|
+
_this8.loadTodo();
|
|
30323
30425
|
case 28:
|
|
30324
30426
|
case "end":
|
|
30325
|
-
return
|
|
30427
|
+
return _context5.stop();
|
|
30326
30428
|
}
|
|
30327
|
-
},
|
|
30429
|
+
}, _callee5);
|
|
30328
30430
|
}))();
|
|
30329
30431
|
},
|
|
30330
30432
|
showFullScreenFlow: function showFullScreenFlow() {
|
|
30331
|
-
var
|
|
30433
|
+
var _this9 = this;
|
|
30332
30434
|
this.fullscreenLoading = true;
|
|
30333
30435
|
setTimeout(function () {
|
|
30334
|
-
|
|
30335
|
-
|
|
30436
|
+
_this9.$nextTick(function () {
|
|
30437
|
+
_this9.fullscreen = true;
|
|
30336
30438
|
});
|
|
30337
30439
|
}, 50);
|
|
30338
30440
|
},
|
|
@@ -30341,58 +30443,58 @@ var CHECK_ACTION = {
|
|
|
30341
30443
|
this.fullscreen = false;
|
|
30342
30444
|
},
|
|
30343
30445
|
handleItemChange: function handleItemChange(value, attr) {
|
|
30344
|
-
var
|
|
30345
|
-
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function
|
|
30446
|
+
var _this10 = this;
|
|
30447
|
+
return RuntimeWorkFlowvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().mark(function _callee6() {
|
|
30346
30448
|
var name, fd, res;
|
|
30347
|
-
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function
|
|
30348
|
-
while (1) switch (
|
|
30449
|
+
return RuntimeWorkFlowvue_type_script_lang_js_regeneratorRuntime().wrap(function _callee6$(_context6) {
|
|
30450
|
+
while (1) switch (_context6.prev = _context6.next) {
|
|
30349
30451
|
case 0:
|
|
30350
30452
|
name = attr.name;
|
|
30351
30453
|
if (!(value instanceof FileList)) {
|
|
30352
|
-
|
|
30454
|
+
_context6.next = 14;
|
|
30353
30455
|
break;
|
|
30354
30456
|
}
|
|
30355
30457
|
if (!value[0]) {
|
|
30356
|
-
|
|
30458
|
+
_context6.next = 11;
|
|
30357
30459
|
break;
|
|
30358
30460
|
}
|
|
30359
30461
|
fd = new FormData();
|
|
30360
30462
|
fd.append(name, value[0]);
|
|
30361
|
-
|
|
30362
|
-
return
|
|
30463
|
+
_context6.next = 7;
|
|
30464
|
+
return _this10.$api.post('/upload', fd);
|
|
30363
30465
|
case 7:
|
|
30364
|
-
res =
|
|
30466
|
+
res = _context6.sent;
|
|
30365
30467
|
value = res.data.data[name];
|
|
30366
|
-
|
|
30468
|
+
_context6.next = 12;
|
|
30367
30469
|
break;
|
|
30368
30470
|
case 11:
|
|
30369
30471
|
value = null;
|
|
30370
30472
|
case 12:
|
|
30371
|
-
|
|
30473
|
+
_context6.next = 15;
|
|
30372
30474
|
break;
|
|
30373
30475
|
case 14:
|
|
30374
30476
|
if (value instanceof Date) {
|
|
30375
|
-
value =
|
|
30477
|
+
value = _this10.moment(value).format('YYYY-MM-DD');
|
|
30376
30478
|
}
|
|
30377
30479
|
case 15:
|
|
30378
30480
|
// this.actionModel.data[name] = value
|
|
30379
30481
|
|
|
30380
30482
|
// ISSUE:1 兼容格式化 ---------------------------------------------------
|
|
30381
30483
|
if (['time', 'datetime'].includes(attr.dataType)) {
|
|
30382
|
-
value =
|
|
30484
|
+
value = _this10.moment(value, 'YYYY-MM-DD HH:mm').valueOf();
|
|
30383
30485
|
}
|
|
30384
30486
|
if (['date'].includes(attr.dataType)) {
|
|
30385
|
-
value =
|
|
30487
|
+
value = _this10.moment(value, 'YYYY-MM-DD').valueOf();
|
|
30386
30488
|
}
|
|
30387
30489
|
// -----------------------------------------------------------
|
|
30388
30490
|
|
|
30389
|
-
|
|
30390
|
-
|
|
30491
|
+
_this10.actionModel[name] = value;
|
|
30492
|
+
_this10.loadTodo();
|
|
30391
30493
|
case 19:
|
|
30392
30494
|
case "end":
|
|
30393
|
-
return
|
|
30495
|
+
return _context6.stop();
|
|
30394
30496
|
}
|
|
30395
|
-
},
|
|
30497
|
+
}, _callee6);
|
|
30396
30498
|
}))();
|
|
30397
30499
|
},
|
|
30398
30500
|
validExpression: function validExpression() {
|
|
@@ -30436,7 +30538,7 @@ var CHECK_ACTION = {
|
|
|
30436
30538
|
return list;
|
|
30437
30539
|
},
|
|
30438
30540
|
loadTodo: function loadTodo() {
|
|
30439
|
-
var
|
|
30541
|
+
var _this11 = this;
|
|
30440
30542
|
if (!this.runtimeData.todos) {
|
|
30441
30543
|
return;
|
|
30442
30544
|
}
|
|
@@ -30460,7 +30562,7 @@ var CHECK_ACTION = {
|
|
|
30460
30562
|
}
|
|
30461
30563
|
} else {
|
|
30462
30564
|
if (!this.availableTodo(this.runtimeData.todos.find(function (todo) {
|
|
30463
|
-
return todo.node_code ===
|
|
30565
|
+
return todo.node_code === _this11.currentTodo;
|
|
30464
30566
|
}))) {
|
|
30465
30567
|
this.currentTodo = null;
|
|
30466
30568
|
this.loadTodo();
|
|
@@ -30468,7 +30570,7 @@ var CHECK_ACTION = {
|
|
|
30468
30570
|
}
|
|
30469
30571
|
},
|
|
30470
30572
|
availableTodo: function availableTodo(todo) {
|
|
30471
|
-
var
|
|
30573
|
+
var _this12 = this;
|
|
30472
30574
|
if (this.expressionError) {
|
|
30473
30575
|
return false;
|
|
30474
30576
|
}
|
|
@@ -30480,7 +30582,7 @@ var CHECK_ACTION = {
|
|
|
30480
30582
|
var data = {};
|
|
30481
30583
|
// eslint-disable-next-line no-return-assign
|
|
30482
30584
|
this.activityColumns.forEach(function (column) {
|
|
30483
|
-
return data[column] =
|
|
30585
|
+
return data[column] = _this12.actionModel[column];
|
|
30484
30586
|
});
|
|
30485
30587
|
// eslint-disable-next-line no-new-func
|
|
30486
30588
|
var expressionFn = new Function(Object.keys(data), 'return ' + expression);
|
|
@@ -30497,8 +30599,8 @@ var CHECK_ACTION = {
|
|
|
30497
30599
|
});
|
|
30498
30600
|
// CONCATENATED MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=script&lang=js
|
|
30499
30601
|
/* harmony default export */ var runtime_RuntimeWorkFlowvue_type_script_lang_js = (RuntimeWorkFlowvue_type_script_lang_js);
|
|
30500
|
-
// EXTERNAL MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=style&index=0&id=
|
|
30501
|
-
var
|
|
30602
|
+
// EXTERNAL MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue?vue&type=style&index=0&id=5970b818&prod&lang=less&scoped=true
|
|
30603
|
+
var RuntimeWorkFlowvue_type_style_index_0_id_5970b818_prod_lang_less_scoped_true = __webpack_require__("8e84");
|
|
30502
30604
|
|
|
30503
30605
|
// CONCATENATED MODULE: ../src/web/components/forms/flow/runtime/RuntimeWorkFlow.vue
|
|
30504
30606
|
|
|
@@ -30511,11 +30613,11 @@ var RuntimeWorkFlowvue_type_style_index_0_id_3f2edf36_prod_lang_less_scoped_true
|
|
|
30511
30613
|
|
|
30512
30614
|
var RuntimeWorkFlow_component = normalizeComponent(
|
|
30513
30615
|
runtime_RuntimeWorkFlowvue_type_script_lang_js,
|
|
30514
|
-
|
|
30515
|
-
|
|
30616
|
+
RuntimeWorkFlowvue_type_template_id_5970b818_scoped_true_render,
|
|
30617
|
+
RuntimeWorkFlowvue_type_template_id_5970b818_scoped_true_staticRenderFns,
|
|
30516
30618
|
false,
|
|
30517
30619
|
null,
|
|
30518
|
-
"
|
|
30620
|
+
"5970b818",
|
|
30519
30621
|
null
|
|
30520
30622
|
|
|
30521
30623
|
)
|
|
@@ -31905,17 +32007,6 @@ var variable = __webpack_require__("aa23");
|
|
|
31905
32007
|
/* unused harmony reexport * */
|
|
31906
32008
|
|
|
31907
32009
|
|
|
31908
|
-
/***/ }),
|
|
31909
|
-
|
|
31910
|
-
/***/ "1c5f":
|
|
31911
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
31912
|
-
|
|
31913
|
-
"use strict";
|
|
31914
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_3f2edf36_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("feb3");
|
|
31915
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_3f2edf36_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_3f2edf36_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
|
|
31916
|
-
/* unused harmony reexport * */
|
|
31917
|
-
|
|
31918
|
-
|
|
31919
32010
|
/***/ }),
|
|
31920
32011
|
|
|
31921
32012
|
/***/ "1f44":
|
|
@@ -33168,6 +33259,13 @@ module.exports = require("@antv/g6");
|
|
|
33168
33259
|
|
|
33169
33260
|
/***/ }),
|
|
33170
33261
|
|
|
33262
|
+
/***/ "5304":
|
|
33263
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
33264
|
+
|
|
33265
|
+
// extracted by mini-css-extract-plugin
|
|
33266
|
+
|
|
33267
|
+
/***/ }),
|
|
33268
|
+
|
|
33171
33269
|
/***/ "5596":
|
|
33172
33270
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
33173
33271
|
|
|
@@ -45967,6 +46065,17 @@ module.exports = require("vue");
|
|
|
45967
46065
|
/* unused harmony reexport * */
|
|
45968
46066
|
|
|
45969
46067
|
|
|
46068
|
+
/***/ }),
|
|
46069
|
+
|
|
46070
|
+
/***/ "8e84":
|
|
46071
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
46072
|
+
|
|
46073
|
+
"use strict";
|
|
46074
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_5970b818_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("5304");
|
|
46075
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_5970b818_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_11_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_11_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_11_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_11_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_RuntimeWorkFlow_vue_vue_type_style_index_0_id_5970b818_prod_lang_less_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
|
|
46076
|
+
/* unused harmony reexport * */
|
|
46077
|
+
|
|
46078
|
+
|
|
45970
46079
|
/***/ }),
|
|
45971
46080
|
|
|
45972
46081
|
/***/ "8eee":
|
|
@@ -52055,13 +52164,6 @@ module.exports = require("vuex/dist/logger");
|
|
|
52055
52164
|
|
|
52056
52165
|
/***/ }),
|
|
52057
52166
|
|
|
52058
|
-
/***/ "feb3":
|
|
52059
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
52060
|
-
|
|
52061
|
-
// extracted by mini-css-extract-plugin
|
|
52062
|
-
|
|
52063
|
-
/***/ }),
|
|
52064
|
-
|
|
52065
52167
|
/***/ "ff21":
|
|
52066
52168
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
52067
52169
|
|