eoss-mobiles 0.1.59 → 0.1.61
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/eoss-mobile.common.js +33 -20
- package/lib/flow.js +19 -9
- package/lib/index.js +1 -1
- package/lib/table-column.js +8 -5
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/table.css +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +37 -25
- package/packages/table-column/src/main.vue +6 -4
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/table.css +1 -1
- package/packages/theme-chalk/src/table.scss +1 -1
- package/src/index.js +1 -1
|
@@ -8254,8 +8254,8 @@ table_src_main.install = function (Vue) {
|
|
|
8254
8254
|
};
|
|
8255
8255
|
|
|
8256
8256
|
/* harmony default export */ var table = (table_src_main);
|
|
8257
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/table-column/src/main.vue?vue&type=template&id=
|
|
8258
|
-
var
|
|
8257
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/table-column/src/main.vue?vue&type=template&id=7eca6cd2&
|
|
8258
|
+
var mainvue_type_template_id_7eca6cd2_render = function () {
|
|
8259
8259
|
var _vm = this
|
|
8260
8260
|
var _h = _vm.$createElement
|
|
8261
8261
|
var _c = _vm._self._c || _h
|
|
@@ -8903,11 +8903,11 @@ var mainvue_type_template_id_15223560_render = function () {
|
|
|
8903
8903
|
)
|
|
8904
8904
|
: _vm._e()
|
|
8905
8905
|
}
|
|
8906
|
-
var
|
|
8907
|
-
|
|
8906
|
+
var mainvue_type_template_id_7eca6cd2_staticRenderFns = []
|
|
8907
|
+
mainvue_type_template_id_7eca6cd2_render._withStripped = true
|
|
8908
8908
|
|
|
8909
8909
|
|
|
8910
|
-
// CONCATENATED MODULE: ./packages/table-column/src/main.vue?vue&type=template&id=
|
|
8910
|
+
// CONCATENATED MODULE: ./packages/table-column/src/main.vue?vue&type=template&id=7eca6cd2&
|
|
8911
8911
|
|
|
8912
8912
|
// CONCATENATED MODULE: ./packages/table-column/src/mixins/table.js
|
|
8913
8913
|
/* harmony default export */ var mixins_table = ({
|
|
@@ -9556,13 +9556,13 @@ var src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typ
|
|
|
9556
9556
|
},
|
|
9557
9557
|
methods: (_methods = {
|
|
9558
9558
|
getValue: function getValue(row) {
|
|
9559
|
-
// [item.field || item.prop]
|
|
9560
9559
|
var str = void 0;
|
|
9561
9560
|
var _item = this.item,
|
|
9562
9561
|
field = _item.field,
|
|
9563
9562
|
prop = _item.prop,
|
|
9564
9563
|
valueKey = _item.valueKey,
|
|
9565
|
-
labelKey = _item.labelKey
|
|
9564
|
+
labelKey = _item.labelKey,
|
|
9565
|
+
type = _item.type;
|
|
9566
9566
|
|
|
9567
9567
|
if (this.newOptionData[field || prop]) {
|
|
9568
9568
|
if (Array.isArray(row[field || prop])) {
|
|
@@ -9591,11 +9591,14 @@ var src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typ
|
|
|
9591
9591
|
}
|
|
9592
9592
|
} else if (typeof row[field || prop] == 'string') {
|
|
9593
9593
|
str = row[field || prop];
|
|
9594
|
+
} else if (type == 'number') {
|
|
9595
|
+
str = row[field || prop];
|
|
9594
9596
|
} else {
|
|
9595
9597
|
if (Array.isArray(row[field || prop]) && row[field || prop].length == 0) {
|
|
9596
9598
|
str = '';
|
|
9597
9599
|
} else {
|
|
9598
|
-
str = row[field || prop]
|
|
9600
|
+
str = row[field || prop];
|
|
9601
|
+
// str = row[field || prop] ? '是' : '否';
|
|
9599
9602
|
}
|
|
9600
9603
|
}
|
|
9601
9604
|
return str;
|
|
@@ -9670,8 +9673,8 @@ var src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typ
|
|
|
9670
9673
|
|
|
9671
9674
|
var table_column_src_main_component = normalizeComponent(
|
|
9672
9675
|
packages_table_column_src_mainvue_type_script_lang_js_,
|
|
9673
|
-
|
|
9674
|
-
|
|
9676
|
+
mainvue_type_template_id_7eca6cd2_render,
|
|
9677
|
+
mainvue_type_template_id_7eca6cd2_staticRenderFns,
|
|
9675
9678
|
false,
|
|
9676
9679
|
null,
|
|
9677
9680
|
null,
|
|
@@ -11248,8 +11251,8 @@ var StartFlow_component = normalizeComponent(
|
|
|
11248
11251
|
)
|
|
11249
11252
|
|
|
11250
11253
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
11251
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
11252
|
-
var
|
|
11254
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=3b9018af&
|
|
11255
|
+
var Handlevue_type_template_id_3b9018af_render = function () {
|
|
11253
11256
|
var _vm = this
|
|
11254
11257
|
var _h = _vm.$createElement
|
|
11255
11258
|
var _c = _vm._self._c || _h
|
|
@@ -12228,11 +12231,11 @@ var Handlevue_type_template_id_0f9320b3_render = function () {
|
|
|
12228
12231
|
1
|
|
12229
12232
|
)
|
|
12230
12233
|
}
|
|
12231
|
-
var
|
|
12232
|
-
|
|
12234
|
+
var Handlevue_type_template_id_3b9018af_staticRenderFns = []
|
|
12235
|
+
Handlevue_type_template_id_3b9018af_render._withStripped = true
|
|
12233
12236
|
|
|
12234
12237
|
|
|
12235
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
12238
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=3b9018af&
|
|
12236
12239
|
|
|
12237
12240
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=template&id=873f59d2&
|
|
12238
12241
|
var Rejectvue_type_template_id_873f59d2_render = function () {
|
|
@@ -13368,12 +13371,18 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
13368
13371
|
obj.name = !obj.value ? obj.name + x.showname : obj.name + ',' + x.showname;
|
|
13369
13372
|
obj.value = obj.value ? obj.value + ',' + x.showid : 'employee-' + x.showid;
|
|
13370
13373
|
} else {
|
|
13371
|
-
data.push({
|
|
13374
|
+
data.push({
|
|
13375
|
+
name: '[部门]' + x.showname,
|
|
13376
|
+
value: 'department-' + x.showid
|
|
13377
|
+
});
|
|
13372
13378
|
}
|
|
13373
13379
|
});
|
|
13374
13380
|
obj.value && data.push(obj);
|
|
13375
13381
|
this.nextOtherOrgObjSelect.map(function (x) {
|
|
13376
|
-
data.push({
|
|
13382
|
+
data.push({
|
|
13383
|
+
name: '[企业]' + x.showname,
|
|
13384
|
+
value: 'enterprise-' + x.showid
|
|
13385
|
+
});
|
|
13377
13386
|
});
|
|
13378
13387
|
return data;
|
|
13379
13388
|
}
|
|
@@ -13738,9 +13747,13 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
13738
13747
|
choiceDeptId = _res$data.choiceDeptId,
|
|
13739
13748
|
pOrgId = _res$data.pOrgId,
|
|
13740
13749
|
taskExamine = _res$data.taskExamine,
|
|
13750
|
+
currentOrgName = _res$data.currentOrgName,
|
|
13751
|
+
otherOrgName = _res$data.otherOrgName,
|
|
13741
13752
|
defaultNotificationMessage = _res$data.defaultNotificationMessage,
|
|
13742
13753
|
defaultNotificationType = _res$data.defaultNotificationType;
|
|
13743
13754
|
|
|
13755
|
+
that.currentOrgName = currentOrgName;
|
|
13756
|
+
that.otherOrgName = otherOrgName;
|
|
13744
13757
|
that.taskExamineInfo = taskExamine;
|
|
13745
13758
|
that.form.isReturnSubmitter = taskExamine.isReturnSubmitter;
|
|
13746
13759
|
that.form.isUndertakeReply = taskExamine.isUndertakeReply;
|
|
@@ -14036,8 +14049,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
14036
14049
|
|
|
14037
14050
|
var Handle_component = normalizeComponent(
|
|
14038
14051
|
components_Handlevue_type_script_lang_js_,
|
|
14039
|
-
|
|
14040
|
-
|
|
14052
|
+
Handlevue_type_template_id_3b9018af_render,
|
|
14053
|
+
Handlevue_type_template_id_3b9018af_staticRenderFns,
|
|
14041
14054
|
false,
|
|
14042
14055
|
null,
|
|
14043
14056
|
null,
|
|
@@ -17620,7 +17633,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
17620
17633
|
}
|
|
17621
17634
|
|
|
17622
17635
|
/* harmony default export */ var src = __webpack_exports__["default"] = ({
|
|
17623
|
-
version: '0.1.
|
|
17636
|
+
version: '0.1.61',
|
|
17624
17637
|
install: install,
|
|
17625
17638
|
Button: packages_button,
|
|
17626
17639
|
ButtonGroup: button_group,
|
package/lib/flow.js
CHANGED
|
@@ -3243,8 +3243,8 @@ var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3243
3243
|
)
|
|
3244
3244
|
|
|
3245
3245
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
3246
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
3247
|
-
var
|
|
3246
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=3b9018af&
|
|
3247
|
+
var Handlevue_type_template_id_3b9018af_render = function () {
|
|
3248
3248
|
var _vm = this
|
|
3249
3249
|
var _h = _vm.$createElement
|
|
3250
3250
|
var _c = _vm._self._c || _h
|
|
@@ -4223,11 +4223,11 @@ var Handlevue_type_template_id_0f9320b3_render = function () {
|
|
|
4223
4223
|
1
|
|
4224
4224
|
)
|
|
4225
4225
|
}
|
|
4226
|
-
var
|
|
4227
|
-
|
|
4226
|
+
var Handlevue_type_template_id_3b9018af_staticRenderFns = []
|
|
4227
|
+
Handlevue_type_template_id_3b9018af_render._withStripped = true
|
|
4228
4228
|
|
|
4229
4229
|
|
|
4230
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
4230
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=3b9018af&
|
|
4231
4231
|
|
|
4232
4232
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=template&id=873f59d2&
|
|
4233
4233
|
var Rejectvue_type_template_id_873f59d2_render = function () {
|
|
@@ -5366,12 +5366,18 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5366
5366
|
obj.name = !obj.value ? obj.name + x.showname : obj.name + ',' + x.showname;
|
|
5367
5367
|
obj.value = obj.value ? obj.value + ',' + x.showid : 'employee-' + x.showid;
|
|
5368
5368
|
} else {
|
|
5369
|
-
data.push({
|
|
5369
|
+
data.push({
|
|
5370
|
+
name: '[部门]' + x.showname,
|
|
5371
|
+
value: 'department-' + x.showid
|
|
5372
|
+
});
|
|
5370
5373
|
}
|
|
5371
5374
|
});
|
|
5372
5375
|
obj.value && data.push(obj);
|
|
5373
5376
|
this.nextOtherOrgObjSelect.map(function (x) {
|
|
5374
|
-
data.push({
|
|
5377
|
+
data.push({
|
|
5378
|
+
name: '[企业]' + x.showname,
|
|
5379
|
+
value: 'enterprise-' + x.showid
|
|
5380
|
+
});
|
|
5375
5381
|
});
|
|
5376
5382
|
return data;
|
|
5377
5383
|
}
|
|
@@ -5736,9 +5742,13 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5736
5742
|
choiceDeptId = _res$data.choiceDeptId,
|
|
5737
5743
|
pOrgId = _res$data.pOrgId,
|
|
5738
5744
|
taskExamine = _res$data.taskExamine,
|
|
5745
|
+
currentOrgName = _res$data.currentOrgName,
|
|
5746
|
+
otherOrgName = _res$data.otherOrgName,
|
|
5739
5747
|
defaultNotificationMessage = _res$data.defaultNotificationMessage,
|
|
5740
5748
|
defaultNotificationType = _res$data.defaultNotificationType;
|
|
5741
5749
|
|
|
5750
|
+
that.currentOrgName = currentOrgName;
|
|
5751
|
+
that.otherOrgName = otherOrgName;
|
|
5742
5752
|
that.taskExamineInfo = taskExamine;
|
|
5743
5753
|
that.form.isReturnSubmitter = taskExamine.isReturnSubmitter;
|
|
5744
5754
|
that.form.isUndertakeReply = taskExamine.isUndertakeReply;
|
|
@@ -6034,8 +6044,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6034
6044
|
|
|
6035
6045
|
var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
6036
6046
|
components_Handlevue_type_script_lang_js_,
|
|
6037
|
-
|
|
6038
|
-
|
|
6047
|
+
Handlevue_type_template_id_3b9018af_render,
|
|
6048
|
+
Handlevue_type_template_id_3b9018af_staticRenderFns,
|
|
6039
6049
|
false,
|
|
6040
6050
|
null,
|
|
6041
6051
|
null,
|