eoss-ui 0.7.89 → 0.7.91
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 +16 -0
- package/lib/button.js +18 -2
- package/lib/calogin.js +16 -0
- package/lib/checkbox-group.js +16 -0
- package/lib/data-table-form.js +16 -0
- package/lib/data-table.js +32 -19
- package/lib/date-picker.js +16 -0
- package/lib/dialog.js +27 -6
- package/lib/eoss-ui.common.js +769 -757
- package/lib/flow-group.js +30 -15
- package/lib/flow-list.js +112 -96
- package/lib/flow.js +178 -162
- package/lib/form.js +16 -0
- package/lib/handle-user.js +19 -3
- package/lib/handler.js +26 -10
- package/lib/icon.js +16 -0
- package/lib/index.js +1 -1
- package/lib/input-number.js +16 -0
- package/lib/input.js +16 -0
- package/lib/login.js +16 -0
- package/lib/main.js +397 -386
- package/lib/nav.js +16 -0
- package/lib/page.js +16 -0
- package/lib/pagination.js +19 -3
- package/lib/player.js +16 -0
- package/lib/qr-code.js +16 -0
- package/lib/radio-group.js +16 -0
- package/lib/retrial-auth.js +22 -6
- package/lib/select-ganged.js +16 -0
- package/lib/select.js +18 -2
- package/lib/selector-panel.js +16 -0
- package/lib/selector.js +16 -0
- package/lib/sizer.js +16 -0
- package/lib/steps.js +16 -0
- package/lib/switch.js +16 -0
- package/lib/table-form.js +16 -0
- package/lib/tabs.js +16 -0
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/tips.js +16 -0
- package/lib/tree-group.js +19 -3
- package/lib/tree.js +16 -0
- package/lib/upload.js +16 -0
- package/lib/utils/util.js +16 -0
- package/lib/wujie.js +16 -0
- package/lib/wxlogin.js +16 -0
- package/package.json +1 -1
- package/packages/.DS_Store +0 -0
- package/packages/button/src/main.vue +2 -2
- package/packages/button-group/src/main.vue +346 -346
- package/packages/calogin/.DS_Store +0 -0
- package/packages/calogin/src/main.vue +412 -412
- package/packages/clients/src/main.vue +151 -151
- package/packages/data-table/src/column.vue +2 -5
- package/packages/data-table/src/main.vue +4 -3
- package/packages/date-picker/.DS_Store +0 -0
- package/packages/date-picker/src/.DS_Store +0 -0
- package/packages/dialog/.DS_Store +0 -0
- package/packages/dialog/src/main.vue +11 -4
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/src/.DS_Store +0 -0
- package/packages/flow/src/component/Circulate.vue +417 -417
- package/packages/flow/src/component/CommonOpinions.vue +376 -376
- package/packages/flow/src/component/CustomPreset.vue +324 -324
- package/packages/flow/src/component/FileList.vue +97 -97
- package/packages/flow/src/component/FreeCirculation.vue +244 -244
- package/packages/flow/src/component/Preset.vue +257 -257
- package/packages/flow/src/component/SendMsg.vue +242 -242
- package/packages/flow/src/component/SortFlow.vue +110 -110
- package/packages/flow/src/component/taskUnionExamine.vue +761 -761
- package/packages/flow/src/form.vue +123 -123
- package/packages/flow/src/freeStartFlow.vue +2855 -2855
- package/packages/flow/src/processForm.vue +1680 -1680
- package/packages/flow/src/processReject.vue +309 -309
- package/packages/flow/src/reset.vue +946 -946
- package/packages/flow/src/startTaskRead.vue +695 -695
- package/packages/flow/src/supervise.vue +159 -159
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/src/main.vue +728 -727
- package/packages/flow-list/.DS_Store +0 -0
- package/packages/flow-list/src/main.vue +2337 -2337
- package/packages/form/.DS_Store +0 -0
- package/packages/form/src/main.vue +3901 -3901
- package/packages/form/src/table.vue +1512 -1512
- package/packages/handle-user/src/main.vue +137 -137
- package/packages/handler/src/main.vue +10 -8
- package/packages/icon/.DS_Store +0 -0
- package/packages/icon/src/main.vue +104 -104
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/main.vue +2087 -2087
- package/packages/login/src/resetPassword.vue +557 -557
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/default/userinfo.vue +505 -503
- package/packages/main/src/main.vue +10 -15
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +464 -464
- package/packages/main/src/public/settings.vue +273 -273
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +158 -158
- package/packages/main/src/simplicity/index.vue +2330 -2328
- package/packages/main/src/simplicity/menu-list.vue +135 -135
- package/packages/main/src/simplicity/message.vue +293 -293
- package/packages/main/src/simplicity/notice.vue +222 -222
- package/packages/main/src/simplicity/sub-menu.vue +276 -276
- package/packages/main/src/simplicity/user.vue +259 -259
- package/packages/main/src/simplicity/userinfo.vue +403 -401
- package/packages/main/src/simplicityTop/apps.vue +388 -388
- package/packages/main/src/simplicityTop/avatar.vue +82 -82
- package/packages/main/src/simplicityTop/handler.vue +215 -215
- package/packages/main/src/simplicityTop/index.vue +2620 -2618
- package/packages/main/src/simplicityTop/lists.vue +84 -84
- package/packages/main/src/simplicityTop/menu-list.vue +135 -135
- package/packages/main/src/simplicityTop/message.vue +293 -293
- package/packages/main/src/simplicityTop/notice.vue +222 -222
- package/packages/main/src/simplicityTop/router-page.vue +45 -45
- package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
- package/packages/main/src/simplicityTop/user.vue +259 -259
- package/packages/main/src/simplicityTop/userinfo.vue +403 -401
- package/packages/menu/.DS_Store +0 -0
- package/packages/menu/src/main.vue +595 -595
- package/packages/nav/src/main.vue +351 -351
- package/packages/pagination/src/main.vue +1 -1
- package/packages/retrial-auth/src/main.vue +4 -4
- package/packages/select/.DS_Store +0 -0
- package/packages/select/src/main.vue +2 -2
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/src/main.vue +761 -761
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/src/main.vue +1036 -1036
- package/packages/selector-panel/src/selection.vue +174 -174
- package/packages/switch/src/main.vue +170 -170
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/data-table.scss +297 -297
- package/packages/theme-chalk/src/flow-list.scss +55 -55
- package/packages/theme-chalk/src/flow.scss +373 -373
- package/packages/theme-chalk/src/form.scss +501 -501
- package/packages/theme-chalk/src/handler.scss +148 -148
- package/packages/theme-chalk/src/icon.scss +3452 -3452
- package/packages/theme-chalk/src/login.scss +1006 -1006
- package/packages/theme-chalk/src/main.scss +664 -664
- package/packages/theme-chalk/src/menu.scss +224 -224
- package/packages/theme-chalk/src/selector.scss +114 -114
- package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
- package/packages/theme-chalk/src/simplicity.scss +1403 -1403
- package/packages/theme-chalk/src/tree.scss +165 -165
- package/packages/theme-chalk/src/upload.scss +172 -172
- package/packages/tips/src/main.vue +141 -141
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree-group/src/main.vue +2 -1
- package/packages/upload/.DS_Store +0 -0
- package/packages/upload/src/main.vue +1344 -1344
- package/packages/wujie/src/main.vue +146 -146
- package/src/.DS_Store +0 -0
- package/src/config/api.js +348 -348
- package/src/index.js +163 -163
- package/src/utils/.DS_Store +0 -0
- package/src/utils/rules.js +18 -18
- package/src/utils/util.js +16 -0
package/lib/flow-group.js
CHANGED
|
@@ -2129,6 +2129,21 @@ var getWeekday = function getWeekday(date) {
|
|
|
2129
2129
|
// Adjust for JavaScript's day numbering (0 is Sunday, 1 is Monday, etc.)
|
|
2130
2130
|
return adjustedDay === 0 ? 7 : adjustedDay;
|
|
2131
2131
|
};
|
|
2132
|
+
/**
|
|
2133
|
+
* getWinTop
|
|
2134
|
+
* @desc 获取同域的top窗口
|
|
2135
|
+
* @param {object} [wind] - window对象
|
|
2136
|
+
* @return {Window} 同域的top窗口
|
|
2137
|
+
**/
|
|
2138
|
+
var getWinTop = function getWinTop(wind) {
|
|
2139
|
+
wind = wind ? wind : window.__WUJIE_RAW_WINDOW__ ? window.__WUJIE_RAW_WINDOW__ : window;
|
|
2140
|
+
try {
|
|
2141
|
+
wind.parent.document;
|
|
2142
|
+
return getWinTop(wind.parent);
|
|
2143
|
+
} catch (error) {
|
|
2144
|
+
return wind;
|
|
2145
|
+
}
|
|
2146
|
+
};
|
|
2132
2147
|
|
|
2133
2148
|
/**
|
|
2134
2149
|
* getZoom
|
|
@@ -3874,6 +3889,7 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
3874
3889
|
getTypeName: getTypeName,
|
|
3875
3890
|
getValues: getValues,
|
|
3876
3891
|
getWeekday: getWeekday,
|
|
3892
|
+
getWinTop: getWinTop,
|
|
3877
3893
|
handlerUrl: handlerUrl,
|
|
3878
3894
|
hasChars: hasChars,
|
|
3879
3895
|
hasClass: hasClass,
|
|
@@ -4551,7 +4567,7 @@ module.exports = require("qs");
|
|
|
4551
4567
|
// ESM COMPAT FLAG
|
|
4552
4568
|
__webpack_require__.r(__webpack_exports__);
|
|
4553
4569
|
|
|
4554
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-group/src/main.vue?vue&type=template&id=
|
|
4570
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-group/src/main.vue?vue&type=template&id=0192cc7c&
|
|
4555
4571
|
var render = function () {
|
|
4556
4572
|
var _vm = this
|
|
4557
4573
|
var _h = _vm.$createElement
|
|
@@ -5818,7 +5834,7 @@ var staticRenderFns = []
|
|
|
5818
5834
|
render._withStripped = true
|
|
5819
5835
|
|
|
5820
5836
|
|
|
5821
|
-
// CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=
|
|
5837
|
+
// CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=0192cc7c&
|
|
5822
5838
|
|
|
5823
5839
|
// EXTERNAL MODULE: ./src/utils/util.js + 1 modules
|
|
5824
5840
|
var util = __webpack_require__(0);
|
|
@@ -6412,9 +6428,8 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
6412
6428
|
var name = item.name;
|
|
6413
6429
|
var width = 0;
|
|
6414
6430
|
var height = 0;
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
height = win.screen.availHeight - 60;
|
|
6431
|
+
width = util["a" /* default */].win.screen.availWidth - 10;
|
|
6432
|
+
height = util["a" /* default */].win.screen.availHeight - 60;
|
|
6418
6433
|
if (item.url) {
|
|
6419
6434
|
url = _this.handleUrlJoinParams(item);
|
|
6420
6435
|
}
|
|
@@ -6495,13 +6510,13 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
6495
6510
|
util["a" /* default */].busEmit(this, _extends({
|
|
6496
6511
|
method: 'windowClose'
|
|
6497
6512
|
}, JSON.parse(windowOpenConfig)));
|
|
6498
|
-
util["a" /* default */].
|
|
6513
|
+
util["a" /* default */].getWinTop().windowClose(JSON.parse(windowOpenConfig));
|
|
6499
6514
|
} else if (this.closeDialog && this.esDialog) {
|
|
6500
6515
|
this.esDialog.handleClose();
|
|
6501
|
-
} else if (util["a" /* default */].
|
|
6502
|
-
util["a" /* default */].
|
|
6503
|
-
} else if (util["a" /* default */].
|
|
6504
|
-
util["a" /* default */].
|
|
6516
|
+
} else if (util["a" /* default */].getWinTop().COOS_SDK) {
|
|
6517
|
+
util["a" /* default */].getWinTop().COOS_SDK.closePopup && util["a" /* default */].getWinTop().COOS_SDK.closePopup();
|
|
6518
|
+
} else if (util["a" /* default */].getWinTop().opener) {
|
|
6519
|
+
util["a" /* default */].getWinTop().close();
|
|
6505
6520
|
}
|
|
6506
6521
|
if (this.events && this.events.success) {
|
|
6507
6522
|
this.events.success();
|
|
@@ -6514,13 +6529,13 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
6514
6529
|
util["a" /* default */].busEmit(this, _extends({
|
|
6515
6530
|
method: 'windowClose'
|
|
6516
6531
|
}, JSON.parse(windowOpenConfig)));
|
|
6517
|
-
util["a" /* default */].
|
|
6532
|
+
util["a" /* default */].getWinTop().windowClose(JSON.parse(windowOpenConfig));
|
|
6518
6533
|
} else if (this.closeDialog && this.esDialog) {
|
|
6519
6534
|
this.esDialog.handleClose();
|
|
6520
|
-
} else if (util["a" /* default */].
|
|
6521
|
-
util["a" /* default */].
|
|
6522
|
-
} else if (util["a" /* default */].
|
|
6523
|
-
util["a" /* default */].
|
|
6535
|
+
} else if (util["a" /* default */].getWinTop().COOS_SDK) {
|
|
6536
|
+
util["a" /* default */].getWinTop().COOS_SDK.closePopup && util["a" /* default */].getWinTop().COOS_SDK.closePopup();
|
|
6537
|
+
} else if (util["a" /* default */].getWinTop().opener) {
|
|
6538
|
+
util["a" /* default */].getWinTop().close();
|
|
6524
6539
|
}
|
|
6525
6540
|
this.events && this.events.save(id, event);
|
|
6526
6541
|
this.$emit('save', id, event);
|
package/lib/flow-list.js
CHANGED
|
@@ -2129,6 +2129,21 @@ var getWeekday = function getWeekday(date) {
|
|
|
2129
2129
|
// Adjust for JavaScript's day numbering (0 is Sunday, 1 is Monday, etc.)
|
|
2130
2130
|
return adjustedDay === 0 ? 7 : adjustedDay;
|
|
2131
2131
|
};
|
|
2132
|
+
/**
|
|
2133
|
+
* getWinTop
|
|
2134
|
+
* @desc 获取同域的top窗口
|
|
2135
|
+
* @param {object} [wind] - window对象
|
|
2136
|
+
* @return {Window} 同域的top窗口
|
|
2137
|
+
**/
|
|
2138
|
+
var getWinTop = function getWinTop(wind) {
|
|
2139
|
+
wind = wind ? wind : window.__WUJIE_RAW_WINDOW__ ? window.__WUJIE_RAW_WINDOW__ : window;
|
|
2140
|
+
try {
|
|
2141
|
+
wind.parent.document;
|
|
2142
|
+
return getWinTop(wind.parent);
|
|
2143
|
+
} catch (error) {
|
|
2144
|
+
return wind;
|
|
2145
|
+
}
|
|
2146
|
+
};
|
|
2132
2147
|
|
|
2133
2148
|
/**
|
|
2134
2149
|
* getZoom
|
|
@@ -3874,6 +3889,7 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
3874
3889
|
getTypeName: getTypeName,
|
|
3875
3890
|
getValues: getValues,
|
|
3876
3891
|
getWeekday: getWeekday,
|
|
3892
|
+
getWinTop: getWinTop,
|
|
3877
3893
|
handlerUrl: handlerUrl,
|
|
3878
3894
|
hasChars: hasChars,
|
|
3879
3895
|
hasClass: hasClass,
|
|
@@ -6522,11 +6538,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6522
6538
|
|
|
6523
6539
|
|
|
6524
6540
|
methods: {
|
|
6525
|
-
/**
|
|
6526
|
-
* handleBatchDelete
|
|
6527
|
-
* @desc:批量删除
|
|
6528
|
-
* @author liufan
|
|
6529
|
-
* @date 2025年12月31日
|
|
6541
|
+
/**
|
|
6542
|
+
* handleBatchDelete
|
|
6543
|
+
* @desc:批量删除
|
|
6544
|
+
* @author liufan
|
|
6545
|
+
* @date 2025年12月31日
|
|
6530
6546
|
**/
|
|
6531
6547
|
handleBatchDelete: function handleBatchDelete() {
|
|
6532
6548
|
var _this6 = this;
|
|
@@ -6823,12 +6839,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6823
6839
|
}
|
|
6824
6840
|
},
|
|
6825
6841
|
|
|
6826
|
-
/**
|
|
6827
|
-
* handleFormSubmit
|
|
6828
|
-
* @desc:删除节点点击事件
|
|
6829
|
-
* @param {Object} formData 点击删除的form数据
|
|
6830
|
-
* @author liufan
|
|
6831
|
-
* @date 2022年11月29日
|
|
6842
|
+
/**
|
|
6843
|
+
* handleFormSubmit
|
|
6844
|
+
* @desc:删除节点点击事件
|
|
6845
|
+
* @param {Object} formData 点击删除的form数据
|
|
6846
|
+
* @author liufan
|
|
6847
|
+
* @date 2022年11月29日
|
|
6832
6848
|
**/
|
|
6833
6849
|
handleFormSubmit: function handleFormSubmit(formData) {
|
|
6834
6850
|
var _this12 = this;
|
|
@@ -6864,12 +6880,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6864
6880
|
});
|
|
6865
6881
|
},
|
|
6866
6882
|
|
|
6867
|
-
/**
|
|
6868
|
-
* del
|
|
6869
|
-
* @desc:展示删除弹窗
|
|
6870
|
-
* @param {String} id 当前点击数据id
|
|
6871
|
-
* @author liufan
|
|
6872
|
-
* @date 2022年11月29日
|
|
6883
|
+
/**
|
|
6884
|
+
* del
|
|
6885
|
+
* @desc:展示删除弹窗
|
|
6886
|
+
* @param {String} id 当前点击数据id
|
|
6887
|
+
* @author liufan
|
|
6888
|
+
* @date 2022年11月29日
|
|
6873
6889
|
**/
|
|
6874
6890
|
del: function del(id, type) {
|
|
6875
6891
|
this.modalType = type;
|
|
@@ -6877,12 +6893,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6877
6893
|
this.showDel = true;
|
|
6878
6894
|
},
|
|
6879
6895
|
|
|
6880
|
-
/**
|
|
6881
|
-
* handleCurrentChange
|
|
6882
|
-
* @desc:监听页码变化
|
|
6883
|
-
* @param {String} val 当前页
|
|
6884
|
-
* @author liufan
|
|
6885
|
-
* @date 2022年11月29日
|
|
6896
|
+
/**
|
|
6897
|
+
* handleCurrentChange
|
|
6898
|
+
* @desc:监听页码变化
|
|
6899
|
+
* @param {String} val 当前页
|
|
6900
|
+
* @author liufan
|
|
6901
|
+
* @date 2022年11月29日
|
|
6886
6902
|
**/
|
|
6887
6903
|
handleCurrentChange: function handleCurrentChange(val, type) {
|
|
6888
6904
|
this.currentPage = val;
|
|
@@ -6891,12 +6907,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6891
6907
|
}
|
|
6892
6908
|
},
|
|
6893
6909
|
|
|
6894
|
-
/**
|
|
6895
|
-
* handleSizeChange
|
|
6896
|
-
* @desc:监听每页数据显示数量变化
|
|
6897
|
-
* @param {String} val 每页展示数量
|
|
6898
|
-
* @author liufan
|
|
6899
|
-
* @date 2022年11月29日
|
|
6910
|
+
/**
|
|
6911
|
+
* handleSizeChange
|
|
6912
|
+
* @desc:监听每页数据显示数量变化
|
|
6913
|
+
* @param {String} val 每页展示数量
|
|
6914
|
+
* @author liufan
|
|
6915
|
+
* @date 2022年11月29日
|
|
6900
6916
|
**/
|
|
6901
6917
|
handleSizeChange: function handleSizeChange(val) {
|
|
6902
6918
|
this.pageSize = val;
|
|
@@ -6905,12 +6921,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6905
6921
|
}
|
|
6906
6922
|
},
|
|
6907
6923
|
|
|
6908
|
-
/**
|
|
6909
|
-
* sortChange
|
|
6910
|
-
* @desc:监听排序变化
|
|
6911
|
-
* @param {Object} info 需要排序的字段及排序方式
|
|
6912
|
-
* @author liufan
|
|
6913
|
-
* @date 2022年11月29日
|
|
6924
|
+
/**
|
|
6925
|
+
* sortChange
|
|
6926
|
+
* @desc:监听排序变化
|
|
6927
|
+
* @param {Object} info 需要排序的字段及排序方式
|
|
6928
|
+
* @author liufan
|
|
6929
|
+
* @date 2022年11月29日
|
|
6914
6930
|
**/
|
|
6915
6931
|
sortChange: function sortChange(info, type) {
|
|
6916
6932
|
var prop = info.prop;
|
|
@@ -6926,11 +6942,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6926
6942
|
}
|
|
6927
6943
|
},
|
|
6928
6944
|
|
|
6929
|
-
/**
|
|
6930
|
-
* getDeletList
|
|
6931
|
-
* @desc:删除列表数据
|
|
6932
|
-
* @author liufan
|
|
6933
|
-
* @date 2025年12月30日
|
|
6945
|
+
/**
|
|
6946
|
+
* getDeletList
|
|
6947
|
+
* @desc:删除列表数据
|
|
6948
|
+
* @author liufan
|
|
6949
|
+
* @date 2025年12月30日
|
|
6934
6950
|
**/
|
|
6935
6951
|
getDeletList: function getDeletList() {
|
|
6936
6952
|
var _this13 = this;
|
|
@@ -6959,11 +6975,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6959
6975
|
});
|
|
6960
6976
|
},
|
|
6961
6977
|
|
|
6962
|
-
/**
|
|
6963
|
-
* getResetList
|
|
6964
|
-
* @desc:重设列表数据
|
|
6965
|
-
* @author liufan
|
|
6966
|
-
* @date 2025年12月30日
|
|
6978
|
+
/**
|
|
6979
|
+
* getResetList
|
|
6980
|
+
* @desc:重设列表数据
|
|
6981
|
+
* @author liufan
|
|
6982
|
+
* @date 2025年12月30日
|
|
6967
6983
|
**/
|
|
6968
6984
|
getResetList: function getResetList() {
|
|
6969
6985
|
var _this14 = this;
|
|
@@ -6993,11 +7009,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6993
7009
|
});
|
|
6994
7010
|
},
|
|
6995
7011
|
|
|
6996
|
-
/**
|
|
6997
|
-
* getPressList
|
|
6998
|
-
* @desc:催办列表数据
|
|
6999
|
-
* @author liufan
|
|
7000
|
-
* @date 2022年11月29日
|
|
7012
|
+
/**
|
|
7013
|
+
* getPressList
|
|
7014
|
+
* @desc:催办列表数据
|
|
7015
|
+
* @author liufan
|
|
7016
|
+
* @date 2022年11月29日
|
|
7001
7017
|
**/
|
|
7002
7018
|
getPressList: function getPressList() {
|
|
7003
7019
|
var _this15 = this;
|
|
@@ -7027,12 +7043,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7027
7043
|
});
|
|
7028
7044
|
},
|
|
7029
7045
|
|
|
7030
|
-
/**
|
|
7031
|
-
* goPress
|
|
7032
|
-
* @desc:催办列表查看
|
|
7033
|
-
* @param {String} id 催办列表id
|
|
7034
|
-
* @author liufan
|
|
7035
|
-
* @date 2022年11月29日
|
|
7046
|
+
/**
|
|
7047
|
+
* goPress
|
|
7048
|
+
* @desc:催办列表查看
|
|
7049
|
+
* @param {String} id 催办列表id
|
|
7050
|
+
* @author liufan
|
|
7051
|
+
* @date 2022年11月29日
|
|
7036
7052
|
**/
|
|
7037
7053
|
goPress: function goPress(id) {
|
|
7038
7054
|
this.historyId = id;
|
|
@@ -7040,23 +7056,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7040
7056
|
this.getPressList();
|
|
7041
7057
|
},
|
|
7042
7058
|
|
|
7043
|
-
/**
|
|
7044
|
-
* showFile
|
|
7045
|
-
* @desc:附件查看
|
|
7046
|
-
* @param {String} ownId 附件id
|
|
7047
|
-
* @author liufan
|
|
7048
|
-
* @date 2022年11月29日
|
|
7059
|
+
/**
|
|
7060
|
+
* showFile
|
|
7061
|
+
* @desc:附件查看
|
|
7062
|
+
* @param {String} ownId 附件id
|
|
7063
|
+
* @author liufan
|
|
7064
|
+
* @date 2022年11月29日
|
|
7049
7065
|
**/
|
|
7050
7066
|
showFile: function showFile(ownId) {
|
|
7051
7067
|
this.wfpendingid = ownId;
|
|
7052
7068
|
this.showFileList = true;
|
|
7053
7069
|
},
|
|
7054
7070
|
|
|
7055
|
-
/**
|
|
7056
|
-
* handleChange
|
|
7057
|
-
* @desc:切换排序方式
|
|
7058
|
-
* @author liufan
|
|
7059
|
-
* @date 2022年11月22日
|
|
7071
|
+
/**
|
|
7072
|
+
* handleChange
|
|
7073
|
+
* @desc:切换排序方式
|
|
7074
|
+
* @author liufan
|
|
7075
|
+
* @date 2022年11月22日
|
|
7060
7076
|
**/
|
|
7061
7077
|
handleChange: function handleChange(key, value) {
|
|
7062
7078
|
if (value) {
|
|
@@ -7106,11 +7122,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7106
7122
|
}))();
|
|
7107
7123
|
},
|
|
7108
7124
|
|
|
7109
|
-
/**
|
|
7110
|
-
* getFlowList
|
|
7111
|
-
* @desc:获取流程列表
|
|
7112
|
-
* @author liufan
|
|
7113
|
-
* @date 2022年11月22日
|
|
7125
|
+
/**
|
|
7126
|
+
* getFlowList
|
|
7127
|
+
* @desc:获取流程列表
|
|
7128
|
+
* @author liufan
|
|
7129
|
+
* @date 2022年11月22日
|
|
7114
7130
|
**/
|
|
7115
7131
|
getFlowList: function getFlowList(type) {
|
|
7116
7132
|
var _this17 = this;
|
|
@@ -7190,12 +7206,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7190
7206
|
});
|
|
7191
7207
|
},
|
|
7192
7208
|
|
|
7193
|
-
/**
|
|
7194
|
-
* handleClick
|
|
7195
|
-
* @desc:表单点击事件
|
|
7196
|
-
* @param {Object} val 当前点击行数据及按钮
|
|
7197
|
-
* @author liufan
|
|
7198
|
-
* @date 2022年11月10日
|
|
7209
|
+
/**
|
|
7210
|
+
* handleClick
|
|
7211
|
+
* @desc:表单点击事件
|
|
7212
|
+
* @param {Object} val 当前点击行数据及按钮
|
|
7213
|
+
* @author liufan
|
|
7214
|
+
* @date 2022年11月10日
|
|
7199
7215
|
**/
|
|
7200
7216
|
handleClick: function handleClick(val) {
|
|
7201
7217
|
var _this18 = this;
|
|
@@ -7241,13 +7257,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7241
7257
|
}
|
|
7242
7258
|
},
|
|
7243
7259
|
|
|
7244
|
-
/**
|
|
7245
|
-
* getCodeValue
|
|
7246
|
-
* @desc:获取代码表过滤后的值
|
|
7247
|
-
* @param {String} value 展示数据的代码值
|
|
7248
|
-
* @param {String} type 代码表类型
|
|
7249
|
-
* @author liufan
|
|
7250
|
-
* @date 2022年11月10日
|
|
7260
|
+
/**
|
|
7261
|
+
* getCodeValue
|
|
7262
|
+
* @desc:获取代码表过滤后的值
|
|
7263
|
+
* @param {String} value 展示数据的代码值
|
|
7264
|
+
* @param {String} type 代码表类型
|
|
7265
|
+
* @author liufan
|
|
7266
|
+
* @date 2022年11月10日
|
|
7251
7267
|
**/
|
|
7252
7268
|
getCodeValue: function getCodeValue(value, type) {
|
|
7253
7269
|
var val = this[type].filter(function (item) {
|
|
@@ -7256,12 +7272,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7256
7272
|
return val[0].shortName;
|
|
7257
7273
|
},
|
|
7258
7274
|
|
|
7259
|
-
/**
|
|
7260
|
-
* getSysInfo
|
|
7261
|
-
* @desc:获取代码表
|
|
7262
|
-
* @param {String} code 编码code值
|
|
7263
|
-
* @author liufan
|
|
7264
|
-
* @date 2022年11月10日
|
|
7275
|
+
/**
|
|
7276
|
+
* getSysInfo
|
|
7277
|
+
* @desc:获取代码表
|
|
7278
|
+
* @param {String} code 编码code值
|
|
7279
|
+
* @author liufan
|
|
7280
|
+
* @date 2022年11月10日
|
|
7265
7281
|
**/
|
|
7266
7282
|
getSysInfo: function getSysInfo(code) {
|
|
7267
7283
|
var _this19 = this;
|
|
@@ -7283,11 +7299,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7283
7299
|
}).catch(function (e) {});
|
|
7284
7300
|
},
|
|
7285
7301
|
|
|
7286
|
-
/**
|
|
7287
|
-
* getListInfo
|
|
7288
|
-
* @desc:获取预设列表数据
|
|
7289
|
-
* @author liufan
|
|
7290
|
-
* @date 2022年11月10日
|
|
7302
|
+
/**
|
|
7303
|
+
* getListInfo
|
|
7304
|
+
* @desc:获取预设列表数据
|
|
7305
|
+
* @author liufan
|
|
7306
|
+
* @date 2022年11月10日
|
|
7291
7307
|
**/
|
|
7292
7308
|
getListInfo: function getListInfo() {
|
|
7293
7309
|
var _this20 = this;
|