eoss-mobiles 0.2.12 → 0.2.14
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/checkbox.js +72 -32
- package/lib/config/api.js +4 -1
- package/lib/date.js +7 -3
- package/lib/eoss-mobile.common.js +565 -112
- package/lib/flow.js +175 -138
- package/lib/form.js +3 -3
- package/lib/index.js +1 -1
- package/lib/notice-bar.js +4 -4
- package/lib/picker.js +72 -32
- package/lib/pull-refresh.js +2 -2
- package/lib/radio.js +72 -32
- package/lib/retrial-auth.js +2436 -0
- package/lib/selector.js +90 -50
- package/lib/table-column.js +72 -32
- package/lib/table.js +39 -5
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/utils/axios.js +2 -3
- package/lib/utils/util.js +35 -1
- package/package.json +1 -1
- package/packages/date/src/main.vue +1 -1
- package/packages/flow/src/components/Handle.vue +7 -4
- package/packages/flow/src/components/Opinion.vue +40 -4
- package/packages/flow/src/components/StartFlow.vue +3 -3
- package/packages/flow/src/main.vue +6 -0
- package/packages/form/src/main.vue +1 -1
- package/packages/notice-bar/src/main.vue +1 -1
- package/packages/retrial-auth/index.js +5 -0
- package/packages/retrial-auth/src/main.vue +257 -0
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/src/flow.scss +7 -1
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/retrial-auth.scss +28 -0
- package/src/config/api.js +3 -0
- package/src/index.js +4 -1
- package/src/utils/axios.js +2 -2
- package/src/utils/util.js +128 -82
package/lib/flow.js
CHANGED
|
@@ -1301,6 +1301,23 @@ var openAttachment = function openAttachment(data) {
|
|
|
1301
1301
|
}
|
|
1302
1302
|
}
|
|
1303
1303
|
};
|
|
1304
|
+
/**
|
|
1305
|
+
* jsGoPayrollIndexAct
|
|
1306
|
+
* @desc:原生app打开工资条页面
|
|
1307
|
+
* @date 2024年1月11日
|
|
1308
|
+
* @author liufan
|
|
1309
|
+
*/
|
|
1310
|
+
var jsGoPayrollIndexAct = function jsGoPayrollIndexAct(id) {
|
|
1311
|
+
var u = navigator.userAgent;
|
|
1312
|
+
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; // android终端
|
|
1313
|
+
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); // ios终端
|
|
1314
|
+
if (isAndroid) {
|
|
1315
|
+
window.AndroidWebView.jsGoPayrollIndexAct(id);
|
|
1316
|
+
} else if (isiOS) {
|
|
1317
|
+
window.webkit.messageHandlers.jsGoPayrollIndexAct.postMessage(id);
|
|
1318
|
+
}
|
|
1319
|
+
};
|
|
1320
|
+
|
|
1304
1321
|
/**
|
|
1305
1322
|
* deepClone
|
|
1306
1323
|
* @desc:深拷贝
|
|
@@ -1358,6 +1375,21 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1358
1375
|
}
|
|
1359
1376
|
return obj;
|
|
1360
1377
|
};
|
|
1378
|
+
/**
|
|
1379
|
+
* 获取UUID
|
|
1380
|
+
* @desc:generateUUID
|
|
1381
|
+
* @author liufan
|
|
1382
|
+
* @date 2024年1月12日
|
|
1383
|
+
**/
|
|
1384
|
+
var generateUUID = function generateUUID() {
|
|
1385
|
+
var d = new Date().getTime();
|
|
1386
|
+
var uuid = 'xxxxxxxxxxxxxxxyxxxxxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
|
1387
|
+
var r = (d + Math.random() * 16) % 16 | 0;
|
|
1388
|
+
d = Math.floor(d / 16);
|
|
1389
|
+
return (c === 'x' ? r : r & 0x3 | 0x8).toString(16);
|
|
1390
|
+
});
|
|
1391
|
+
return uuid;
|
|
1392
|
+
};
|
|
1361
1393
|
/* harmony default export */ __webpack_exports__["a"] = ({
|
|
1362
1394
|
esEncrypt: esEncrypt,
|
|
1363
1395
|
esDecode: esDecode,
|
|
@@ -1401,7 +1433,9 @@ var exclAttribute = function exclAttribute(_ref4) {
|
|
|
1401
1433
|
getTypeName: getTypeName,
|
|
1402
1434
|
replenish: replenish,
|
|
1403
1435
|
identical: identical,
|
|
1404
|
-
|
|
1436
|
+
jsGoPayrollIndexAct: jsGoPayrollIndexAct,
|
|
1437
|
+
exportXls: exportXls,
|
|
1438
|
+
generateUUID: generateUUID
|
|
1405
1439
|
});
|
|
1406
1440
|
|
|
1407
1441
|
/***/ }),
|
|
@@ -1513,41 +1547,47 @@ function normalizeComponent(
|
|
|
1513
1547
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
1514
1548
|
|
|
1515
1549
|
"use strict";
|
|
1516
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return
|
|
1517
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1518
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return
|
|
1519
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1520
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1521
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1522
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1523
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1524
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1525
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1526
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1527
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1528
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1529
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1530
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1531
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1532
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1533
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1534
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1535
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1536
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1537
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1538
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1539
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1540
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1541
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1542
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1550
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return initRetrialAuth; });
|
|
1551
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return getRetrialAuthCode; });
|
|
1552
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return codeRetrialAuth; });
|
|
1553
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return selectObject; });
|
|
1554
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return findSysCode; });
|
|
1555
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return commonOpion; });
|
|
1556
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return getHandleInfoHtml; });
|
|
1557
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getNodeInfoHtml; });
|
|
1558
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return taskHandleHtml; });
|
|
1559
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return taskHandleHtmlImg; });
|
|
1560
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return registerNew; });
|
|
1561
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return getNodeInfo; });
|
|
1562
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return toStartFlow; });
|
|
1563
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return taskRejectHtml; });
|
|
1564
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return toTaskRejectHtml; });
|
|
1565
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return handleTaskRead; });
|
|
1566
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return taskReadHtml; });
|
|
1567
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return toStartTaskRead; });
|
|
1568
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return toStartTaskReadHtml; });
|
|
1569
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return toTaskTransferIndex; });
|
|
1570
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return findSysCodes; });
|
|
1571
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return getNotificationMsg; });
|
|
1572
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return toTaskUnionExamine; });
|
|
1573
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return taskUnionExamine; });
|
|
1574
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return toTaskTakeAdvice; });
|
|
1575
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return taskTakeAdvice; });
|
|
1576
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return toTaskStartDraft; });
|
|
1577
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return taskStartDraft; });
|
|
1578
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return toTaskUnionSeal; });
|
|
1579
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return taskUnionSeal; });
|
|
1543
1580
|
/* unused harmony export toTwoOfficesDispatch */
|
|
1544
1581
|
/* unused harmony export twoOfficesDispatch */
|
|
1545
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1582
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return isCanStartSubFlow; });
|
|
1546
1583
|
/* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
1547
1584
|
|
|
1548
1585
|
var activiti = '/bpm';
|
|
1549
1586
|
var pending = '/bpm';
|
|
1550
1587
|
var mecp = _utils_util__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].getStorage('flowPath') || '';
|
|
1588
|
+
var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身份权限验证页面
|
|
1589
|
+
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
1590
|
+
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
1551
1591
|
// 获取机构/用户/角色/群组等选择器
|
|
1552
1592
|
var selectObject = '/api/v1/mecpSys/selectObject.json';
|
|
1553
1593
|
// // 获取代码表数据
|
|
@@ -1646,7 +1686,6 @@ var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
|
|
|
1646
1686
|
|
|
1647
1687
|
// CONCATENATED MODULE: ./src/utils/axios.js
|
|
1648
1688
|
|
|
1649
|
-
// import Vue from 'vue';
|
|
1650
1689
|
|
|
1651
1690
|
|
|
1652
1691
|
|
|
@@ -1743,6 +1782,7 @@ http.interceptors.request.use(function (config) {
|
|
|
1743
1782
|
return Promise.error(error);
|
|
1744
1783
|
});
|
|
1745
1784
|
// 响应拦截器
|
|
1785
|
+
|
|
1746
1786
|
http.interceptors.response.use(function (response) {
|
|
1747
1787
|
if (response.status === 200) {
|
|
1748
1788
|
if (response.data.rCode === 64 || response.data.rCode === 27) {
|
|
@@ -1751,7 +1791,7 @@ http.interceptors.response.use(function (response) {
|
|
|
1751
1791
|
return Promise.resolve(response.data);
|
|
1752
1792
|
}
|
|
1753
1793
|
} else {
|
|
1754
|
-
return Promise.reject(response);
|
|
1794
|
+
return Promise.reject(response.data);
|
|
1755
1795
|
}
|
|
1756
1796
|
}, function (error) {
|
|
1757
1797
|
if (error && error.response) {
|
|
@@ -1957,7 +1997,7 @@ module.exports = require("sm-crypto");
|
|
|
1957
1997
|
// ESM COMPAT FLAG
|
|
1958
1998
|
__webpack_require__.r(__webpack_exports__);
|
|
1959
1999
|
|
|
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=
|
|
2000
|
+
// 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=7b5917b8&
|
|
1961
2001
|
var render = function () {
|
|
1962
2002
|
var _vm = this
|
|
1963
2003
|
var _h = _vm.$createElement
|
|
@@ -2045,10 +2085,10 @@ var staticRenderFns = []
|
|
|
2045
2085
|
render._withStripped = true
|
|
2046
2086
|
|
|
2047
2087
|
|
|
2048
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
2088
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7b5917b8&
|
|
2049
2089
|
|
|
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=
|
|
2051
|
-
var
|
|
2090
|
+
// 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=33d35d88&
|
|
2091
|
+
var StartFlowvue_type_template_id_33d35d88_render = function () {
|
|
2052
2092
|
var _vm = this
|
|
2053
2093
|
var _h = _vm.$createElement
|
|
2054
2094
|
var _c = _vm._self._c || _h
|
|
@@ -2081,28 +2121,6 @@ var StartFlowvue_type_template_id_478da7a0_render = function () {
|
|
|
2081
2121
|
_c(
|
|
2082
2122
|
"div",
|
|
2083
2123
|
[
|
|
2084
|
-
_c(
|
|
2085
|
-
"div",
|
|
2086
|
-
{
|
|
2087
|
-
staticClass: "shrink-btn",
|
|
2088
|
-
on: {
|
|
2089
|
-
click: function ($event) {
|
|
2090
|
-
_vm.isNextBox = !_vm.isNextBox
|
|
2091
|
-
},
|
|
2092
|
-
},
|
|
2093
|
-
},
|
|
2094
|
-
[
|
|
2095
|
-
_vm._v(
|
|
2096
|
-
"\n " +
|
|
2097
|
-
_vm._s(
|
|
2098
|
-
_vm.isNextBox
|
|
2099
|
-
? "收起下一步操作和节点"
|
|
2100
|
-
: "展开下一步操作和节点"
|
|
2101
|
-
) +
|
|
2102
|
-
"\n "
|
|
2103
|
-
),
|
|
2104
|
-
]
|
|
2105
|
-
),
|
|
2106
2124
|
_c(
|
|
2107
2125
|
"div",
|
|
2108
2126
|
{
|
|
@@ -2255,11 +2273,11 @@ var StartFlowvue_type_template_id_478da7a0_render = function () {
|
|
|
2255
2273
|
]),
|
|
2256
2274
|
])
|
|
2257
2275
|
}
|
|
2258
|
-
var
|
|
2259
|
-
|
|
2276
|
+
var StartFlowvue_type_template_id_33d35d88_staticRenderFns = []
|
|
2277
|
+
StartFlowvue_type_template_id_33d35d88_render._withStripped = true
|
|
2260
2278
|
|
|
2261
2279
|
|
|
2262
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=
|
|
2280
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=33d35d88&
|
|
2263
2281
|
|
|
2264
2282
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
2265
2283
|
var api = __webpack_require__(2);
|
|
@@ -2267,8 +2285,8 @@ var api = __webpack_require__(2);
|
|
|
2267
2285
|
// EXTERNAL MODULE: ./src/utils/http.js + 1 modules
|
|
2268
2286
|
var http = __webpack_require__(3);
|
|
2269
2287
|
|
|
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=
|
|
2271
|
-
var
|
|
2288
|
+
// 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=e785ca44&
|
|
2289
|
+
var Opinionvue_type_template_id_e785ca44_render = function () {
|
|
2272
2290
|
var _vm = this
|
|
2273
2291
|
var _h = _vm.$createElement
|
|
2274
2292
|
var _c = _vm._self._c || _h
|
|
@@ -2354,7 +2372,6 @@ var Opinionvue_type_template_id_16dd801a_render = function () {
|
|
|
2354
2372
|
expression: "opinion",
|
|
2355
2373
|
},
|
|
2356
2374
|
}),
|
|
2357
|
-
_vm.opinionList.length > 0 &&
|
|
2358
2375
|
_vm.isHiddenOftenOpinion
|
|
2359
2376
|
? _c(
|
|
2360
2377
|
"span",
|
|
@@ -2391,10 +2408,7 @@ var Opinionvue_type_template_id_16dd801a_render = function () {
|
|
|
2391
2408
|
"div",
|
|
2392
2409
|
{
|
|
2393
2410
|
staticClass: "item em-flow-opion-box",
|
|
2394
|
-
staticStyle: {
|
|
2395
|
-
"padding-bottom": "20px",
|
|
2396
|
-
position: "relative",
|
|
2397
|
-
},
|
|
2411
|
+
staticStyle: { position: "relative" },
|
|
2398
2412
|
},
|
|
2399
2413
|
[
|
|
2400
2414
|
_c("em-input", {
|
|
@@ -2462,7 +2476,12 @@ var Opinionvue_type_template_id_16dd801a_render = function () {
|
|
|
2462
2476
|
columns: _vm.opinionList,
|
|
2463
2477
|
valueKey: "content",
|
|
2464
2478
|
},
|
|
2465
|
-
on: {
|
|
2479
|
+
on: {
|
|
2480
|
+
cancel: _vm.handleClose,
|
|
2481
|
+
confirm: function ($event) {
|
|
2482
|
+
_vm.onInput($event, true)
|
|
2483
|
+
},
|
|
2484
|
+
},
|
|
2466
2485
|
}),
|
|
2467
2486
|
],
|
|
2468
2487
|
1
|
|
@@ -2471,11 +2490,11 @@ var Opinionvue_type_template_id_16dd801a_render = function () {
|
|
|
2471
2490
|
1
|
|
2472
2491
|
)
|
|
2473
2492
|
}
|
|
2474
|
-
var
|
|
2475
|
-
|
|
2493
|
+
var Opinionvue_type_template_id_e785ca44_staticRenderFns = []
|
|
2494
|
+
Opinionvue_type_template_id_e785ca44_render._withStripped = true
|
|
2476
2495
|
|
|
2477
2496
|
|
|
2478
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=
|
|
2497
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=e785ca44&
|
|
2479
2498
|
|
|
2480
2499
|
// 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&
|
|
2481
2500
|
//
|
|
@@ -2621,6 +2640,14 @@ Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
|
2621
2640
|
userId: {
|
|
2622
2641
|
type: String,
|
|
2623
2642
|
default: ''
|
|
2643
|
+
},
|
|
2644
|
+
isForceDisplayDefaultOptionForPrefix: {
|
|
2645
|
+
type: Boolean,
|
|
2646
|
+
default: false
|
|
2647
|
+
},
|
|
2648
|
+
nodeDefaultSubmitOpinion: {
|
|
2649
|
+
type: String,
|
|
2650
|
+
default: ''
|
|
2624
2651
|
}
|
|
2625
2652
|
},
|
|
2626
2653
|
// components: {
|
|
@@ -2629,6 +2656,7 @@ Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
|
2629
2656
|
data: function data() {
|
|
2630
2657
|
return {
|
|
2631
2658
|
opinion: '',
|
|
2659
|
+
newOpinion: '',
|
|
2632
2660
|
fixedDisabled: false,
|
|
2633
2661
|
showPicker: false,
|
|
2634
2662
|
esignPath: '',
|
|
@@ -2638,6 +2666,19 @@ Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
|
2638
2666
|
opinionList: [] //意见列表
|
|
2639
2667
|
};
|
|
2640
2668
|
},
|
|
2669
|
+
|
|
2670
|
+
watch: {
|
|
2671
|
+
isForceDisplayDefaultOptionForPrefix: {
|
|
2672
|
+
handler: function handler(val) {
|
|
2673
|
+
if (val) {
|
|
2674
|
+
this.opinion = this.nodeDefaultSubmitOpinion;
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
|
|
2678
|
+
deep: true,
|
|
2679
|
+
immediate: true
|
|
2680
|
+
}
|
|
2681
|
+
},
|
|
2641
2682
|
created: function created() {
|
|
2642
2683
|
if (this.nodeFixedOpinionSelectList.length > 0) {
|
|
2643
2684
|
this.opinionList = this.nodeFixedOpinionSelectList;
|
|
@@ -2679,7 +2720,7 @@ Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
|
2679
2720
|
|
|
2680
2721
|
var _that = this;
|
|
2681
2722
|
Object(http["a" /* default */])({
|
|
2682
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
2723
|
+
url: _that.baseUrl ? _that.baseUrl + api["b" /* commonOpion */] : api["b" /* commonOpion */],
|
|
2683
2724
|
params: { userId: _that.userId }
|
|
2684
2725
|
}).then(function (res) {
|
|
2685
2726
|
if (res.status == 'success') {
|
|
@@ -2689,11 +2730,20 @@ Opinionvue_type_template_id_16dd801a_render._withStripped = true
|
|
|
2689
2730
|
},
|
|
2690
2731
|
|
|
2691
2732
|
// 将input的值传递到父组件
|
|
2692
|
-
onInput: function onInput(val) {
|
|
2733
|
+
onInput: function onInput(val, isSelect) {
|
|
2693
2734
|
var isImageOpinion = this.isImageOpinion,
|
|
2694
2735
|
file = this.file;
|
|
2695
2736
|
|
|
2696
2737
|
this.opinion = typeof val === 'string' ? val : val.content;
|
|
2738
|
+
if (this.isForceDisplayDefaultOptionForPrefix && !this.opinion.startsWith(this.nodeDefaultSubmitOpinion) && !isSelect) {
|
|
2739
|
+
this.opinion = this.nodeDefaultSubmitOpinion + this.newOpinion;
|
|
2740
|
+
} else if (this.isForceDisplayDefaultOptionForPrefix && !isSelect) {
|
|
2741
|
+
this.newOpinion = this.opinion.replace(this.nodeDefaultSubmitOpinion, '');
|
|
2742
|
+
}
|
|
2743
|
+
if (this.isForceDisplayDefaultOptionForPrefix && isSelect) {
|
|
2744
|
+
this.newOpinion = this.opinion;
|
|
2745
|
+
this.opinion = this.nodeDefaultSubmitOpinion + this.opinion;
|
|
2746
|
+
}
|
|
2697
2747
|
this.$emit('onInputOpintion', {
|
|
2698
2748
|
opinion: this.opinion,
|
|
2699
2749
|
isImageOpinion: isImageOpinion,
|
|
@@ -2718,8 +2768,8 @@ var componentNormalizer = __webpack_require__(1);
|
|
|
2718
2768
|
|
|
2719
2769
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
2720
2770
|
components_Opinionvue_type_script_lang_js_,
|
|
2721
|
-
|
|
2722
|
-
|
|
2771
|
+
Opinionvue_type_template_id_e785ca44_render,
|
|
2772
|
+
Opinionvue_type_template_id_e785ca44_staticRenderFns,
|
|
2723
2773
|
false,
|
|
2724
2774
|
null,
|
|
2725
2775
|
null,
|
|
@@ -3116,7 +3166,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3116
3166
|
isChooseNextNode: 0,
|
|
3117
3167
|
isOpinionRequired: 0, //办理意见是否必填
|
|
3118
3168
|
isBanInputOpinion: 0, //是否禁用意见
|
|
3119
|
-
isNextBox:
|
|
3169
|
+
isNextBox: true, // 是否展开隐藏下步操作
|
|
3120
3170
|
defaultNotificationType: [], //选中消息数组
|
|
3121
3171
|
// showAppUser: false, // 办理人遮罩层
|
|
3122
3172
|
showNextList: false, // 下一步遮罩层
|
|
@@ -3260,7 +3310,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3260
3310
|
});
|
|
3261
3311
|
var _that = this;
|
|
3262
3312
|
Object(http["a" /* default */])({
|
|
3263
|
-
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["
|
|
3313
|
+
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["m" /* registerNew */] : api["m" /* registerNew */],
|
|
3264
3314
|
type: 'post',
|
|
3265
3315
|
params: formData
|
|
3266
3316
|
}).then(function (res) {
|
|
@@ -3367,7 +3417,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3367
3417
|
var that = this;
|
|
3368
3418
|
return new Promise(function (resolve, reiect) {
|
|
3369
3419
|
Object(http["a" /* default */])({
|
|
3370
|
-
url: that.apiBaseUrl ? that.apiBaseUrl + api["
|
|
3420
|
+
url: that.apiBaseUrl ? that.apiBaseUrl + api["w" /* toStartFlow */] : api["w" /* toStartFlow */],
|
|
3371
3421
|
params: _extends({}, res, { userId: that.userId })
|
|
3372
3422
|
}).then(function (res) {
|
|
3373
3423
|
if (res.rCode == 0) {
|
|
@@ -3422,7 +3472,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3422
3472
|
|
|
3423
3473
|
var _that = this;
|
|
3424
3474
|
Object(http["a" /* default */])({
|
|
3425
|
-
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["
|
|
3475
|
+
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["f" /* getNodeInfo */] : api["f" /* getNodeInfo */],
|
|
3426
3476
|
params: {
|
|
3427
3477
|
processDefinitionId: this.flowObj.processDefinitionId,
|
|
3428
3478
|
nodeId: res,
|
|
@@ -3469,8 +3519,8 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
3469
3519
|
|
|
3470
3520
|
var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
3471
3521
|
components_StartFlowvue_type_script_lang_js_,
|
|
3472
|
-
|
|
3473
|
-
|
|
3522
|
+
StartFlowvue_type_template_id_33d35d88_render,
|
|
3523
|
+
StartFlowvue_type_template_id_33d35d88_staticRenderFns,
|
|
3474
3524
|
false,
|
|
3475
3525
|
null,
|
|
3476
3526
|
null,
|
|
@@ -3479,8 +3529,8 @@ var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3479
3529
|
)
|
|
3480
3530
|
|
|
3481
3531
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
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=
|
|
3483
|
-
var
|
|
3532
|
+
// 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=0b00e17b&
|
|
3533
|
+
var Handlevue_type_template_id_0b00e17b_render = function () {
|
|
3484
3534
|
var _vm = this
|
|
3485
3535
|
var _h = _vm.$createElement
|
|
3486
3536
|
var _c = _vm._self._c || _h
|
|
@@ -3517,6 +3567,9 @@ var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
|
3517
3567
|
isOpinionRequired: _vm.isOpinionRequired,
|
|
3518
3568
|
disabled: _vm.isBanInputOpinion != 0,
|
|
3519
3569
|
baseUrl: _vm.baseUrl,
|
|
3570
|
+
isForceDisplayDefaultOptionForPrefix:
|
|
3571
|
+
_vm.isForceDisplayDefaultOptionForPrefix,
|
|
3572
|
+
nodeDefaultSubmitOpinion: _vm.nodeDefaultSubmitOpinion,
|
|
3520
3573
|
nodeFixedOpinionSelectList:
|
|
3521
3574
|
_vm.nodeFixedOpinionSelectList,
|
|
3522
3575
|
isHiddenOftenOpinion:
|
|
@@ -3709,30 +3762,6 @@ var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
|
3709
3762
|
_vm.form.isAddSign !== "1" &&
|
|
3710
3763
|
!_vm.isHiddenNextStepInfo
|
|
3711
3764
|
? _c("div", [
|
|
3712
|
-
!_vm.isReject
|
|
3713
|
-
? _c(
|
|
3714
|
-
"div",
|
|
3715
|
-
{
|
|
3716
|
-
staticClass: "shrink-btn",
|
|
3717
|
-
on: {
|
|
3718
|
-
click: function ($event) {
|
|
3719
|
-
_vm.isNextBox = !_vm.isNextBox
|
|
3720
|
-
},
|
|
3721
|
-
},
|
|
3722
|
-
},
|
|
3723
|
-
[
|
|
3724
|
-
_vm._v(
|
|
3725
|
-
"\n " +
|
|
3726
|
-
_vm._s(
|
|
3727
|
-
_vm.isNextBox
|
|
3728
|
-
? "收起下一步操作和节点"
|
|
3729
|
-
: "展开下一步操作和节点"
|
|
3730
|
-
) +
|
|
3731
|
-
"\n "
|
|
3732
|
-
),
|
|
3733
|
-
]
|
|
3734
|
-
)
|
|
3735
|
-
: _vm._e(),
|
|
3736
3765
|
_c(
|
|
3737
3766
|
"div",
|
|
3738
3767
|
{
|
|
@@ -3751,7 +3780,7 @@ var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
|
3751
3780
|
_vm.isChooseNextNode == 1
|
|
3752
3781
|
? _c(
|
|
3753
3782
|
"div",
|
|
3754
|
-
{ staticClass: "item" },
|
|
3783
|
+
{ staticClass: "item next-step" },
|
|
3755
3784
|
[
|
|
3756
3785
|
_c(
|
|
3757
3786
|
"em-input",
|
|
@@ -4099,7 +4128,6 @@ var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
|
4099
4128
|
attrs: {
|
|
4100
4129
|
multiple: "",
|
|
4101
4130
|
objType: _vm.objType,
|
|
4102
|
-
required: "",
|
|
4103
4131
|
param: {
|
|
4104
4132
|
pid: _vm.pid,
|
|
4105
4133
|
},
|
|
@@ -4491,11 +4519,11 @@ var Handlevue_type_template_id_68cd5d82_render = function () {
|
|
|
4491
4519
|
1
|
|
4492
4520
|
)
|
|
4493
4521
|
}
|
|
4494
|
-
var
|
|
4495
|
-
|
|
4522
|
+
var Handlevue_type_template_id_0b00e17b_staticRenderFns = []
|
|
4523
|
+
Handlevue_type_template_id_0b00e17b_render._withStripped = true
|
|
4496
4524
|
|
|
4497
4525
|
|
|
4498
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
4526
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=0b00e17b&
|
|
4499
4527
|
|
|
4500
4528
|
// 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
4529
|
var Rejectvue_type_template_id_d478fb96_render = function () {
|
|
@@ -4761,7 +4789,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
4761
4789
|
});
|
|
4762
4790
|
var _that = this;
|
|
4763
4791
|
Object(http["a" /* default */])({
|
|
4764
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
4792
|
+
url: _that.baseUrl ? _that.baseUrl + api["r" /* taskRejectHtml */] : api["r" /* taskRejectHtml */],
|
|
4765
4793
|
type: 'post',
|
|
4766
4794
|
params: formData
|
|
4767
4795
|
}).then(function (res) {
|
|
@@ -4793,7 +4821,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
4793
4821
|
duration: 0
|
|
4794
4822
|
});
|
|
4795
4823
|
Object(http["a" /* default */])({
|
|
4796
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
4824
|
+
url: _that.baseUrl ? _that.baseUrl + api["z" /* toTaskRejectHtml */] : api["z" /* toTaskRejectHtml */],
|
|
4797
4825
|
params: {
|
|
4798
4826
|
pendingId: this.pendingId,
|
|
4799
4827
|
isSinglePage: false,
|
|
@@ -4890,7 +4918,7 @@ var util = __webpack_require__(0);
|
|
|
4890
4918
|
duration: 0
|
|
4891
4919
|
});
|
|
4892
4920
|
Object(http["a" /* default */])({
|
|
4893
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
4921
|
+
url: _that.baseUrl ? _that.baseUrl + api["z" /* toTaskRejectHtml */] : api["z" /* toTaskRejectHtml */],
|
|
4894
4922
|
params: {
|
|
4895
4923
|
appid: this.appid,
|
|
4896
4924
|
pendingId: this.pendingId,
|
|
@@ -4935,7 +4963,7 @@ var util = __webpack_require__(0);
|
|
|
4935
4963
|
console.log('获取流程');
|
|
4936
4964
|
return new Promise(function (resolve, reiect) {
|
|
4937
4965
|
Object(http["a" /* default */])({
|
|
4938
|
-
url: that.baseUrl ? that.baseUrl + api["
|
|
4966
|
+
url: that.baseUrl ? that.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
|
|
4939
4967
|
params: {
|
|
4940
4968
|
pendingId: that.pendingId,
|
|
4941
4969
|
identityIds: that.identityIds
|
|
@@ -5031,7 +5059,7 @@ var util = __webpack_require__(0);
|
|
|
5031
5059
|
|
|
5032
5060
|
var _that = this;
|
|
5033
5061
|
var params = {
|
|
5034
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
5062
|
+
url: _that.baseUrl ? _that.baseUrl + api["j" /* handleTaskRead */] : api["j" /* handleTaskRead */],
|
|
5035
5063
|
params: {
|
|
5036
5064
|
pendingId: this.pendingId,
|
|
5037
5065
|
businessId: this.businessId,
|
|
@@ -5077,7 +5105,7 @@ var util = __webpack_require__(0);
|
|
|
5077
5105
|
ids = ids + r.showid + (i === _this3.nextReadUserSelectList.length - 1 ? '' : ',');
|
|
5078
5106
|
});
|
|
5079
5107
|
var params = {
|
|
5080
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
5108
|
+
url: _that.baseUrl ? _that.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
|
|
5081
5109
|
params: {
|
|
5082
5110
|
pendingId: this.pendingId,
|
|
5083
5111
|
appId: this.appid,
|
|
@@ -5116,7 +5144,7 @@ var util = __webpack_require__(0);
|
|
|
5116
5144
|
|
|
5117
5145
|
var _that = this;
|
|
5118
5146
|
Object(http["a" /* default */])({
|
|
5119
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
5147
|
+
url: _that.baseUrl ? _that.baseUrl + api["y" /* toStartTaskReadHtml */] : api["y" /* toStartTaskReadHtml */],
|
|
5120
5148
|
params: {
|
|
5121
5149
|
appId: this.appid,
|
|
5122
5150
|
pendingId: this.pendingId,
|
|
@@ -5559,6 +5587,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5559
5587
|
//
|
|
5560
5588
|
//
|
|
5561
5589
|
//
|
|
5590
|
+
//
|
|
5562
5591
|
|
|
5563
5592
|
|
|
5564
5593
|
|
|
@@ -5612,6 +5641,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5612
5641
|
objType: 'enterprise', //树点击对象
|
|
5613
5642
|
selectType: 'employee', // 树 选择类型
|
|
5614
5643
|
isNextBox: true, // 是否展开隐藏下步操作
|
|
5644
|
+
isForceDisplayDefaultOptionForPrefix: false,
|
|
5615
5645
|
isOtherUnit: true, //是否是外单位
|
|
5616
5646
|
isShowNode: false,
|
|
5617
5647
|
subProcessInfo: '',
|
|
@@ -5784,7 +5814,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5784
5814
|
duration: 0
|
|
5785
5815
|
});
|
|
5786
5816
|
Object(http["a" /* default */])({
|
|
5787
|
-
url: this.baseUrl ? this.baseUrl + api["
|
|
5817
|
+
url: this.baseUrl ? this.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
|
|
5788
5818
|
headers: {
|
|
5789
5819
|
Accept: 'application/json,text/plain'
|
|
5790
5820
|
},
|
|
@@ -5922,7 +5952,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5922
5952
|
}
|
|
5923
5953
|
}
|
|
5924
5954
|
Object(http["a" /* default */])({
|
|
5925
|
-
url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["
|
|
5955
|
+
url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["p" /* taskHandleHtmlImg */] : api["o" /* taskHandleHtml */]) : _that.form.isImageOpinion == 1 ? api["p" /* taskHandleHtmlImg */] : api["o" /* taskHandleHtml */],
|
|
5926
5956
|
type: 'post',
|
|
5927
5957
|
params: formData
|
|
5928
5958
|
}).then(function (res) {
|
|
@@ -6145,7 +6175,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6145
6175
|
var that = this;
|
|
6146
6176
|
return new Promise(function (resolve, reiect) {
|
|
6147
6177
|
Object(http["a" /* default */])({
|
|
6148
|
-
url: that.baseUrl ? that.baseUrl + api["
|
|
6178
|
+
url: that.baseUrl ? that.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
|
|
6149
6179
|
params: {
|
|
6150
6180
|
pendingId: that.pendingId,
|
|
6151
6181
|
userId: that.userId
|
|
@@ -6273,6 +6303,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6273
6303
|
that.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
|
|
6274
6304
|
// that.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
|
|
6275
6305
|
that.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
|
|
6306
|
+
that.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
|
|
6276
6307
|
}
|
|
6277
6308
|
that.choiceOrgId = choiceOrgId;
|
|
6278
6309
|
that.choiceDeptId = choiceDeptId;
|
|
@@ -6311,7 +6342,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6311
6342
|
var _this5 = this;
|
|
6312
6343
|
|
|
6313
6344
|
Object(http["a" /* default */])({
|
|
6314
|
-
url: this.baseUrl ? this.baseUrl + api["
|
|
6345
|
+
url: this.baseUrl ? this.baseUrl + api["y" /* toStartTaskReadHtml */] : api["y" /* toStartTaskReadHtml */],
|
|
6315
6346
|
params: { pendingId: this.pendingId, userId: this.userId }
|
|
6316
6347
|
}).then(function (res) {
|
|
6317
6348
|
var status = res.status,
|
|
@@ -6344,7 +6375,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6344
6375
|
|
|
6345
6376
|
var _that = this;
|
|
6346
6377
|
Object(http["a" /* default */])({
|
|
6347
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
6378
|
+
url: _that.baseUrl ? _that.baseUrl + api["g" /* getNodeInfoHtml */] : api["g" /* getNodeInfoHtml */],
|
|
6348
6379
|
params: {
|
|
6349
6380
|
processDefinitionId: this.processObj.taskExamine.processDefinitionId,
|
|
6350
6381
|
nextNodeId: res,
|
|
@@ -6492,8 +6523,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6492
6523
|
|
|
6493
6524
|
var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
6494
6525
|
components_Handlevue_type_script_lang_js_,
|
|
6495
|
-
|
|
6496
|
-
|
|
6526
|
+
Handlevue_type_template_id_0b00e17b_render,
|
|
6527
|
+
Handlevue_type_template_id_0b00e17b_staticRenderFns,
|
|
6497
6528
|
false,
|
|
6498
6529
|
null,
|
|
6499
6530
|
null,
|
|
@@ -6850,7 +6881,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
6850
6881
|
duration: 0
|
|
6851
6882
|
});
|
|
6852
6883
|
Object(http["a" /* default */])({
|
|
6853
|
-
url: this.baseUrl ? this.baseUrl + api["
|
|
6884
|
+
url: this.baseUrl ? this.baseUrl + api["d" /* findSysCodes */] : api["d" /* findSysCodes */]
|
|
6854
6885
|
}).then(function (res) {
|
|
6855
6886
|
var status = res.status,
|
|
6856
6887
|
message = res.message;
|
|
@@ -6885,7 +6916,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
6885
6916
|
taskExamine = this.taskExamine;
|
|
6886
6917
|
|
|
6887
6918
|
var params = {
|
|
6888
|
-
url: this.baseUrl ? this.baseUrl + api["
|
|
6919
|
+
url: this.baseUrl ? this.baseUrl + api["C" /* toTaskTransferIndex */] : api["C" /* toTaskTransferIndex */],
|
|
6889
6920
|
params: {
|
|
6890
6921
|
opinion: opinion,
|
|
6891
6922
|
pendingId: pendingId,
|
|
@@ -6961,7 +6992,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
6961
6992
|
if (_that.newType != 'taskReadAndEnd') delete params.taskAction;
|
|
6962
6993
|
|
|
6963
6994
|
Object(http["a" /* default */])({
|
|
6964
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
6995
|
+
url: _that.baseUrl ? _that.baseUrl + api["x" /* toStartTaskRead */] : api["x" /* toStartTaskRead */],
|
|
6965
6996
|
params: params
|
|
6966
6997
|
}).then(function (res) {
|
|
6967
6998
|
_that.$toast.clear();
|
|
@@ -7003,7 +7034,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7003
7034
|
|
|
7004
7035
|
var _that = this;
|
|
7005
7036
|
var params = {
|
|
7006
|
-
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["
|
|
7037
|
+
url: _that.apiBaseUrl ? _that.apiBaseUrl + api["j" /* handleTaskRead */] : api["j" /* handleTaskRead */],
|
|
7007
7038
|
params: {
|
|
7008
7039
|
pendingId: this.pendingId,
|
|
7009
7040
|
businessId: this.businessId,
|
|
@@ -7043,7 +7074,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7043
7074
|
var _this5 = this;
|
|
7044
7075
|
|
|
7045
7076
|
Object(http["a" /* default */])({
|
|
7046
|
-
url: this.baseUrl ? this.baseUrl + api["
|
|
7077
|
+
url: this.baseUrl ? this.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
|
|
7047
7078
|
params: { pendingId: this.pendingId, userId: this.userId }
|
|
7048
7079
|
}).then(function (res) {
|
|
7049
7080
|
var status = res.status,
|
|
@@ -7087,7 +7118,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7087
7118
|
processDefinitionId = _taskExamine.processDefinitionId;
|
|
7088
7119
|
|
|
7089
7120
|
var params = {
|
|
7090
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
7121
|
+
url: _that.baseUrl ? _that.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
|
|
7091
7122
|
type: 'post',
|
|
7092
7123
|
params: TaskReadvue_type_script_lang_js_extends({}, this.form, {
|
|
7093
7124
|
pendingId: this.pendingId,
|
|
@@ -7492,7 +7523,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7492
7523
|
var _this = this;
|
|
7493
7524
|
|
|
7494
7525
|
var params = {
|
|
7495
|
-
url: api["
|
|
7526
|
+
url: api["l" /* isCanStartSubFlow */],
|
|
7496
7527
|
params: {
|
|
7497
7528
|
appId: this.appId,
|
|
7498
7529
|
inevitableNode: this.inevitableNode,
|
|
@@ -7521,7 +7552,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7521
7552
|
pendingId: this.pendingId,
|
|
7522
7553
|
userId: this.userId
|
|
7523
7554
|
};
|
|
7524
|
-
Object(http["a" /* default */])({ url: api["
|
|
7555
|
+
Object(http["a" /* default */])({ url: api["h" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
7525
7556
|
if (res.status === 'success') {
|
|
7526
7557
|
_this2.infoList.noticeInfo = res.message;
|
|
7527
7558
|
}
|
|
@@ -7535,7 +7566,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7535
7566
|
var _this3 = this;
|
|
7536
7567
|
|
|
7537
7568
|
Object(http["a" /* default */])({
|
|
7538
|
-
url: api["
|
|
7569
|
+
url: api["d" /* findSysCodes */]
|
|
7539
7570
|
}).then(function (res) {
|
|
7540
7571
|
var status = res.status,
|
|
7541
7572
|
message = res.message;
|
|
@@ -7613,7 +7644,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7613
7644
|
var _this5 = this;
|
|
7614
7645
|
|
|
7615
7646
|
var params = {
|
|
7616
|
-
url: this.type == 'takeAdvice' ? api["
|
|
7647
|
+
url: this.type == 'takeAdvice' ? api["B" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["A" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["E" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? toTwoOfficesDispatch : api["D" /* toTaskUnionExamine */],
|
|
7617
7648
|
params: { pendingId: this.pendingId, userId: this.userId },
|
|
7618
7649
|
headers: { Accept: 'application/json,text/plain' }
|
|
7619
7650
|
};
|
|
@@ -7755,7 +7786,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7755
7786
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
7756
7787
|
// return this.$toast('暂未开放,敬请期待!');
|
|
7757
7788
|
var param = {
|
|
7758
|
-
url: this.type === 'startDraf' ? api["
|
|
7789
|
+
url: this.type === 'startDraf' ? api["s" /* taskStartDraft */] : this.type == 'unionSeal' ? api["v" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? twoOfficesDispatch : this.type == 'takeAdvice' ? api["t" /* taskTakeAdvice */] : api["u" /* taskUnionExamine */],
|
|
7759
7790
|
params: formData,
|
|
7760
7791
|
headers: { Accept: 'application/json,text/plain' },
|
|
7761
7792
|
type: 'post'
|
|
@@ -7803,7 +7834,7 @@ taskUnionExaminevue_type_template_id_32f743e5_render._withStripped = true
|
|
|
7803
7834
|
// duration: 0
|
|
7804
7835
|
// });
|
|
7805
7836
|
Object(http["a" /* default */])({
|
|
7806
|
-
url: _that.baseUrl ? _that.baseUrl + api["
|
|
7837
|
+
url: _that.baseUrl ? _that.baseUrl + api["D" /* toTaskUnionExamine */] : api["D" /* toTaskUnionExamine */],
|
|
7807
7838
|
params: {
|
|
7808
7839
|
pendingId: this.pendingId
|
|
7809
7840
|
}
|
|
@@ -7936,6 +7967,12 @@ var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
|
7936
7967
|
},
|
|
7937
7968
|
data: function data() {
|
|
7938
7969
|
return {};
|
|
7970
|
+
},
|
|
7971
|
+
mounted: function mounted() {
|
|
7972
|
+
for (var i = 0; i < 10; i++) {
|
|
7973
|
+
if (i == 2) return;
|
|
7974
|
+
console.log(i);
|
|
7975
|
+
}
|
|
7939
7976
|
}
|
|
7940
7977
|
});
|
|
7941
7978
|
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=script&lang=js&
|