eoss-ui 0.8.30 → 0.8.32
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/archives.js +4 -4
- package/lib/eoss-ui.common.js +12134 -4210
- package/lib/flow.js +11904 -3995
- package/lib/form.js +17 -2
- package/lib/index.js +1 -1
- package/lib/select.js +3 -3
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/simplicity-top.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/upload.js +6 -6
- package/package.json +1 -1
- package/packages/archives/src/main.vue +2 -2
- package/packages/flow/src/component/Opinions.vue +453 -0
- package/packages/flow/src/component/taskUnionExamine.vue +7 -3
- package/packages/flow/src/flow.vue +4456 -0
- package/packages/flow/src/main.vue +40 -3
- package/packages/flow/src/processReject.vue +3 -2
- package/packages/flow/src/startTaskRead.vue +7 -1
- package/packages/form/src/main.vue +5 -0
- package/packages/select/src/main.vue +3 -3
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.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-top.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 +1 -0
- package/packages/theme-chalk/src/flow.scss +95 -1
- package/packages/upload/src/main.vue +5 -1
- package/src/index.js +1 -1
package/lib/archives.js
CHANGED
|
@@ -712,7 +712,7 @@ function normalizeComponent(
|
|
|
712
712
|
// ESM COMPAT FLAG
|
|
713
713
|
__webpack_require__.r(__webpack_exports__);
|
|
714
714
|
|
|
715
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/archives/src/main.vue?vue&type=template&id=
|
|
715
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/archives/src/main.vue?vue&type=template&id=442b4656&
|
|
716
716
|
var render = function () {
|
|
717
717
|
var _vm = this
|
|
718
718
|
var _h = _vm.$createElement
|
|
@@ -727,7 +727,7 @@ var staticRenderFns = []
|
|
|
727
727
|
render._withStripped = true
|
|
728
728
|
|
|
729
729
|
|
|
730
|
-
// CONCATENATED MODULE: ./packages/archives/src/main.vue?vue&type=template&id=
|
|
730
|
+
// CONCATENATED MODULE: ./packages/archives/src/main.vue?vue&type=template&id=442b4656&
|
|
731
731
|
|
|
732
732
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
733
733
|
var api = __webpack_require__(1);
|
|
@@ -795,7 +795,7 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
795
795
|
},
|
|
796
796
|
code: {
|
|
797
797
|
type: String,
|
|
798
|
-
default: ''
|
|
798
|
+
default: 'dispatch_acc,dispatch_only_acc'
|
|
799
799
|
}
|
|
800
800
|
},
|
|
801
801
|
data: function data() {
|
|
@@ -917,7 +917,7 @@ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
|
|
|
917
917
|
docHubCode: _this.code,
|
|
918
918
|
businessTitle: _this.businessTitle,
|
|
919
919
|
cmd: _this.onlineType,
|
|
920
|
-
action:
|
|
920
|
+
action: '公文正文',
|
|
921
921
|
adjunctId: _this.businessId,
|
|
922
922
|
// 红头参数
|
|
923
923
|
redFileElementOption: _this.documentParams.redFileElementOption,
|