eoss-ui 0.6.40 → 0.6.42
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 -0
- package/lib/button.js +5 -0
- package/lib/checkbox-group.js +5 -0
- package/lib/data-table-form.js +5 -0
- package/lib/data-table.js +11 -6
- package/lib/date-picker.js +5 -0
- package/lib/dialog.js +5 -0
- package/lib/eoss-ui.common.js +1967 -1458
- package/lib/flow-group.js +5 -0
- package/lib/flow-list.js +128 -112
- package/lib/flow.js +903 -801
- package/lib/form.js +5 -0
- package/lib/handle-user.js +5 -0
- package/lib/handler.js +152 -76
- package/lib/icon.js +5 -0
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/input-number.js +5 -0
- package/lib/input.js +5 -0
- package/lib/login.js +248 -160
- package/lib/main.js +461 -245
- package/lib/nav.js +5 -0
- package/lib/page.js +5 -0
- package/lib/pagination.js +5 -0
- package/lib/player.js +5 -0
- package/lib/qr-code.js +18 -13
- package/lib/radio-group.js +5 -0
- package/lib/retrial-auth.js +5 -0
- package/lib/select-ganged.js +5 -0
- package/lib/select.js +5 -0
- package/lib/selector-panel.js +7 -3
- package/lib/selector.js +42 -5
- package/lib/sizer.js +5 -0
- package/lib/steps.js +5 -0
- package/lib/switch.js +5 -0
- package/lib/table-form.js +5 -0
- package/lib/tabs.js +5 -0
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/icon.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +5 -0
- package/lib/tree-group.js +5 -0
- package/lib/tree.js +5 -0
- package/lib/upload.js +5 -0
- package/lib/utils/util.js +5 -0
- package/lib/wujie.js +5 -0
- package/lib/wxlogin.js +5 -0
- package/package.json +159 -159
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/button-group/src/main.vue +298 -298
- package/packages/calendar/index.js +5 -5
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/clients/src/main.vue +144 -144
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +39 -39
- package/packages/data-table/src/column.vue +989 -989
- package/packages/data-table/src/main.vue +1822 -1820
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/CommonOpinions.vue +345 -345
- package/packages/flow/src/component/CustomPreset.vue +322 -322
- package/packages/flow/src/component/FileList.vue +99 -99
- package/packages/flow/src/component/Preset.vue +255 -255
- package/packages/flow/src/component/SendMsg.vue +229 -229
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +611 -603
- package/packages/flow/src/form.vue +121 -121
- package/packages/flow/src/freeStartFlow.vue +2843 -2843
- package/packages/flow/src/main.vue +2952 -2864
- package/packages/flow/src/processForm.vue +1018 -1007
- package/packages/flow/src/processReject.vue +293 -293
- package/packages/flow/src/reset.vue +899 -901
- package/packages/flow/src/startTaskRead.vue +596 -596
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +688 -688
- package/packages/flow-list/index.js +5 -5
- package/packages/flow-list/src/main.vue +1183 -1172
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +3584 -3584
- package/packages/form/src/table.vue +1420 -1420
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +138 -138
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +474 -388
- package/packages/icon/index.js +5 -5
- package/packages/icon/src/main.vue +101 -101
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/icon.json +1 -1
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +1935 -1892
- package/packages/login/src/resetPassword.vue +562 -562
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/index.vue +32 -3
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +505 -505
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +461 -454
- package/packages/main/src/public/settings.vue +221 -221
- 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 +259 -221
- package/packages/main/src/simplicity/index.vue +2047 -1993
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/menu-list.vue +128 -128
- package/packages/main/src/simplicity/message.vue +259 -259
- package/packages/main/src/simplicity/notice.vue +190 -190
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/sub-menu.vue +241 -241
- package/packages/main/src/simplicity/user.vue +257 -257
- package/packages/main/src/simplicity/userinfo.vue +312 -312
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +536 -536
- package/packages/nav/index.js +5 -5
- package/packages/nav/src/main.vue +402 -402
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +280 -280
- package/packages/select/index.js +5 -5
- package/packages/select/src/main.vue +775 -775
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/index.js +5 -5
- package/packages/selector/src/main.vue +689 -677
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/main.vue +1027 -1028
- package/packages/selector-panel/src/selection.vue +177 -177
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +254 -254
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/switch/src/main.vue +154 -154
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/icon.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/base.scss +260 -260
- package/packages/theme-chalk/src/button-group.scss +175 -175
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/data-table.scss +293 -293
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow-list.scss +36 -36
- package/packages/theme-chalk/src/flow.scss +318 -310
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/form.scss +496 -496
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/handler.scss +143 -143
- package/packages/theme-chalk/src/icon.scss +1789 -1760
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/login.scss +947 -939
- package/packages/theme-chalk/src/main.scss +639 -632
- package/packages/theme-chalk/src/menu.scss +222 -222
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +125 -125
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/selector.scss +91 -91
- package/packages/theme-chalk/src/simplicity.scss +1262 -1262
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +165 -165
- package/packages/theme-chalk/src/upload.scss +167 -167
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/tips/src/main.vue +141 -141
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1334 -1334
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wujie/src/main.vue +145 -145
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +248 -248
- package/src/config/image.js +2 -2
- package/src/index.js +157 -157
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/rules.js +18 -18
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +5 -0
- package/src/utils/webSocket.js +107 -107
- package/packages/.DS_Store +0 -0
- package/packages/data-table/.DS_Store +0 -0
- package/packages/data-table-form/.DS_Store +0 -0
- package/packages/error-page/.DS_Store +0 -0
- package/packages/flow/.DS_Store +0 -0
- package/packages/form/.DS_Store +0 -0
- package/packages/login/.DS_Store +0 -0
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/sizer/.DS_Store +0 -0
- package/packages/tabs/.DS_Store +0 -0
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/upload/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
package/lib/flow-group.js
CHANGED
|
@@ -560,6 +560,7 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
560
560
|
var lastProcessedIndex = 0;
|
|
561
561
|
var done = false;
|
|
562
562
|
var finishThink = false;
|
|
563
|
+
var hasThink = false;
|
|
563
564
|
ajax(_extends({
|
|
564
565
|
timeout: 990000,
|
|
565
566
|
format: false,
|
|
@@ -613,8 +614,12 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
613
614
|
var start = parsedData.message.match(startRegex);
|
|
614
615
|
var end = parsedData.message.match(endRegex);
|
|
615
616
|
if (start) {
|
|
617
|
+
hasThink = true;
|
|
616
618
|
var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
|
|
617
619
|
info.thinkContent += _thinkContent;
|
|
620
|
+
} else if (hasThink === false) {
|
|
621
|
+
info.content += parsedData.message;
|
|
622
|
+
chunks += parsedData.message;
|
|
618
623
|
} else {
|
|
619
624
|
if (end) {
|
|
620
625
|
finishThink = true;
|
package/lib/flow-list.js
CHANGED
|
@@ -560,6 +560,7 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
560
560
|
var lastProcessedIndex = 0;
|
|
561
561
|
var done = false;
|
|
562
562
|
var finishThink = false;
|
|
563
|
+
var hasThink = false;
|
|
563
564
|
ajax(_extends({
|
|
564
565
|
timeout: 990000,
|
|
565
566
|
format: false,
|
|
@@ -613,8 +614,12 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
613
614
|
var start = parsedData.message.match(startRegex);
|
|
614
615
|
var end = parsedData.message.match(endRegex);
|
|
615
616
|
if (start) {
|
|
617
|
+
hasThink = true;
|
|
616
618
|
var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
|
|
617
619
|
info.thinkContent += _thinkContent;
|
|
620
|
+
} else if (hasThink === false) {
|
|
621
|
+
info.content += parsedData.message;
|
|
622
|
+
chunks += parsedData.message;
|
|
618
623
|
} else {
|
|
619
624
|
if (end) {
|
|
620
625
|
finishThink = true;
|
|
@@ -4164,8 +4169,8 @@ module.exports = require("qs");
|
|
|
4164
4169
|
// ESM COMPAT FLAG
|
|
4165
4170
|
__webpack_require__.r(__webpack_exports__);
|
|
4166
4171
|
|
|
4167
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=
|
|
4168
|
-
var
|
|
4172
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=81c447bc&
|
|
4173
|
+
var mainvue_type_template_id_81c447bc_render = function () {
|
|
4169
4174
|
var _vm = this
|
|
4170
4175
|
var _h = _vm.$createElement
|
|
4171
4176
|
var _c = _vm._self._c || _h
|
|
@@ -4362,10 +4367,10 @@ var mainvue_type_template_id_56a21918_render = function () {
|
|
|
4362
4367
|
)
|
|
4363
4368
|
}
|
|
4364
4369
|
var staticRenderFns = []
|
|
4365
|
-
|
|
4370
|
+
mainvue_type_template_id_81c447bc_render._withStripped = true
|
|
4366
4371
|
|
|
4367
4372
|
|
|
4368
|
-
// CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=
|
|
4373
|
+
// CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=81c447bc&
|
|
4369
4374
|
|
|
4370
4375
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
4371
4376
|
var api = __webpack_require__(1);
|
|
@@ -4504,6 +4509,12 @@ var _components;
|
|
|
4504
4509
|
return ['flow', 'splitReading', 'preset'];
|
|
4505
4510
|
}
|
|
4506
4511
|
},
|
|
4512
|
+
theadWidth: {
|
|
4513
|
+
type: Object,
|
|
4514
|
+
default: function _default() {
|
|
4515
|
+
return {};
|
|
4516
|
+
}
|
|
4517
|
+
},
|
|
4507
4518
|
display: Boolean
|
|
4508
4519
|
},
|
|
4509
4520
|
inheritAttrs: false,
|
|
@@ -4674,35 +4685,35 @@ var _components;
|
|
|
4674
4685
|
align: 'center',
|
|
4675
4686
|
key: 'jbbm',
|
|
4676
4687
|
showOverflowTooltip: true,
|
|
4677
|
-
width: 150
|
|
4688
|
+
width: this.theadWidth.deptid || 150
|
|
4678
4689
|
}, {
|
|
4679
4690
|
label: '步骤',
|
|
4680
4691
|
field: 'itemname',
|
|
4681
4692
|
align: 'center',
|
|
4682
4693
|
key: 'bz',
|
|
4683
4694
|
showOverflowTooltip: true,
|
|
4684
|
-
width: 110
|
|
4695
|
+
width: this.theadWidth.itemname || 110
|
|
4685
4696
|
}, {
|
|
4686
4697
|
label: '办理人',
|
|
4687
4698
|
field: 'userName',
|
|
4688
4699
|
align: 'center',
|
|
4689
4700
|
key: 'blr',
|
|
4690
4701
|
showOverflowTooltip: true,
|
|
4691
|
-
width: 110
|
|
4702
|
+
width: this.theadWidth.userName || 110
|
|
4692
4703
|
}, {
|
|
4693
4704
|
label: '办理人部门',
|
|
4694
4705
|
field: 'deptName',
|
|
4695
4706
|
align: 'center',
|
|
4696
4707
|
showOverflowTooltip: true,
|
|
4697
4708
|
key: 'blrbm',
|
|
4698
|
-
width: 110
|
|
4709
|
+
width: this.theadWidth.deptName || 110
|
|
4699
4710
|
}, {
|
|
4700
4711
|
label: '状态',
|
|
4701
4712
|
field: 'pendstate',
|
|
4702
4713
|
key: 'zt',
|
|
4703
4714
|
align: 'center',
|
|
4704
4715
|
showOverflowTooltip: true,
|
|
4705
|
-
width: 80,
|
|
4716
|
+
width: this.theadWidth.pendstate || 80,
|
|
4706
4717
|
render: function render(h, params) {
|
|
4707
4718
|
return h('span', {
|
|
4708
4719
|
style: {
|
|
@@ -4715,6 +4726,7 @@ var _components;
|
|
|
4715
4726
|
label: '办理意见',
|
|
4716
4727
|
field: 'doresult',
|
|
4717
4728
|
align: 'center',
|
|
4729
|
+
width: this.theadWidth.doresult,
|
|
4718
4730
|
showOverflowTooltip: true,
|
|
4719
4731
|
key: 'blyj',
|
|
4720
4732
|
render: function render(h, params) {
|
|
@@ -4730,7 +4742,7 @@ var _components;
|
|
|
4730
4742
|
align: 'center',
|
|
4731
4743
|
key: 'yq',
|
|
4732
4744
|
showOverflowTooltip: true,
|
|
4733
|
-
width: 70,
|
|
4745
|
+
width: this.theadWidth.authTypeStr || 70,
|
|
4734
4746
|
render: function render(h, params) {
|
|
4735
4747
|
return h('span', { style: { color: 'deepskyblue' } }, params.row.authTypeStr);
|
|
4736
4748
|
}
|
|
@@ -4740,7 +4752,7 @@ var _components;
|
|
|
4740
4752
|
field: 'hasAdjunct',
|
|
4741
4753
|
align: 'center',
|
|
4742
4754
|
showOverflowTooltip: true,
|
|
4743
|
-
width: 70,
|
|
4755
|
+
width: this.theadWidth.hasAdjunct || 70,
|
|
4744
4756
|
render: function render(h, params) {
|
|
4745
4757
|
if (params.row.hasAdjunct) {
|
|
4746
4758
|
return h('span', {
|
|
@@ -4757,7 +4769,7 @@ var _components;
|
|
|
4757
4769
|
align: 'center',
|
|
4758
4770
|
key: 'sj',
|
|
4759
4771
|
showOverflowTooltip: true,
|
|
4760
|
-
width: 150,
|
|
4772
|
+
width: this.theadWidth.doetime || 150,
|
|
4761
4773
|
render: function render(h, params) {
|
|
4762
4774
|
return h('span', {}, params.row.doetime ? util["a" /* default */].formatDate(params.row.doetime, 'yyyy-MM-dd HH:mm') : '');
|
|
4763
4775
|
}
|
|
@@ -4767,7 +4779,7 @@ var _components;
|
|
|
4767
4779
|
align: 'center',
|
|
4768
4780
|
key: 'dbr',
|
|
4769
4781
|
showOverflowTooltip: true,
|
|
4770
|
-
width: 80,
|
|
4782
|
+
width: this.theadWidth.douserid || 80,
|
|
4771
4783
|
hide: _that.flowTableInfo.hasAgent != '1'
|
|
4772
4784
|
}, {
|
|
4773
4785
|
label: '催办',
|
|
@@ -4775,7 +4787,7 @@ var _components;
|
|
|
4775
4787
|
align: 'center',
|
|
4776
4788
|
key: 'cb',
|
|
4777
4789
|
showOverflowTooltip: true,
|
|
4778
|
-
width: 150,
|
|
4790
|
+
width: this.theadWidth.pressTimes || 150,
|
|
4779
4791
|
render: function render(h, params) {
|
|
4780
4792
|
return h('span', { style: 'color:deepskyblue;cursor: pointer;' }, params.row.pressTimes);
|
|
4781
4793
|
}
|
|
@@ -4804,28 +4816,28 @@ var _components;
|
|
|
4804
4816
|
key: 'jbbm',
|
|
4805
4817
|
align: 'center',
|
|
4806
4818
|
showOverflowTooltip: true,
|
|
4807
|
-
width: 150
|
|
4819
|
+
width: this.theadWidth.deptid || 150
|
|
4808
4820
|
}, {
|
|
4809
4821
|
label: '步骤',
|
|
4810
4822
|
field: 'itemname',
|
|
4811
4823
|
align: 'center',
|
|
4812
4824
|
key: 'bz',
|
|
4813
4825
|
showOverflowTooltip: true,
|
|
4814
|
-
width: 110
|
|
4826
|
+
width: this.theadWidth.itemname || 110
|
|
4815
4827
|
}, {
|
|
4816
4828
|
label: '办理人',
|
|
4817
4829
|
field: 'userName',
|
|
4818
4830
|
align: 'center',
|
|
4819
4831
|
key: 'blr',
|
|
4820
4832
|
showOverflowTooltip: true,
|
|
4821
|
-
width: 110
|
|
4833
|
+
width: this.theadWidth.userName || 110
|
|
4822
4834
|
}, {
|
|
4823
4835
|
label: '状态',
|
|
4824
4836
|
field: 'pendstate',
|
|
4825
4837
|
align: 'center',
|
|
4826
4838
|
key: 'zt',
|
|
4827
4839
|
showOverflowTooltip: true,
|
|
4828
|
-
width: 80,
|
|
4840
|
+
width: this.theadWidth.pendstate || 80,
|
|
4829
4841
|
render: function render(h, params) {
|
|
4830
4842
|
return h('span', {
|
|
4831
4843
|
style: {
|
|
@@ -4839,6 +4851,7 @@ var _components;
|
|
|
4839
4851
|
field: 'doresult',
|
|
4840
4852
|
align: 'center',
|
|
4841
4853
|
key: 'blyj',
|
|
4854
|
+
width: this.theadWidth.doresult,
|
|
4842
4855
|
showOverflowTooltip: true,
|
|
4843
4856
|
render: function render(h, params) {
|
|
4844
4857
|
if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
|
|
@@ -4853,7 +4866,7 @@ var _components;
|
|
|
4853
4866
|
align: 'center',
|
|
4854
4867
|
key: 'yq',
|
|
4855
4868
|
showOverflowTooltip: true,
|
|
4856
|
-
width: 70,
|
|
4869
|
+
width: this.theadWidth.authTypeStr || 70,
|
|
4857
4870
|
render: function render(h, params) {
|
|
4858
4871
|
return h('span', { style: { color: 'deepskyblue' } }, params.row.authTypeStr);
|
|
4859
4872
|
}
|
|
@@ -4863,7 +4876,7 @@ var _components;
|
|
|
4863
4876
|
align: 'center',
|
|
4864
4877
|
key: 'fj',
|
|
4865
4878
|
showOverflowTooltip: true,
|
|
4866
|
-
width: 70,
|
|
4879
|
+
width: this.theadWidth.hasAdjunct || 70,
|
|
4867
4880
|
render: function render(h, params) {
|
|
4868
4881
|
if (params.row.hasAdjunct) {
|
|
4869
4882
|
return h('span', {
|
|
@@ -4880,7 +4893,7 @@ var _components;
|
|
|
4880
4893
|
align: 'center',
|
|
4881
4894
|
key: 'sj',
|
|
4882
4895
|
showOverflowTooltip: true,
|
|
4883
|
-
width: 150,
|
|
4896
|
+
width: this.theadWidth.doetime || 150,
|
|
4884
4897
|
render: function render(h, params) {
|
|
4885
4898
|
return h('span', {}, params.row.doetime ? util["a" /* default */].formatDate(params.row.doetime, 'yyyy-MM-dd HH:mm') : '');
|
|
4886
4899
|
}
|
|
@@ -4890,7 +4903,7 @@ var _components;
|
|
|
4890
4903
|
align: 'center',
|
|
4891
4904
|
key: 'dbr',
|
|
4892
4905
|
showOverflowTooltip: true,
|
|
4893
|
-
width: 80,
|
|
4906
|
+
width: this.theadWidth.douserid || 80,
|
|
4894
4907
|
hide: _that.flowTableInfo.hasAgent != '1'
|
|
4895
4908
|
}, {
|
|
4896
4909
|
label: '催办',
|
|
@@ -4898,7 +4911,7 @@ var _components;
|
|
|
4898
4911
|
align: 'center',
|
|
4899
4912
|
key: 'cb',
|
|
4900
4913
|
showOverflowTooltip: true,
|
|
4901
|
-
width: 150,
|
|
4914
|
+
width: this.theadWidth.pressTimes || 150,
|
|
4902
4915
|
render: function render(h, params) {
|
|
4903
4916
|
return h('span', { style: 'color:deepskyblue;cursor: pointer;' }, params.row.pressTimes);
|
|
4904
4917
|
}
|
|
@@ -4954,18 +4967,18 @@ var _components;
|
|
|
4954
4967
|
var table = [{
|
|
4955
4968
|
title: '步骤',
|
|
4956
4969
|
align: 'center',
|
|
4957
|
-
width: '100',
|
|
4970
|
+
width: this.theadWidth.nodeName || '100',
|
|
4958
4971
|
field: 'nodeName'
|
|
4959
4972
|
}, {
|
|
4960
4973
|
title: '预设办理人',
|
|
4961
|
-
width: '120',
|
|
4974
|
+
width: this.theadWidth.presetUserName || '120',
|
|
4962
4975
|
align: 'center',
|
|
4963
4976
|
field: 'presetUserName'
|
|
4964
4977
|
}, {
|
|
4965
4978
|
title: '是否可编辑',
|
|
4966
4979
|
key: 'sfkbj',
|
|
4967
4980
|
align: 'center',
|
|
4968
|
-
width: '100',
|
|
4981
|
+
width: this.theadWidth.isEdit || '100',
|
|
4969
4982
|
render: function render(h, params) {
|
|
4970
4983
|
return h('span', _this3.getCodeValue(params.row.isEdit, 'is_edit'));
|
|
4971
4984
|
},
|
|
@@ -4973,13 +4986,13 @@ var _components;
|
|
|
4973
4986
|
}, {
|
|
4974
4987
|
key: 'zt',
|
|
4975
4988
|
title: '状态',
|
|
4976
|
-
width: '80',
|
|
4989
|
+
width: this.theadWidth.statusName || '80',
|
|
4977
4990
|
align: 'center',
|
|
4978
4991
|
field: 'statusName'
|
|
4979
4992
|
}, {
|
|
4980
4993
|
title: '预设类型',
|
|
4981
4994
|
key: 'yslx',
|
|
4982
|
-
width: '120',
|
|
4995
|
+
width: this.theadWidth.presetType || '120',
|
|
4983
4996
|
align: 'center',
|
|
4984
4997
|
render: function render(h, params) {
|
|
4985
4998
|
return h('span', _this3.getCodeValue(params.row.presetType, 'preset_type'));
|
|
@@ -4988,27 +5001,30 @@ var _components;
|
|
|
4988
5001
|
}, {
|
|
4989
5002
|
title: '流程名称',
|
|
4990
5003
|
key: 'lcmc',
|
|
5004
|
+
width: this.theadWidth.processDefName,
|
|
4991
5005
|
align: 'center',
|
|
4992
5006
|
field: 'processDefName'
|
|
4993
5007
|
}, {
|
|
4994
5008
|
title: '上一步骤',
|
|
4995
5009
|
key: 'sybz',
|
|
4996
5010
|
align: 'center',
|
|
5011
|
+
width: this.theadWidth.lastNodeName,
|
|
4997
5012
|
field: 'lastNodeName'
|
|
4998
5013
|
}, {
|
|
4999
5014
|
title: '创建步骤',
|
|
5000
5015
|
key: 'cjbz',
|
|
5001
5016
|
align: 'center',
|
|
5017
|
+
width: this.theadWidth.operationNodeName,
|
|
5002
5018
|
field: 'operationNodeName'
|
|
5003
5019
|
}, {
|
|
5004
5020
|
title: '创建人',
|
|
5005
5021
|
key: 'cjr',
|
|
5006
|
-
width: '120',
|
|
5022
|
+
width: this.theadWidth.creatorName || '120',
|
|
5007
5023
|
align: 'center',
|
|
5008
5024
|
field: 'creatorName'
|
|
5009
5025
|
}, {
|
|
5010
5026
|
title: '创建时间',
|
|
5011
|
-
width: '150',
|
|
5027
|
+
width: this.theadWidth.createTime || '150',
|
|
5012
5028
|
key: 'cjsj',
|
|
5013
5029
|
align: 'center',
|
|
5014
5030
|
render: function render(h, params) {
|
|
@@ -5071,12 +5087,12 @@ var _components;
|
|
|
5071
5087
|
}
|
|
5072
5088
|
},
|
|
5073
5089
|
|
|
5074
|
-
/**
|
|
5075
|
-
* handleFormSubmit
|
|
5076
|
-
* @desc:删除节点点击事件
|
|
5077
|
-
* @param {Object} formData 点击删除的form数据
|
|
5078
|
-
* @author liufan
|
|
5079
|
-
* @date 2022年11月29日
|
|
5090
|
+
/**
|
|
5091
|
+
* handleFormSubmit
|
|
5092
|
+
* @desc:删除节点点击事件
|
|
5093
|
+
* @param {Object} formData 点击删除的form数据
|
|
5094
|
+
* @author liufan
|
|
5095
|
+
* @date 2022年11月29日
|
|
5080
5096
|
**/
|
|
5081
5097
|
handleFormSubmit: function handleFormSubmit(formData) {
|
|
5082
5098
|
var _this4 = this;
|
|
@@ -5107,48 +5123,48 @@ var _components;
|
|
|
5107
5123
|
});
|
|
5108
5124
|
},
|
|
5109
5125
|
|
|
5110
|
-
/**
|
|
5111
|
-
* del
|
|
5112
|
-
* @desc:展示删除弹窗
|
|
5113
|
-
* @param {String} id 当前点击数据id
|
|
5114
|
-
* @author liufan
|
|
5115
|
-
* @date 2022年11月29日
|
|
5126
|
+
/**
|
|
5127
|
+
* del
|
|
5128
|
+
* @desc:展示删除弹窗
|
|
5129
|
+
* @param {String} id 当前点击数据id
|
|
5130
|
+
* @author liufan
|
|
5131
|
+
* @date 2022年11月29日
|
|
5116
5132
|
**/
|
|
5117
5133
|
del: function del(id) {
|
|
5118
5134
|
this.historyId = id;
|
|
5119
5135
|
this.showDel = true;
|
|
5120
5136
|
},
|
|
5121
5137
|
|
|
5122
|
-
/**
|
|
5123
|
-
* handleCurrentChange
|
|
5124
|
-
* @desc:监听页码变化
|
|
5125
|
-
* @param {String} val 当前页
|
|
5126
|
-
* @author liufan
|
|
5127
|
-
* @date 2022年11月29日
|
|
5138
|
+
/**
|
|
5139
|
+
* handleCurrentChange
|
|
5140
|
+
* @desc:监听页码变化
|
|
5141
|
+
* @param {String} val 当前页
|
|
5142
|
+
* @author liufan
|
|
5143
|
+
* @date 2022年11月29日
|
|
5128
5144
|
**/
|
|
5129
5145
|
handleCurrentChange: function handleCurrentChange(val) {
|
|
5130
5146
|
this.currentPage = val;
|
|
5131
5147
|
this.getPressList();
|
|
5132
5148
|
},
|
|
5133
5149
|
|
|
5134
|
-
/**
|
|
5135
|
-
* handleSizeChange
|
|
5136
|
-
* @desc:监听每页数据显示数量变化
|
|
5137
|
-
* @param {String} val 每页展示数量
|
|
5138
|
-
* @author liufan
|
|
5139
|
-
* @date 2022年11月29日
|
|
5150
|
+
/**
|
|
5151
|
+
* handleSizeChange
|
|
5152
|
+
* @desc:监听每页数据显示数量变化
|
|
5153
|
+
* @param {String} val 每页展示数量
|
|
5154
|
+
* @author liufan
|
|
5155
|
+
* @date 2022年11月29日
|
|
5140
5156
|
**/
|
|
5141
5157
|
handleSizeChange: function handleSizeChange(val) {
|
|
5142
5158
|
this.pageSize = val;
|
|
5143
5159
|
this.getPressList();
|
|
5144
5160
|
},
|
|
5145
5161
|
|
|
5146
|
-
/**
|
|
5147
|
-
* sortChange
|
|
5148
|
-
* @desc:监听排序变化
|
|
5149
|
-
* @param {Object} info 需要排序的字段及排序方式
|
|
5150
|
-
* @author liufan
|
|
5151
|
-
* @date 2022年11月29日
|
|
5162
|
+
/**
|
|
5163
|
+
* sortChange
|
|
5164
|
+
* @desc:监听排序变化
|
|
5165
|
+
* @param {Object} info 需要排序的字段及排序方式
|
|
5166
|
+
* @author liufan
|
|
5167
|
+
* @date 2022年11月29日
|
|
5152
5168
|
**/
|
|
5153
5169
|
sortChange: function sortChange(info) {
|
|
5154
5170
|
var prop = info.prop,
|
|
@@ -5159,11 +5175,11 @@ var _components;
|
|
|
5159
5175
|
this.getPressList();
|
|
5160
5176
|
},
|
|
5161
5177
|
|
|
5162
|
-
/**
|
|
5163
|
-
* getPressList
|
|
5164
|
-
* @desc:催办列表数据
|
|
5165
|
-
* @author liufan
|
|
5166
|
-
* @date 2022年11月29日
|
|
5178
|
+
/**
|
|
5179
|
+
* getPressList
|
|
5180
|
+
* @desc:催办列表数据
|
|
5181
|
+
* @author liufan
|
|
5182
|
+
* @date 2022年11月29日
|
|
5167
5183
|
**/
|
|
5168
5184
|
getPressList: function getPressList() {
|
|
5169
5185
|
var _this5 = this;
|
|
@@ -5193,12 +5209,12 @@ var _components;
|
|
|
5193
5209
|
});
|
|
5194
5210
|
},
|
|
5195
5211
|
|
|
5196
|
-
/**
|
|
5197
|
-
* goPress
|
|
5198
|
-
* @desc:催办列表查看
|
|
5199
|
-
* @param {String} id 催办列表id
|
|
5200
|
-
* @author liufan
|
|
5201
|
-
* @date 2022年11月29日
|
|
5212
|
+
/**
|
|
5213
|
+
* goPress
|
|
5214
|
+
* @desc:催办列表查看
|
|
5215
|
+
* @param {String} id 催办列表id
|
|
5216
|
+
* @author liufan
|
|
5217
|
+
* @date 2022年11月29日
|
|
5202
5218
|
**/
|
|
5203
5219
|
goPress: function goPress(id) {
|
|
5204
5220
|
this.historyId = id;
|
|
@@ -5206,23 +5222,23 @@ var _components;
|
|
|
5206
5222
|
this.getPressList();
|
|
5207
5223
|
},
|
|
5208
5224
|
|
|
5209
|
-
/**
|
|
5210
|
-
* showFile
|
|
5211
|
-
* @desc:附件查看
|
|
5212
|
-
* @param {String} ownId 附件id
|
|
5213
|
-
* @author liufan
|
|
5214
|
-
* @date 2022年11月29日
|
|
5225
|
+
/**
|
|
5226
|
+
* showFile
|
|
5227
|
+
* @desc:附件查看
|
|
5228
|
+
* @param {String} ownId 附件id
|
|
5229
|
+
* @author liufan
|
|
5230
|
+
* @date 2022年11月29日
|
|
5215
5231
|
**/
|
|
5216
5232
|
showFile: function showFile(ownId) {
|
|
5217
5233
|
this.wfpendingid = ownId;
|
|
5218
5234
|
this.showFileList = true;
|
|
5219
5235
|
},
|
|
5220
5236
|
|
|
5221
|
-
/**
|
|
5222
|
-
* handleChange
|
|
5223
|
-
* @desc:切换排序方式
|
|
5224
|
-
* @author liufan
|
|
5225
|
-
* @date 2022年11月22日
|
|
5237
|
+
/**
|
|
5238
|
+
* handleChange
|
|
5239
|
+
* @desc:切换排序方式
|
|
5240
|
+
* @author liufan
|
|
5241
|
+
* @date 2022年11月22日
|
|
5226
5242
|
**/
|
|
5227
5243
|
handleChange: function handleChange(key, value) {
|
|
5228
5244
|
if (value) {
|
|
@@ -5233,11 +5249,11 @@ var _components;
|
|
|
5233
5249
|
this.getFlowList();
|
|
5234
5250
|
},
|
|
5235
5251
|
|
|
5236
|
-
/**
|
|
5237
|
-
* getFlowList
|
|
5238
|
-
* @desc:获取流程列表
|
|
5239
|
-
* @author liufan
|
|
5240
|
-
* @date 2022年11月22日
|
|
5252
|
+
/**
|
|
5253
|
+
* getFlowList
|
|
5254
|
+
* @desc:获取流程列表
|
|
5255
|
+
* @author liufan
|
|
5256
|
+
* @date 2022年11月22日
|
|
5241
5257
|
**/
|
|
5242
5258
|
getFlowList: function getFlowList() {
|
|
5243
5259
|
var _this6 = this;
|
|
@@ -5291,12 +5307,12 @@ var _components;
|
|
|
5291
5307
|
});
|
|
5292
5308
|
},
|
|
5293
5309
|
|
|
5294
|
-
/**
|
|
5295
|
-
* handleClick
|
|
5296
|
-
* @desc:表单点击事件
|
|
5297
|
-
* @param {Object} val 当前点击行数据及按钮
|
|
5298
|
-
* @author liufan
|
|
5299
|
-
* @date 2022年11月10日
|
|
5310
|
+
/**
|
|
5311
|
+
* handleClick
|
|
5312
|
+
* @desc:表单点击事件
|
|
5313
|
+
* @param {Object} val 当前点击行数据及按钮
|
|
5314
|
+
* @author liufan
|
|
5315
|
+
* @date 2022年11月10日
|
|
5300
5316
|
**/
|
|
5301
5317
|
handleClick: function handleClick(val) {
|
|
5302
5318
|
var _this7 = this;
|
|
@@ -5342,13 +5358,13 @@ var _components;
|
|
|
5342
5358
|
}
|
|
5343
5359
|
},
|
|
5344
5360
|
|
|
5345
|
-
/**
|
|
5346
|
-
* getCodeValue
|
|
5347
|
-
* @desc:获取代码表过滤后的值
|
|
5348
|
-
* @param {String} value 展示数据的代码值
|
|
5349
|
-
* @param {String} type 代码表类型
|
|
5350
|
-
* @author liufan
|
|
5351
|
-
* @date 2022年11月10日
|
|
5361
|
+
/**
|
|
5362
|
+
* getCodeValue
|
|
5363
|
+
* @desc:获取代码表过滤后的值
|
|
5364
|
+
* @param {String} value 展示数据的代码值
|
|
5365
|
+
* @param {String} type 代码表类型
|
|
5366
|
+
* @author liufan
|
|
5367
|
+
* @date 2022年11月10日
|
|
5352
5368
|
**/
|
|
5353
5369
|
getCodeValue: function getCodeValue(value, type) {
|
|
5354
5370
|
var val = this[type].filter(function (item) {
|
|
@@ -5357,12 +5373,12 @@ var _components;
|
|
|
5357
5373
|
return val[0].shortName;
|
|
5358
5374
|
},
|
|
5359
5375
|
|
|
5360
|
-
/**
|
|
5361
|
-
* getSysInfo
|
|
5362
|
-
* @desc:获取代码表
|
|
5363
|
-
* @param {String} code 编码code值
|
|
5364
|
-
* @author liufan
|
|
5365
|
-
* @date 2022年11月10日
|
|
5376
|
+
/**
|
|
5377
|
+
* getSysInfo
|
|
5378
|
+
* @desc:获取代码表
|
|
5379
|
+
* @param {String} code 编码code值
|
|
5380
|
+
* @author liufan
|
|
5381
|
+
* @date 2022年11月10日
|
|
5366
5382
|
**/
|
|
5367
5383
|
getSysInfo: function getSysInfo(code) {
|
|
5368
5384
|
var _this8 = this;
|
|
@@ -5384,11 +5400,11 @@ var _components;
|
|
|
5384
5400
|
}).catch(function (e) {});
|
|
5385
5401
|
},
|
|
5386
5402
|
|
|
5387
|
-
/**
|
|
5388
|
-
* getListInfo
|
|
5389
|
-
* @desc:获取预设列表数据
|
|
5390
|
-
* @author liufan
|
|
5391
|
-
* @date 2022年11月10日
|
|
5403
|
+
/**
|
|
5404
|
+
* getListInfo
|
|
5405
|
+
* @desc:获取预设列表数据
|
|
5406
|
+
* @author liufan
|
|
5407
|
+
* @date 2022年11月10日
|
|
5392
5408
|
**/
|
|
5393
5409
|
getListInfo: function getListInfo() {
|
|
5394
5410
|
var _this9 = this;
|
|
@@ -5439,7 +5455,7 @@ var componentNormalizer = __webpack_require__(3);
|
|
|
5439
5455
|
|
|
5440
5456
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
5441
5457
|
src_mainvue_type_script_lang_js_,
|
|
5442
|
-
|
|
5458
|
+
mainvue_type_template_id_81c447bc_render,
|
|
5443
5459
|
staticRenderFns,
|
|
5444
5460
|
false,
|
|
5445
5461
|
null,
|