eoss-mobiles 0.2.10 → 0.2.12
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/CHANGELOG.md +4 -1
- package/lib/action-sheet.js +2 -2
- package/lib/button-group.js +2 -2
- package/lib/button.js +2 -2
- package/lib/calendar.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/cell.js +2 -2
- package/lib/checkbox.js +112 -112
- package/lib/circle.js +2 -2
- package/lib/count-down.js +2 -2
- package/lib/date.js +34 -4
- package/lib/empty.js +2 -2
- package/lib/eoss-mobile.common.js +344 -137
- package/lib/esign.js +2 -2
- package/lib/field.js +2 -2
- package/lib/flow.js +193 -194
- package/lib/form.js +2 -2
- package/lib/grid-item.js +2 -2
- package/lib/grid.js +2 -2
- package/lib/image-preview.js +2 -2
- package/lib/image.js +2 -2
- package/lib/index.js +1 -1
- package/lib/list.js +2 -2
- package/lib/loading.js +2 -2
- package/lib/nav-bar.js +2 -2
- package/lib/notice-bar.js +273 -0
- package/lib/pagination.js +2 -2
- package/lib/picker.js +111 -111
- package/lib/popover.js +2 -2
- package/lib/popup.js +2 -2
- package/lib/pull-refresh.js +2 -2
- package/lib/radio.js +111 -111
- package/lib/rate.js +2 -2
- package/lib/search.js +2 -2
- package/lib/selector.js +112 -112
- package/lib/skeleton.js +2 -2
- package/lib/stepper.js +2 -2
- package/lib/swipe.js +2 -2
- package/lib/switch.js +2 -2
- package/lib/tab.js +2 -2
- package/lib/table-column.js +687 -147
- package/lib/table.js +114 -115
- package/lib/tabs.js +2 -2
- package/lib/tag.js +2 -2
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.scss +7 -3
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/notice-bar.css +0 -0
- package/lib/theme-chalk/selector.css +1 -1
- package/lib/uploader.js +2 -2
- package/package.json +1 -1
- package/packages/date/src/main.vue +14 -0
- package/packages/flow/src/components/Handle.vue +1 -1
- package/packages/flow/src/components/Opinion.vue +4 -4
- package/packages/flow/src/components/Reject.vue +1 -2
- package/packages/flow/src/components/StartFlow.vue +2 -3
- package/packages/flow/src/components/TaskRead.vue +1 -2
- package/packages/flow/src/components/taskUnionExamine.vue +3 -3
- package/packages/flow/src/main.vue +2 -0
- package/packages/notice-bar/index.js +5 -0
- package/packages/notice-bar/src/main.vue +15 -0
- package/packages/table/src/main.vue +0 -1
- package/packages/table-column/src/main.vue +272 -199
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.scss +7 -3
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/notice-bar.css +0 -0
- package/packages/theme-chalk/lib/selector.css +1 -1
- package/packages/theme-chalk/src/flow.scss +2 -0
- package/packages/theme-chalk/src/fonts/iconfont.scss +7 -3
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/notice-bar.scss +0 -0
- package/src/index.js +7 -4
package/lib/flow.js
CHANGED
|
@@ -90,111 +90,7 @@ module.exports =
|
|
|
90
90
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
91
91
|
|
|
92
92
|
"use strict";
|
|
93
|
-
/* harmony
|
|
94
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
95
|
-
|
|
96
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
97
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
98
|
-
// be included in the final webpack user bundle.
|
|
99
|
-
|
|
100
|
-
function normalizeComponent(
|
|
101
|
-
scriptExports,
|
|
102
|
-
render,
|
|
103
|
-
staticRenderFns,
|
|
104
|
-
functionalTemplate,
|
|
105
|
-
injectStyles,
|
|
106
|
-
scopeId,
|
|
107
|
-
moduleIdentifier /* server only */,
|
|
108
|
-
shadowMode /* vue-cli only */
|
|
109
|
-
) {
|
|
110
|
-
// Vue.extend constructor export interop
|
|
111
|
-
var options =
|
|
112
|
-
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
113
|
-
|
|
114
|
-
// render functions
|
|
115
|
-
if (render) {
|
|
116
|
-
options.render = render
|
|
117
|
-
options.staticRenderFns = staticRenderFns
|
|
118
|
-
options._compiled = true
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
// functional template
|
|
122
|
-
if (functionalTemplate) {
|
|
123
|
-
options.functional = true
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// scopedId
|
|
127
|
-
if (scopeId) {
|
|
128
|
-
options._scopeId = 'data-v-' + scopeId
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
var hook
|
|
132
|
-
if (moduleIdentifier) {
|
|
133
|
-
// server build
|
|
134
|
-
hook = function (context) {
|
|
135
|
-
// 2.3 injection
|
|
136
|
-
context =
|
|
137
|
-
context || // cached call
|
|
138
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
139
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
140
|
-
// 2.2 with runInNewContext: true
|
|
141
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
142
|
-
context = __VUE_SSR_CONTEXT__
|
|
143
|
-
}
|
|
144
|
-
// inject component styles
|
|
145
|
-
if (injectStyles) {
|
|
146
|
-
injectStyles.call(this, context)
|
|
147
|
-
}
|
|
148
|
-
// register component module identifier for async chunk inferrence
|
|
149
|
-
if (context && context._registeredComponents) {
|
|
150
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
// used by ssr in case component is cached and beforeCreate
|
|
154
|
-
// never gets called
|
|
155
|
-
options._ssrRegister = hook
|
|
156
|
-
} else if (injectStyles) {
|
|
157
|
-
hook = shadowMode
|
|
158
|
-
? function () {
|
|
159
|
-
injectStyles.call(
|
|
160
|
-
this,
|
|
161
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
162
|
-
)
|
|
163
|
-
}
|
|
164
|
-
: injectStyles
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
if (hook) {
|
|
168
|
-
if (options.functional) {
|
|
169
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
170
|
-
// go through the normalizer
|
|
171
|
-
options._injectStyles = hook
|
|
172
|
-
// register for functional component in vue file
|
|
173
|
-
var originalRender = options.render
|
|
174
|
-
options.render = function renderWithStyleInjection(h, context) {
|
|
175
|
-
hook.call(context)
|
|
176
|
-
return originalRender(h, context)
|
|
177
|
-
}
|
|
178
|
-
} else {
|
|
179
|
-
// inject component registration as beforeCreate hook
|
|
180
|
-
var existing = options.beforeCreate
|
|
181
|
-
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
return {
|
|
186
|
-
exports: scriptExports,
|
|
187
|
-
options: options
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
/***/ }),
|
|
193
|
-
/* 1 */
|
|
194
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
195
|
-
|
|
196
|
-
"use strict";
|
|
197
|
-
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
|
|
93
|
+
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
|
|
198
94
|
/* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eoss_design_color__WEBPACK_IMPORTED_MODULE_0__);
|
|
199
95
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
200
96
|
|
|
@@ -1508,6 +1404,110 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1508
1404
|
exportXls: exportXls
|
|
1509
1405
|
});
|
|
1510
1406
|
|
|
1407
|
+
/***/ }),
|
|
1408
|
+
/* 1 */
|
|
1409
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1410
|
+
|
|
1411
|
+
"use strict";
|
|
1412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
|
1413
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
1414
|
+
|
|
1415
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
1416
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
1417
|
+
// be included in the final webpack user bundle.
|
|
1418
|
+
|
|
1419
|
+
function normalizeComponent(
|
|
1420
|
+
scriptExports,
|
|
1421
|
+
render,
|
|
1422
|
+
staticRenderFns,
|
|
1423
|
+
functionalTemplate,
|
|
1424
|
+
injectStyles,
|
|
1425
|
+
scopeId,
|
|
1426
|
+
moduleIdentifier /* server only */,
|
|
1427
|
+
shadowMode /* vue-cli only */
|
|
1428
|
+
) {
|
|
1429
|
+
// Vue.extend constructor export interop
|
|
1430
|
+
var options =
|
|
1431
|
+
typeof scriptExports === 'function' ? scriptExports.options : scriptExports
|
|
1432
|
+
|
|
1433
|
+
// render functions
|
|
1434
|
+
if (render) {
|
|
1435
|
+
options.render = render
|
|
1436
|
+
options.staticRenderFns = staticRenderFns
|
|
1437
|
+
options._compiled = true
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
// functional template
|
|
1441
|
+
if (functionalTemplate) {
|
|
1442
|
+
options.functional = true
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
// scopedId
|
|
1446
|
+
if (scopeId) {
|
|
1447
|
+
options._scopeId = 'data-v-' + scopeId
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
var hook
|
|
1451
|
+
if (moduleIdentifier) {
|
|
1452
|
+
// server build
|
|
1453
|
+
hook = function (context) {
|
|
1454
|
+
// 2.3 injection
|
|
1455
|
+
context =
|
|
1456
|
+
context || // cached call
|
|
1457
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
1458
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
1459
|
+
// 2.2 with runInNewContext: true
|
|
1460
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
1461
|
+
context = __VUE_SSR_CONTEXT__
|
|
1462
|
+
}
|
|
1463
|
+
// inject component styles
|
|
1464
|
+
if (injectStyles) {
|
|
1465
|
+
injectStyles.call(this, context)
|
|
1466
|
+
}
|
|
1467
|
+
// register component module identifier for async chunk inferrence
|
|
1468
|
+
if (context && context._registeredComponents) {
|
|
1469
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
1470
|
+
}
|
|
1471
|
+
}
|
|
1472
|
+
// used by ssr in case component is cached and beforeCreate
|
|
1473
|
+
// never gets called
|
|
1474
|
+
options._ssrRegister = hook
|
|
1475
|
+
} else if (injectStyles) {
|
|
1476
|
+
hook = shadowMode
|
|
1477
|
+
? function () {
|
|
1478
|
+
injectStyles.call(
|
|
1479
|
+
this,
|
|
1480
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
1481
|
+
)
|
|
1482
|
+
}
|
|
1483
|
+
: injectStyles
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
if (hook) {
|
|
1487
|
+
if (options.functional) {
|
|
1488
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
1489
|
+
// go through the normalizer
|
|
1490
|
+
options._injectStyles = hook
|
|
1491
|
+
// register for functional component in vue file
|
|
1492
|
+
var originalRender = options.render
|
|
1493
|
+
options.render = function renderWithStyleInjection(h, context) {
|
|
1494
|
+
hook.call(context)
|
|
1495
|
+
return originalRender(h, context)
|
|
1496
|
+
}
|
|
1497
|
+
} else {
|
|
1498
|
+
// inject component registration as beforeCreate hook
|
|
1499
|
+
var existing = options.beforeCreate
|
|
1500
|
+
options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
|
|
1501
|
+
}
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
return {
|
|
1505
|
+
exports: scriptExports,
|
|
1506
|
+
options: options
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
1511
|
/***/ }),
|
|
1512
1512
|
/* 2 */
|
|
1513
1513
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
@@ -1543,7 +1543,7 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1543
1543
|
/* unused harmony export toTwoOfficesDispatch */
|
|
1544
1544
|
/* unused harmony export twoOfficesDispatch */
|
|
1545
1545
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return isCanStartSubFlow; });
|
|
1546
|
-
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
1546
|
+
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
1547
1547
|
|
|
1548
1548
|
var activiti = '/bpm';
|
|
1549
1549
|
var pending = '/bpm';
|
|
@@ -1635,10 +1635,10 @@ var external_axios_ = __webpack_require__(7);
|
|
|
1635
1635
|
var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
|
|
1636
1636
|
|
|
1637
1637
|
// EXTERNAL MODULE: external "eoss-mobile-vant"
|
|
1638
|
-
var external_eoss_mobile_vant_ = __webpack_require__(
|
|
1638
|
+
var external_eoss_mobile_vant_ = __webpack_require__(5);
|
|
1639
1639
|
|
|
1640
1640
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
1641
|
-
var util = __webpack_require__(
|
|
1641
|
+
var util = __webpack_require__(0);
|
|
1642
1642
|
|
|
1643
1643
|
// EXTERNAL MODULE: external "qs"
|
|
1644
1644
|
var external_qs_ = __webpack_require__(4);
|
|
@@ -1927,13 +1927,13 @@ module.exports = require("qs");
|
|
|
1927
1927
|
/* 5 */
|
|
1928
1928
|
/***/ (function(module, exports) {
|
|
1929
1929
|
|
|
1930
|
-
module.exports = require("
|
|
1930
|
+
module.exports = require("eoss-mobile-vant");
|
|
1931
1931
|
|
|
1932
1932
|
/***/ }),
|
|
1933
1933
|
/* 6 */
|
|
1934
1934
|
/***/ (function(module, exports) {
|
|
1935
1935
|
|
|
1936
|
-
module.exports = require("eoss-
|
|
1936
|
+
module.exports = require("@eoss-design/color");
|
|
1937
1937
|
|
|
1938
1938
|
/***/ }),
|
|
1939
1939
|
/* 7 */
|
|
@@ -1957,7 +1957,7 @@ module.exports = require("sm-crypto");
|
|
|
1957
1957
|
// ESM COMPAT FLAG
|
|
1958
1958
|
__webpack_require__.r(__webpack_exports__);
|
|
1959
1959
|
|
|
1960
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
1960
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=2fdf7d5f&
|
|
1961
1961
|
var render = function () {
|
|
1962
1962
|
var _vm = this
|
|
1963
1963
|
var _h = _vm.$createElement
|
|
@@ -1970,7 +1970,7 @@ var render = function () {
|
|
|
1970
1970
|
? _c(
|
|
1971
1971
|
"StartFlow",
|
|
1972
1972
|
_vm._b(
|
|
1973
|
-
{ attrs: { beforeSubmit: _vm.beforeSubmit } },
|
|
1973
|
+
{ attrs: { userId: _vm.userId, beforeSubmit: _vm.beforeSubmit } },
|
|
1974
1974
|
"StartFlow",
|
|
1975
1975
|
_vm.$attrs,
|
|
1976
1976
|
false
|
|
@@ -1982,6 +1982,7 @@ var render = function () {
|
|
|
1982
1982
|
_vm._b(
|
|
1983
1983
|
{
|
|
1984
1984
|
attrs: {
|
|
1985
|
+
userId: _vm.userId,
|
|
1985
1986
|
identityIds: _vm.userId,
|
|
1986
1987
|
beforeSubmit: _vm.beforeSubmit,
|
|
1987
1988
|
},
|
|
@@ -2044,10 +2045,10 @@ var staticRenderFns = []
|
|
|
2044
2045
|
render._withStripped = true
|
|
2045
2046
|
|
|
2046
2047
|
|
|
2047
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
2048
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=2fdf7d5f&
|
|
2048
2049
|
|
|
2049
|
-
// 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/StartFlow.vue?vue&type=template&id=
|
|
2050
|
-
var
|
|
2050
|
+
// 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/StartFlow.vue?vue&type=template&id=478da7a0&
|
|
2051
|
+
var StartFlowvue_type_template_id_478da7a0_render = function () {
|
|
2051
2052
|
var _vm = this
|
|
2052
2053
|
var _h = _vm.$createElement
|
|
2053
2054
|
var _c = _vm._self._c || _h
|
|
@@ -2254,11 +2255,11 @@ var StartFlowvue_type_template_id_28b84f8e_render = function () {
|
|
|
2254
2255
|
]),
|
|
2255
2256
|
])
|
|
2256
2257
|
}
|
|
2257
|
-
var
|
|
2258
|
-
|
|
2258
|
+
var StartFlowvue_type_template_id_478da7a0_staticRenderFns = []
|
|
2259
|
+
StartFlowvue_type_template_id_478da7a0_render._withStripped = true
|
|
2259
2260
|
|
|
2260
2261
|
|
|
2261
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=
|
|
2262
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=478da7a0&
|
|
2262
2263
|
|
|
2263
2264
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
2264
2265
|
var api = __webpack_require__(2);
|
|
@@ -2266,8 +2267,8 @@ var api = __webpack_require__(2);
|
|
|
2266
2267
|
// EXTERNAL MODULE: ./src/utils/http.js + 1 modules
|
|
2267
2268
|
var http = __webpack_require__(3);
|
|
2268
2269
|
|
|
2269
|
-
// 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/Opinion.vue?vue&type=template&id=
|
|
2270
|
-
var
|
|
2270
|
+
// 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/Opinion.vue?vue&type=template&id=16dd801a&
|
|
2271
|
+
var Opinionvue_type_template_id_16dd801a_render = function () {
|
|
2271
2272
|
var _vm = this
|
|
2272
2273
|
var _h = _vm.$createElement
|
|
2273
2274
|
var _c = _vm._self._c || _h
|
|
@@ -2366,9 +2367,9 @@ var Opinionvue_type_template_id_d7d83634_render = function () {
|
|
|
2366
2367
|
},
|
|
2367
2368
|
},
|
|
2368
2369
|
[
|
|
2369
|
-
_vm._v("
|
|
2370
|
+
_vm._v("常用意见 "),
|
|
2370
2371
|
_c("i", {
|
|
2371
|
-
staticClass: "iconfont icon-
|
|
2372
|
+
staticClass: "iconfont icon-em-more",
|
|
2372
2373
|
}),
|
|
2373
2374
|
]
|
|
2374
2375
|
)
|
|
@@ -2390,7 +2391,10 @@ var Opinionvue_type_template_id_d7d83634_render = function () {
|
|
|
2390
2391
|
"div",
|
|
2391
2392
|
{
|
|
2392
2393
|
staticClass: "item em-flow-opion-box",
|
|
2393
|
-
staticStyle: {
|
|
2394
|
+
staticStyle: {
|
|
2395
|
+
"padding-bottom": "20px",
|
|
2396
|
+
position: "relative",
|
|
2397
|
+
},
|
|
2394
2398
|
},
|
|
2395
2399
|
[
|
|
2396
2400
|
_c("em-input", {
|
|
@@ -2423,10 +2427,8 @@ var Opinionvue_type_template_id_d7d83634_render = function () {
|
|
|
2423
2427
|
},
|
|
2424
2428
|
},
|
|
2425
2429
|
[
|
|
2426
|
-
_vm._v("
|
|
2427
|
-
_c("i", {
|
|
2428
|
-
staticClass: "iconfont icon-youjiantou",
|
|
2429
|
-
}),
|
|
2430
|
+
_vm._v("常用意见 "),
|
|
2431
|
+
_c("i", { staticClass: "iconfont icon-em-more" }),
|
|
2430
2432
|
]
|
|
2431
2433
|
)
|
|
2432
2434
|
: _vm._e(),
|
|
@@ -2469,11 +2471,11 @@ var Opinionvue_type_template_id_d7d83634_render = function () {
|
|
|
2469
2471
|
1
|
|
2470
2472
|
)
|
|
2471
2473
|
}
|
|
2472
|
-
var
|
|
2473
|
-
|
|
2474
|
+
var Opinionvue_type_template_id_16dd801a_staticRenderFns = []
|
|
2475
|
+
Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
2474
2476
|
|
|
2475
2477
|
|
|
2476
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=
|
|
2478
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=16dd801a&
|
|
2477
2479
|
|
|
2478
2480
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=script&lang=js&
|
|
2479
2481
|
//
|
|
@@ -2678,7 +2680,7 @@ Opinionvue_type_template_id_d7d83634_render._withStripped = true
|
|
|
2678
2680
|
var _that = this;
|
|
2679
2681
|
Object(http["a" /* default */])({
|
|
2680
2682
|
url: _that.baseUrl ? _that.baseUrl + api["a" /* commonOpion */] : api["a" /* commonOpion */],
|
|
2681
|
-
params: { userId:
|
|
2683
|
+
params: { userId: _that.userId }
|
|
2682
2684
|
}).then(function (res) {
|
|
2683
2685
|
if (res.status == 'success') {
|
|
2684
2686
|
_this.opinionList = res.data.list;
|
|
@@ -2704,7 +2706,7 @@ Opinionvue_type_template_id_d7d83634_render._withStripped = true
|
|
|
2704
2706
|
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=script&lang=js&
|
|
2705
2707
|
/* harmony default export */ var components_Opinionvue_type_script_lang_js_ = (Opinionvue_type_script_lang_js_);
|
|
2706
2708
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
2707
|
-
var componentNormalizer = __webpack_require__(
|
|
2709
|
+
var componentNormalizer = __webpack_require__(1);
|
|
2708
2710
|
|
|
2709
2711
|
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue
|
|
2710
2712
|
|
|
@@ -2716,8 +2718,8 @@ var componentNormalizer = __webpack_require__(0);
|
|
|
2716
2718
|
|
|
2717
2719
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
2718
2720
|
components_Opinionvue_type_script_lang_js_,
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
+
Opinionvue_type_template_id_16dd801a_render,
|
|
2722
|
+
Opinionvue_type_template_id_16dd801a_staticRenderFns,
|
|
2721
2723
|
false,
|
|
2722
2724
|
null,
|
|
2723
2725
|
null,
|
|
@@ -2947,7 +2949,7 @@ var Message_component = Object(componentNormalizer["a" /* default */])(
|
|
|
2947
2949
|
|
|
2948
2950
|
/* harmony default export */ var Message = (Message_component.exports);
|
|
2949
2951
|
// EXTERNAL MODULE: external "eoss-mobile-vant"
|
|
2950
|
-
var external_eoss_mobile_vant_ = __webpack_require__(
|
|
2952
|
+
var external_eoss_mobile_vant_ = __webpack_require__(5);
|
|
2951
2953
|
|
|
2952
2954
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/StartFlow.vue?vue&type=script&lang=js&
|
|
2953
2955
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -3203,8 +3205,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3203
3205
|
|
|
3204
3206
|
// 提交流程
|
|
3205
3207
|
onSubmit: function onSubmit() {
|
|
3206
|
-
var
|
|
3207
|
-
_this2 = this;
|
|
3208
|
+
var _this2 = this;
|
|
3208
3209
|
|
|
3209
3210
|
if (!this.form.opinion && this.isOpinionRequired == 1 && this.form.isImageOpinion == 0 || !this.file && this.isOpinionRequired == 1 && this.form.isImageOpinion == 1) {
|
|
3210
3211
|
this.$toast('请选择输入审批意见');
|
|
@@ -3223,7 +3224,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3223
3224
|
// return;
|
|
3224
3225
|
// }
|
|
3225
3226
|
|
|
3226
|
-
var info =
|
|
3227
|
+
var info = {
|
|
3227
3228
|
processDefinitionId: this.flowObj.processDefinitionId,
|
|
3228
3229
|
nextUserId: this.form.nextUserId,
|
|
3229
3230
|
nextNodeId: this.form.nextNodeId,
|
|
@@ -3231,11 +3232,11 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3231
3232
|
notificationType: Array.isArray(this.form.notificationType) ? '' : this.form.notificationType,
|
|
3232
3233
|
opinion: this.form.opinion,
|
|
3233
3234
|
nodeId: this.form.nodeId,
|
|
3234
|
-
userId: sessionStorage.getItem('userId'),
|
|
3235
3235
|
notificationMsg: this.form.notificationMsg,
|
|
3236
3236
|
loginType: 2, //登录方式
|
|
3237
|
-
isImageOpinion: this.form.isImageOpinion
|
|
3238
|
-
|
|
3237
|
+
isImageOpinion: this.form.isImageOpinion,
|
|
3238
|
+
userId: this.userId
|
|
3239
|
+
};
|
|
3239
3240
|
if (this.beforeSubmit) {
|
|
3240
3241
|
this.beforeSubmit(info);
|
|
3241
3242
|
return;
|
|
@@ -3367,7 +3368,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3367
3368
|
return new Promise(function (resolve, reiect) {
|
|
3368
3369
|
Object(http["a" /* default */])({
|
|
3369
3370
|
url: that.apiBaseUrl ? that.apiBaseUrl + api["t" /* toStartFlow */] : api["t" /* toStartFlow */],
|
|
3370
|
-
params: _extends({}, res, { userId:
|
|
3371
|
+
params: _extends({}, res, { userId: that.userId })
|
|
3371
3372
|
}).then(function (res) {
|
|
3372
3373
|
if (res.rCode == 0) {
|
|
3373
3374
|
res.results.nodeExtr.submitTipsMsg && external_eoss_mobile_vant_["Dialog"].confirm({
|
|
@@ -3426,7 +3427,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3426
3427
|
processDefinitionId: this.flowObj.processDefinitionId,
|
|
3427
3428
|
nodeId: res,
|
|
3428
3429
|
taskId: this.processObj.taskId,
|
|
3429
|
-
userId:
|
|
3430
|
+
userId: _that.userId
|
|
3430
3431
|
}
|
|
3431
3432
|
}).then(function (res) {
|
|
3432
3433
|
_this3.$toast.clear();
|
|
@@ -3468,8 +3469,8 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3468
3469
|
|
|
3469
3470
|
var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
3470
3471
|
components_StartFlowvue_type_script_lang_js_,
|
|
3471
|
-
|
|
3472
|
-
|
|
3472
|
+
StartFlowvue_type_template_id_478da7a0_render,
|
|
3473
|
+
StartFlowvue_type_template_id_478da7a0_staticRenderFns,
|
|
3473
3474
|
false,
|
|
3474
3475
|
null,
|
|
3475
3476
|
null,
|
|
@@ -3478,8 +3479,8 @@ var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3478
3479
|
)
|
|
3479
3480
|
|
|
3480
3481
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
3481
|
-
// 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=
|
|
3482
|
-
var
|
|
3482
|
+
// 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=68cd5d82&
|
|
3483
|
+
var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
3483
3484
|
var _vm = this
|
|
3484
3485
|
var _h = _vm.$createElement
|
|
3485
3486
|
var _c = _vm._self._c || _h
|
|
@@ -4490,14 +4491,14 @@ var Handlevue_type_template_id_51719524_render = function () {
|
|
|
4490
4491
|
1
|
|
4491
4492
|
)
|
|
4492
4493
|
}
|
|
4493
|
-
var
|
|
4494
|
-
|
|
4494
|
+
var Handlevue_type_template_id_68cd5d82_staticRenderFns = []
|
|
4495
|
+
Handlevue_type_template_id_68cd5d82_render._withStripped = true
|
|
4495
4496
|
|
|
4496
4497
|
|
|
4497
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
4498
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=68cd5d82&
|
|
4498
4499
|
|
|
4499
|
-
// 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=
|
|
4500
|
-
var
|
|
4500
|
+
// 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=d478fb96&
|
|
4501
|
+
var Rejectvue_type_template_id_d478fb96_render = function () {
|
|
4501
4502
|
var _vm = this
|
|
4502
4503
|
var _h = _vm.$createElement
|
|
4503
4504
|
var _c = _vm._self._c || _h
|
|
@@ -4593,17 +4594,15 @@ var Rejectvue_type_template_id_0a313a78_render = function () {
|
|
|
4593
4594
|
]),
|
|
4594
4595
|
])
|
|
4595
4596
|
}
|
|
4596
|
-
var
|
|
4597
|
-
|
|
4597
|
+
var Rejectvue_type_template_id_d478fb96_staticRenderFns = []
|
|
4598
|
+
Rejectvue_type_template_id_d478fb96_render._withStripped = true
|
|
4598
4599
|
|
|
4599
4600
|
|
|
4600
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Reject.vue?vue&type=template&id=
|
|
4601
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Reject.vue?vue&type=template&id=d478fb96&
|
|
4601
4602
|
|
|
4602
4603
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=script&lang=js&
|
|
4603
4604
|
var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
4604
4605
|
|
|
4605
|
-
var _props;
|
|
4606
|
-
|
|
4607
4606
|
//
|
|
4608
4607
|
//
|
|
4609
4608
|
//
|
|
@@ -4653,21 +4652,21 @@ var _props;
|
|
|
4653
4652
|
|
|
4654
4653
|
/* harmony default export */ var Rejectvue_type_script_lang_js_ = ({
|
|
4655
4654
|
name: 'Reject',
|
|
4656
|
-
props:
|
|
4655
|
+
props: {
|
|
4657
4656
|
appId: String,
|
|
4658
4657
|
type: String,
|
|
4659
4658
|
pendingId: String,
|
|
4660
|
-
userId: String,
|
|
4661
4659
|
beforeSubmit: Function,
|
|
4662
4660
|
baseUrl: String,
|
|
4663
4661
|
esign: {
|
|
4664
4662
|
type: Boolean,
|
|
4665
4663
|
default: false
|
|
4664
|
+
},
|
|
4665
|
+
userId: {
|
|
4666
|
+
type: String,
|
|
4667
|
+
default: ''
|
|
4666
4668
|
}
|
|
4667
|
-
},
|
|
4668
|
-
type: String,
|
|
4669
|
-
default: ''
|
|
4670
|
-
}, _props),
|
|
4669
|
+
},
|
|
4671
4670
|
data: function data() {
|
|
4672
4671
|
return {
|
|
4673
4672
|
showMsg: false, // 判断是否显示系统消息
|
|
@@ -4799,7 +4798,7 @@ var _props;
|
|
|
4799
4798
|
pendingId: this.pendingId,
|
|
4800
4799
|
isSinglePage: false,
|
|
4801
4800
|
opinion: this.form.opinion,
|
|
4802
|
-
userId:
|
|
4801
|
+
userId: _that.userId
|
|
4803
4802
|
}
|
|
4804
4803
|
}).then(function (res) {
|
|
4805
4804
|
if (res.status == 'success') {
|
|
@@ -4859,8 +4858,8 @@ var _props;
|
|
|
4859
4858
|
|
|
4860
4859
|
var Reject_component = Object(componentNormalizer["a" /* default */])(
|
|
4861
4860
|
components_Rejectvue_type_script_lang_js_,
|
|
4862
|
-
|
|
4863
|
-
|
|
4861
|
+
Rejectvue_type_template_id_d478fb96_render,
|
|
4862
|
+
Rejectvue_type_template_id_d478fb96_staticRenderFns,
|
|
4864
4863
|
false,
|
|
4865
4864
|
null,
|
|
4866
4865
|
null,
|
|
@@ -4870,7 +4869,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
|
|
|
4870
4869
|
|
|
4871
4870
|
/* harmony default export */ var Reject = (Reject_component.exports);
|
|
4872
4871
|
// EXTERNAL MODULE: ./src/utils/util.js
|
|
4873
|
-
var util = __webpack_require__(
|
|
4872
|
+
var util = __webpack_require__(0);
|
|
4874
4873
|
|
|
4875
4874
|
// CONCATENATED MODULE: ./packages/flow/src/flowMix.js
|
|
4876
4875
|
|
|
@@ -6352,7 +6351,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6352
6351
|
taskId: this.processObj.taskExamine.taskId,
|
|
6353
6352
|
pendingId: this.pendingId,
|
|
6354
6353
|
businessId: this.taskExamineInfo.businessId,
|
|
6355
|
-
userId:
|
|
6354
|
+
userId: _that.userId
|
|
6356
6355
|
}
|
|
6357
6356
|
}).then(function (res) {
|
|
6358
6357
|
_this6.$toast.clear();
|
|
@@ -6493,8 +6492,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6493
6492
|
|
|
6494
6493
|
var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
6495
6494
|
components_Handlevue_type_script_lang_js_,
|
|
6496
|
-
|
|
6497
|
-
|
|
6495
|
+
Handlevue_type_template_id_68cd5d82_render,
|
|
6496
|
+
Handlevue_type_template_id_68cd5d82_staticRenderFns,
|
|
6498
6497
|
false,
|
|
6499
6498
|
null,
|
|
6500
6499
|
null,
|
|
@@ -6503,8 +6502,8 @@ var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
|
6503
6502
|
)
|
|
6504
6503
|
|
|
6505
6504
|
/* harmony default export */ var Handle = (Handle_component.exports);
|
|
6506
|
-
// 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/TaskRead.vue?vue&type=template&id=
|
|
6507
|
-
var
|
|
6505
|
+
// 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/TaskRead.vue?vue&type=template&id=33f95177&
|
|
6506
|
+
var TaskReadvue_type_template_id_33f95177_render = function () {
|
|
6508
6507
|
var _vm = this
|
|
6509
6508
|
var _h = _vm.$createElement
|
|
6510
6509
|
var _c = _vm._self._c || _h
|
|
@@ -6672,17 +6671,15 @@ var TaskReadvue_type_template_id_096c8d9e_render = function () {
|
|
|
6672
6671
|
]),
|
|
6673
6672
|
])
|
|
6674
6673
|
}
|
|
6675
|
-
var
|
|
6676
|
-
|
|
6674
|
+
var TaskReadvue_type_template_id_33f95177_staticRenderFns = []
|
|
6675
|
+
TaskReadvue_type_template_id_33f95177_render._withStripped = true
|
|
6677
6676
|
|
|
6678
6677
|
|
|
6679
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=
|
|
6678
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=33f95177&
|
|
6680
6679
|
|
|
6681
6680
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/TaskRead.vue?vue&type=script&lang=js&
|
|
6682
6681
|
var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
6683
6682
|
|
|
6684
|
-
var TaskReadvue_type_script_lang_js_props;
|
|
6685
|
-
|
|
6686
6683
|
//
|
|
6687
6684
|
//
|
|
6688
6685
|
//
|
|
@@ -6793,12 +6790,11 @@ var TaskReadvue_type_script_lang_js_props;
|
|
|
6793
6790
|
components: {
|
|
6794
6791
|
Message: Message
|
|
6795
6792
|
},
|
|
6796
|
-
props:
|
|
6793
|
+
props: {
|
|
6797
6794
|
appid: String,
|
|
6798
6795
|
orgId: String,
|
|
6799
6796
|
beforeSubmit: Function,
|
|
6800
6797
|
pendingId: String,
|
|
6801
|
-
userId: String,
|
|
6802
6798
|
businessId: String,
|
|
6803
6799
|
baseUrl: String,
|
|
6804
6800
|
apiBaseUrl: String,
|
|
@@ -6810,11 +6806,12 @@ var TaskReadvue_type_script_lang_js_props;
|
|
|
6810
6806
|
paddingTop: {
|
|
6811
6807
|
type: [String, Number],
|
|
6812
6808
|
default: 0
|
|
6809
|
+
},
|
|
6810
|
+
userId: {
|
|
6811
|
+
type: String,
|
|
6812
|
+
default: ''
|
|
6813
6813
|
}
|
|
6814
|
-
},
|
|
6815
|
-
type: String,
|
|
6816
|
-
default: ''
|
|
6817
|
-
}, TaskReadvue_type_script_lang_js_props),
|
|
6814
|
+
},
|
|
6818
6815
|
computed: {
|
|
6819
6816
|
params: function params() {
|
|
6820
6817
|
return {
|
|
@@ -7016,7 +7013,7 @@ var TaskReadvue_type_script_lang_js_props;
|
|
|
7016
7013
|
isImageOpinion: 0,
|
|
7017
7014
|
loginType: 2,
|
|
7018
7015
|
taskAction: this.type,
|
|
7019
|
-
userId:
|
|
7016
|
+
userId: _that.userId
|
|
7020
7017
|
}
|
|
7021
7018
|
};
|
|
7022
7019
|
if (this.beforeSubmit) {
|
|
@@ -7148,8 +7145,8 @@ var TaskReadvue_type_script_lang_js_props;
|
|
|
7148
7145
|
|
|
7149
7146
|
var TaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
7150
7147
|
components_TaskReadvue_type_script_lang_js_,
|
|
7151
|
-
|
|
7152
|
-
|
|
7148
|
+
TaskReadvue_type_template_id_33f95177_render,
|
|
7149
|
+
TaskReadvue_type_template_id_33f95177_staticRenderFns,
|
|
7153
7150
|
false,
|
|
7154
7151
|
null,
|
|
7155
7152
|
null,
|
|
@@ -7158,8 +7155,8 @@ var TaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
|
7158
7155
|
)
|
|
7159
7156
|
|
|
7160
7157
|
/* harmony default export */ var TaskRead = (TaskRead_component.exports);
|
|
7161
|
-
// 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/taskUnionExamine.vue?vue&type=template&id=
|
|
7162
|
-
var
|
|
7158
|
+
// 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/taskUnionExamine.vue?vue&type=template&id=32f743e5&
|
|
7159
|
+
var taskUnionExaminevue_type_template_id_32f743e5_render = function () {
|
|
7163
7160
|
var _vm = this
|
|
7164
7161
|
var _h = _vm.$createElement
|
|
7165
7162
|
var _c = _vm._self._c || _h
|
|
@@ -7300,11 +7297,11 @@ var taskUnionExaminevue_type_template_id_1081a5be_render = function () {
|
|
|
7300
7297
|
]),
|
|
7301
7298
|
])
|
|
7302
7299
|
}
|
|
7303
|
-
var
|
|
7304
|
-
|
|
7300
|
+
var taskUnionExaminevue_type_template_id_32f743e5_staticRenderFns = []
|
|
7301
|
+
taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
7305
7302
|
|
|
7306
7303
|
|
|
7307
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=
|
|
7304
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=32f743e5&
|
|
7308
7305
|
|
|
7309
7306
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/taskUnionExamine.vue?vue&type=script&lang=js&
|
|
7310
7307
|
//
|
|
@@ -7724,7 +7721,7 @@ taskUnionExaminevue_type_template_id_1081a5be_render._withStripped = true
|
|
|
7724
7721
|
if (isOpinionRequired == 1 && !opinion && isImageOpinion == 0 || isOpinionRequired == 1 && isImageOpinion == 1 && !file) {
|
|
7725
7722
|
return this.$toast('当前步骤必须输入意见!');
|
|
7726
7723
|
}
|
|
7727
|
-
if (type == 'takeAdvice' && !nextCurrentOrgObj &&
|
|
7724
|
+
if (type == 'takeAdvice' && isHideCurrentOrg == 0 && (!nextCurrentOrgObj || nextCurrentOrgObj.length == 0) && isHideOtherOrg == 0 && (!nextOtherOrgObj || nextOtherOrgObj.length == 0) || type != 'takeAdvice' && isHideOtherOrg == 0 && (!nextOtherOrgObj || nextOtherOrgObj.length == 0)) {
|
|
7728
7725
|
return this.$toast('请选择处理对象!');
|
|
7729
7726
|
}
|
|
7730
7727
|
// else if (
|
|
@@ -7865,8 +7862,8 @@ taskUnionExaminevue_type_template_id_1081a5be_render._withStripped = true
|
|
|
7865
7862
|
|
|
7866
7863
|
var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
7867
7864
|
components_taskUnionExaminevue_type_script_lang_js_,
|
|
7868
|
-
|
|
7869
|
-
|
|
7865
|
+
taskUnionExaminevue_type_template_id_32f743e5_render,
|
|
7866
|
+
taskUnionExaminevue_type_template_id_32f743e5_staticRenderFns,
|
|
7870
7867
|
false,
|
|
7871
7868
|
null,
|
|
7872
7869
|
null,
|
|
@@ -7911,6 +7908,8 @@ var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
|
7911
7908
|
//
|
|
7912
7909
|
//
|
|
7913
7910
|
//
|
|
7911
|
+
//
|
|
7912
|
+
//
|
|
7914
7913
|
|
|
7915
7914
|
|
|
7916
7915
|
|