ecinc-cloud-wappaio 9.6.437 → 9.6.439

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.
@@ -43010,7 +43010,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-2c4c5b9c] .el-dialog__body{min
43010
43010
 
43011
43011
  /***/ }),
43012
43012
 
43013
- /***/ 98935:
43013
+ /***/ 1492:
43014
43014
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
43015
43015
 
43016
43016
  "use strict";
@@ -43024,7 +43024,7 @@ __webpack_require__.r(__webpack_exports__);
43024
43024
 
43025
43025
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
43026
43026
  // Module
43027
- ___CSS_LOADER_EXPORT___.push([module.id, ".organ-info[data-v-44ffd045]{width:100%;font-weight:600;text-align:right;margin:10px 0 5px 0}.organ-info .el-button[data-v-44ffd045]{padding-right:0}", ""]);
43027
+ ___CSS_LOADER_EXPORT___.push([module.id, ".organ-info[data-v-55b3d15a]{width:100%;font-weight:600;text-align:right;margin:10px 0 5px 0}.organ-info .el-button[data-v-55b3d15a]{padding-right:0}", ""]);
43028
43028
  // Exports
43029
43029
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
43030
43030
 
@@ -137255,19 +137255,19 @@ var update = add("1486038a", content, true, {"sourceMap":false,"shadowMode":fals
137255
137255
 
137256
137256
  /***/ }),
137257
137257
 
137258
- /***/ 85749:
137258
+ /***/ 38909:
137259
137259
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
137260
137260
 
137261
137261
  // style-loader: Adds some css to the DOM by adding a <style> tag
137262
137262
 
137263
137263
  // load the styles
137264
- var content = __webpack_require__(98935);
137264
+ var content = __webpack_require__(1492);
137265
137265
  if(content.__esModule) content = content.default;
137266
137266
  if(typeof content === 'string') content = [[module.id, content, '']];
137267
137267
  if(content.locals) module.exports = content.locals;
137268
137268
  // add the styles to the DOM
137269
137269
  var add = (__webpack_require__(99548)/* ["default"] */ .A)
137270
- var update = add("1d526fbe", content, true, {"sourceMap":false,"shadowMode":false});
137270
+ var update = add("634cffe1", content, true, {"sourceMap":false,"shadowMode":false});
137271
137271
 
137272
137272
  /***/ }),
137273
137273
 
@@ -146026,6 +146026,9 @@ var wfengine_install = function install(Vue) {
146026
146026
  if ($scope.curTN.staffOrgName) {
146027
146027
  $scope.curTN.staffOrgShortName = $scope.curTN.staffOrgName.substring($scope.curTN.staffOrgName.indexOf('-') + 1);
146028
146028
  }
146029
+ if ($scope.$route.query.wfNodelogId && $scope.$route.query.wfNodelogId !== $scope.curTN.tnID) {
146030
+ $scope.$route.query.wfNodelogId = $scope.curTN.tnID;
146031
+ }
146029
146032
  $scope.wfJsonData = $scope.wfInstance.passenger.wfJsonData;
146030
146033
  if (typeof $scope.wfJsonData === 'string') {
146031
146034
  $scope.wfJsonData = JSON.parse($scope.wfJsonData);
@@ -146965,41 +146968,48 @@ var wfengine_install = function install(Vue) {
146965
146968
  checkPrarllelTodoCount: function checkPrarllelTodoCount($scope, params) {
146966
146969
  var _this4 = this;
146967
146970
  return new Promise(function (resole) {
146968
- var selRoute = $scope.wfJsonData.routes[$scope.submitHandle.route.index];
146969
- if ($scope.curTN.passenger.prarllelTodoCount > 1 && selRoute.type === '4') {
146970
- //检查是否还有其它并行办理人
146971
- var saveData = {
146972
- wfInstance: JSON.stringify($scope.wfInstance),
146973
- curTN: JSON.stringify($scope.curTN)
146974
- };
146975
- _this4.$http({
146976
- method: 'POST',
146977
- contentType: 'application/x-www-form-urlencoded',
146978
- data: lib_default().stringify(saveData),
146979
- params: $scope.$vnode.context.wfParams,
146980
- url: 'workflow/wfInstance/getUdmNodeUsers'
146981
- }).then(function (res) {
146982
- if (res.code === 'success') {
146983
- if (res.body.prarllelTodoCount === 1) {
146984
- $scope.$set($scope.curTN.passenger, 'prarllelTodoCount', 1);
146985
- $scope.$set($scope.wfInstance.passenger, 'udmNodeUsers', res.body.udmNodeUsers);
146986
- resole({
146987
- code: 'retry',
146988
- message: '提交路径不可用,请重试。'
146989
- });
146971
+ if ($scope.wfJsonData && $scope.wfJsonData.routes && $scope.wfJsonData.routes.length > 0) {
146972
+ var selRoute = $scope.wfJsonData.routes[$scope.submitHandle.route.index];
146973
+ if ($scope.curTN.passenger.prarllelTodoCount > 1 && selRoute.type === '4') {
146974
+ //检查是否还有其它并行办理人
146975
+ var saveData = {
146976
+ wfInstance: JSON.stringify($scope.wfInstance),
146977
+ curTN: JSON.stringify($scope.curTN)
146978
+ };
146979
+ _this4.$http({
146980
+ method: 'POST',
146981
+ contentType: 'application/x-www-form-urlencoded',
146982
+ data: lib_default().stringify(saveData),
146983
+ params: $scope.$vnode.context.wfParams,
146984
+ url: 'workflow/wfInstance/getUdmNodeUsers'
146985
+ }).then(function (res) {
146986
+ if (res.code === 'success') {
146987
+ if (res.body.prarllelTodoCount === 1) {
146988
+ $scope.$set($scope.curTN.passenger, 'prarllelTodoCount', 1);
146989
+ $scope.$set($scope.wfInstance.passenger, 'udmNodeUsers', res.body.udmNodeUsers);
146990
+ resole({
146991
+ code: 'retry',
146992
+ message: '提交路径不可用,请重试。'
146993
+ });
146994
+ } else {
146995
+ resole({
146996
+ code: 'success',
146997
+ message: '未检测到并行冲突,可继续提交。'
146998
+ });
146999
+ }
146990
147000
  } else {
146991
147001
  resole({
146992
- code: 'success',
146993
- message: '未检测到并行冲突,可继续提交。'
147002
+ code: 'warning',
147003
+ message: res.message
146994
147004
  });
146995
147005
  }
146996
- } else {
146997
- resole({
146998
- code: 'warning',
146999
- message: res.message
147000
- });
147001
- }
147002
- });
147006
+ });
147007
+ } else {
147008
+ resole({
147009
+ code: 'success',
147010
+ message: '未检测到并行冲突,可继续提交。'
147011
+ });
147012
+ }
147003
147013
  } else {
147004
147014
  resole({
147005
147015
  code: 'success',
@@ -206014,8 +206024,8 @@ WfDefine_src.install = function (Vue) {
206014
206024
  Vue.component(WfDefine_src.name, WfDefine_src);
206015
206025
  };
206016
206026
  var WfdList = WfDefine_src;
206017
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=template&id=44ffd045&scoped=true
206018
- var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206027
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=template&id=55b3d15a&scoped=true
206028
+ var srcvue_type_template_id_55b3d15a_scoped_true_render = function render() {
206019
206029
  var _vm = this,
206020
206030
  _c = _vm._self._c;
206021
206031
  return _c('PageContent', {
@@ -206112,9 +206122,6 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206112
206122
  }, [_vm._v("上传正文文件格式")]), _c('td', {
206113
206123
  staticClass: "el-table__cell tdcont tdw83"
206114
206124
  }, [_c('el-checkbox-group', {
206115
- attrs: {
206116
- "disabled": _vm.attachCanEdit === 0
206117
- },
206118
206125
  model: {
206119
206126
  value: _vm.bodyuploadFile,
206120
206127
  callback: function callback($$v) {
@@ -206262,7 +206269,32 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206262
206269
  attrs: {
206263
206270
  "label": "ech5"
206264
206271
  }
206265
- }, [_vm._v("易臣H5")])], 1)], 1)])])])])])]), _c('div', {
206272
+ }, [_vm._v("易臣H5")])], 1)], 1)]), _c('tr', [_c('td', {
206273
+ staticClass: "el-table__cell tdlbl tdw17"
206274
+ }, [_vm._v("手机端是否可下载附件")]), _c('td', {
206275
+ staticClass: "el-table__cell tdcont tdw83"
206276
+ }, [_c('el-radio-group', {
206277
+ on: {
206278
+ "change": function change($event) {
206279
+ return _vm.$forceUpdate();
206280
+ }
206281
+ },
206282
+ model: {
206283
+ value: _vm.attachH5CanDownload,
206284
+ callback: function callback($$v) {
206285
+ _vm.attachH5CanDownload = $$v;
206286
+ },
206287
+ expression: "attachH5CanDownload"
206288
+ }
206289
+ }, [_c('el-radio', {
206290
+ attrs: {
206291
+ "label": 1
206292
+ }
206293
+ }, [_vm._v("是")]), _c('el-radio', {
206294
+ attrs: {
206295
+ "label": 0
206296
+ }
206297
+ }, [_vm._v("否")])], 1)], 1)])])])])])]), _c('div', {
206266
206298
  attrs: {
206267
206299
  "slot": "footer"
206268
206300
  },
@@ -206298,7 +206330,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206298
206330
  }
206299
206331
  }, [_vm._v("保存到所有单位")]) : _vm._e()], 1)], 1);
206300
206332
  };
206301
- var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206333
+ var srcvue_type_template_id_55b3d15a_scoped_true_staticRenderFns = [];
206302
206334
 
206303
206335
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=script&lang=js
206304
206336
  /* harmony default export */ var EditorConfig_srcvue_type_script_lang_js = ({
@@ -206320,7 +206352,9 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206320
206352
  //附件可在线编辑文件格式
206321
206353
  attachCanEdit: 0,
206322
206354
  //附件是否可在线编辑
206323
- attachViewer: 'pdfjs' //附件在线预览阅读器
206355
+ attachViewer: 'pdfjs',
206356
+ //附件在线预览阅读器
206357
+ attachH5CanDownload: 1 //手机端是否可下载附件
206324
206358
  };
206325
206359
  },
206326
206360
  computed: {},
@@ -206353,7 +206387,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206353
206387
  contentType: 'application/x-www-form-urlencoded',
206354
206388
  params: {
206355
206389
  orgCode: orgCode,
206356
- paramNames: 'bodyfile.editor.office,bodyfile.editor.h5office,bodyfile.upload.accept,attach.online.file,attach.online.viewer'
206390
+ paramNames: 'bodyfile.editor.office,bodyfile.editor.h5office,bodyfile.upload.accept,attach.online.file,attach.online.viewer,attach.h5.candownload'
206357
206391
  },
206358
206392
  url: 'base/paramConfig/findParamConfigByParamNames'
206359
206393
  }).then(function (res) {
@@ -206363,6 +206397,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206363
206397
  _this2.attachViewer = res.body.params['attach.online.viewer'] || _this2.attachViewer;
206364
206398
  _this2.bodyuploadFile = (res.body.params['bodyfile.upload.accept'] || '.doc,.docx,.pdf,.ofd').split(',');
206365
206399
  _this2.onlineFile = (res.body.params['attach.online.file'] || '.doc,.docx,.xls,.xlsx,.ppt,.pptx').split(',');
206400
+ _this2.attachH5CanDownload = parseInt(res.body.params['attach.h5.candownload'] || '1');
206366
206401
  if (_this.onlineFile.indexOf('none') !== -1) {
206367
206402
  _this.attachCanEdit = 0;
206368
206403
  } else {
@@ -206414,7 +206449,11 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206414
206449
  attachViewer.paramName = 'attach.online.viewer';
206415
206450
  attachViewer.paramDesc = '附件在线预览阅读器,PdfJS:pdfjs,易臣H5:ech5,永中H5:yzh5,WPSH5:wpsh5,默认为:pdfjs';
206416
206451
  attachViewer.paramValue = this.attachViewer;
206417
- var paramConfigs = [officeType, h5OfficeType, bodyfileAccept, onlineFile, attachViewer];
206452
+ var attachH5CanDownload = JSON.parse(JSON.stringify(param));
206453
+ attachH5CanDownload.paramName = 'attach.h5.candownload';
206454
+ attachH5CanDownload.paramDesc = '手机端是否可下载附件,1:可预览可下载,0:只能在线预览不可下载,默认为:1';
206455
+ attachH5CanDownload.paramValue = this.attachH5CanDownload;
206456
+ var paramConfigs = [officeType, h5OfficeType, bodyfileAccept, onlineFile, attachViewer, attachH5CanDownload];
206418
206457
  this.$http({
206419
206458
  method: 'POST',
206420
206459
  contentType: 'application/x-www-form-urlencoded',
@@ -206430,9 +206469,9 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206430
206469
  });
206431
206470
  ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=script&lang=js
206432
206471
  /* harmony default export */ var ecwplat_EditorConfig_srcvue_type_script_lang_js = (EditorConfig_srcvue_type_script_lang_js);
206433
- // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=44ffd045&prod&scoped=true&lang=scss
206434
- var srcvue_type_style_index_0_id_44ffd045_prod_scoped_true_lang_scss = __webpack_require__(85749);
206435
- ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=44ffd045&prod&scoped=true&lang=scss
206472
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=55b3d15a&prod&scoped=true&lang=scss
206473
+ var srcvue_type_style_index_0_id_55b3d15a_prod_scoped_true_lang_scss = __webpack_require__(38909);
206474
+ ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=55b3d15a&prod&scoped=true&lang=scss
206436
206475
 
206437
206476
  ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue
206438
206477
 
@@ -206445,11 +206484,11 @@ var srcvue_type_style_index_0_id_44ffd045_prod_scoped_true_lang_scss = __webpack
206445
206484
 
206446
206485
  var EditorConfig_src_component = (0,componentNormalizer/* default */.A)(
206447
206486
  ecwplat_EditorConfig_srcvue_type_script_lang_js,
206448
- srcvue_type_template_id_44ffd045_scoped_true_render,
206449
- srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns,
206487
+ srcvue_type_template_id_55b3d15a_scoped_true_render,
206488
+ srcvue_type_template_id_55b3d15a_scoped_true_staticRenderFns,
206450
206489
  false,
206451
206490
  null,
206452
- "44ffd045",
206491
+ "55b3d15a",
206453
206492
  null
206454
206493
 
206455
206494
  )
@@ -43020,7 +43020,7 @@ ___CSS_LOADER_EXPORT___.push([module.id, "[data-v-2c4c5b9c] .el-dialog__body{min
43020
43020
 
43021
43021
  /***/ }),
43022
43022
 
43023
- /***/ 35479:
43023
+ /***/ 38036:
43024
43024
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
43025
43025
 
43026
43026
  "use strict";
@@ -43034,7 +43034,7 @@ __webpack_require__.r(__webpack_exports__);
43034
43034
 
43035
43035
  var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
43036
43036
  // Module
43037
- ___CSS_LOADER_EXPORT___.push([module.id, ".organ-info[data-v-44ffd045]{width:100%;font-weight:600;text-align:right;margin:10px 0 5px 0}.organ-info .el-button[data-v-44ffd045]{padding-right:0}", ""]);
43037
+ ___CSS_LOADER_EXPORT___.push([module.id, ".organ-info[data-v-55b3d15a]{width:100%;font-weight:600;text-align:right;margin:10px 0 5px 0}.organ-info .el-button[data-v-55b3d15a]{padding-right:0}", ""]);
43038
43038
  // Exports
43039
43039
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
43040
43040
 
@@ -137265,19 +137265,19 @@ var update = add("b0acfd64", content, true, {"sourceMap":false,"shadowMode":fals
137265
137265
 
137266
137266
  /***/ }),
137267
137267
 
137268
- /***/ 51848:
137268
+ /***/ 31488:
137269
137269
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
137270
137270
 
137271
137271
  // style-loader: Adds some css to the DOM by adding a <style> tag
137272
137272
 
137273
137273
  // load the styles
137274
- var content = __webpack_require__(35479);
137274
+ var content = __webpack_require__(38036);
137275
137275
  if(content.__esModule) content = content.default;
137276
137276
  if(typeof content === 'string') content = [[module.id, content, '']];
137277
137277
  if(content.locals) module.exports = content.locals;
137278
137278
  // add the styles to the DOM
137279
137279
  var add = (__webpack_require__(99548)/* ["default"] */ .A)
137280
- var update = add("0c11f582", content, true, {"sourceMap":false,"shadowMode":false});
137280
+ var update = add("520c85a5", content, true, {"sourceMap":false,"shadowMode":false});
137281
137281
 
137282
137282
  /***/ }),
137283
137283
 
@@ -146036,6 +146036,9 @@ var wfengine_install = function install(Vue) {
146036
146036
  if ($scope.curTN.staffOrgName) {
146037
146037
  $scope.curTN.staffOrgShortName = $scope.curTN.staffOrgName.substring($scope.curTN.staffOrgName.indexOf('-') + 1);
146038
146038
  }
146039
+ if ($scope.$route.query.wfNodelogId && $scope.$route.query.wfNodelogId !== $scope.curTN.tnID) {
146040
+ $scope.$route.query.wfNodelogId = $scope.curTN.tnID;
146041
+ }
146039
146042
  $scope.wfJsonData = $scope.wfInstance.passenger.wfJsonData;
146040
146043
  if (typeof $scope.wfJsonData === 'string') {
146041
146044
  $scope.wfJsonData = JSON.parse($scope.wfJsonData);
@@ -146975,41 +146978,48 @@ var wfengine_install = function install(Vue) {
146975
146978
  checkPrarllelTodoCount: function checkPrarllelTodoCount($scope, params) {
146976
146979
  var _this4 = this;
146977
146980
  return new Promise(function (resole) {
146978
- var selRoute = $scope.wfJsonData.routes[$scope.submitHandle.route.index];
146979
- if ($scope.curTN.passenger.prarllelTodoCount > 1 && selRoute.type === '4') {
146980
- //检查是否还有其它并行办理人
146981
- var saveData = {
146982
- wfInstance: JSON.stringify($scope.wfInstance),
146983
- curTN: JSON.stringify($scope.curTN)
146984
- };
146985
- _this4.$http({
146986
- method: 'POST',
146987
- contentType: 'application/x-www-form-urlencoded',
146988
- data: lib_default().stringify(saveData),
146989
- params: $scope.$vnode.context.wfParams,
146990
- url: 'workflow/wfInstance/getUdmNodeUsers'
146991
- }).then(function (res) {
146992
- if (res.code === 'success') {
146993
- if (res.body.prarllelTodoCount === 1) {
146994
- $scope.$set($scope.curTN.passenger, 'prarllelTodoCount', 1);
146995
- $scope.$set($scope.wfInstance.passenger, 'udmNodeUsers', res.body.udmNodeUsers);
146996
- resole({
146997
- code: 'retry',
146998
- message: '提交路径不可用,请重试。'
146999
- });
146981
+ if ($scope.wfJsonData && $scope.wfJsonData.routes && $scope.wfJsonData.routes.length > 0) {
146982
+ var selRoute = $scope.wfJsonData.routes[$scope.submitHandle.route.index];
146983
+ if ($scope.curTN.passenger.prarllelTodoCount > 1 && selRoute.type === '4') {
146984
+ //检查是否还有其它并行办理人
146985
+ var saveData = {
146986
+ wfInstance: JSON.stringify($scope.wfInstance),
146987
+ curTN: JSON.stringify($scope.curTN)
146988
+ };
146989
+ _this4.$http({
146990
+ method: 'POST',
146991
+ contentType: 'application/x-www-form-urlencoded',
146992
+ data: lib_default().stringify(saveData),
146993
+ params: $scope.$vnode.context.wfParams,
146994
+ url: 'workflow/wfInstance/getUdmNodeUsers'
146995
+ }).then(function (res) {
146996
+ if (res.code === 'success') {
146997
+ if (res.body.prarllelTodoCount === 1) {
146998
+ $scope.$set($scope.curTN.passenger, 'prarllelTodoCount', 1);
146999
+ $scope.$set($scope.wfInstance.passenger, 'udmNodeUsers', res.body.udmNodeUsers);
147000
+ resole({
147001
+ code: 'retry',
147002
+ message: '提交路径不可用,请重试。'
147003
+ });
147004
+ } else {
147005
+ resole({
147006
+ code: 'success',
147007
+ message: '未检测到并行冲突,可继续提交。'
147008
+ });
147009
+ }
147000
147010
  } else {
147001
147011
  resole({
147002
- code: 'success',
147003
- message: '未检测到并行冲突,可继续提交。'
147012
+ code: 'warning',
147013
+ message: res.message
147004
147014
  });
147005
147015
  }
147006
- } else {
147007
- resole({
147008
- code: 'warning',
147009
- message: res.message
147010
- });
147011
- }
147012
- });
147016
+ });
147017
+ } else {
147018
+ resole({
147019
+ code: 'success',
147020
+ message: '未检测到并行冲突,可继续提交。'
147021
+ });
147022
+ }
147013
147023
  } else {
147014
147024
  resole({
147015
147025
  code: 'success',
@@ -206024,8 +206034,8 @@ WfDefine_src.install = function (Vue) {
206024
206034
  Vue.component(WfDefine_src.name, WfDefine_src);
206025
206035
  };
206026
206036
  var WfdList = WfDefine_src;
206027
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=template&id=44ffd045&scoped=true
206028
- var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206037
+ ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=template&id=55b3d15a&scoped=true
206038
+ var srcvue_type_template_id_55b3d15a_scoped_true_render = function render() {
206029
206039
  var _vm = this,
206030
206040
  _c = _vm._self._c;
206031
206041
  return _c('PageContent', {
@@ -206122,9 +206132,6 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206122
206132
  }, [_vm._v("上传正文文件格式")]), _c('td', {
206123
206133
  staticClass: "el-table__cell tdcont tdw83"
206124
206134
  }, [_c('el-checkbox-group', {
206125
- attrs: {
206126
- "disabled": _vm.attachCanEdit === 0
206127
- },
206128
206135
  model: {
206129
206136
  value: _vm.bodyuploadFile,
206130
206137
  callback: function callback($$v) {
@@ -206272,7 +206279,32 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206272
206279
  attrs: {
206273
206280
  "label": "ech5"
206274
206281
  }
206275
- }, [_vm._v("易臣H5")])], 1)], 1)])])])])])]), _c('div', {
206282
+ }, [_vm._v("易臣H5")])], 1)], 1)]), _c('tr', [_c('td', {
206283
+ staticClass: "el-table__cell tdlbl tdw17"
206284
+ }, [_vm._v("手机端是否可下载附件")]), _c('td', {
206285
+ staticClass: "el-table__cell tdcont tdw83"
206286
+ }, [_c('el-radio-group', {
206287
+ on: {
206288
+ "change": function change($event) {
206289
+ return _vm.$forceUpdate();
206290
+ }
206291
+ },
206292
+ model: {
206293
+ value: _vm.attachH5CanDownload,
206294
+ callback: function callback($$v) {
206295
+ _vm.attachH5CanDownload = $$v;
206296
+ },
206297
+ expression: "attachH5CanDownload"
206298
+ }
206299
+ }, [_c('el-radio', {
206300
+ attrs: {
206301
+ "label": 1
206302
+ }
206303
+ }, [_vm._v("是")]), _c('el-radio', {
206304
+ attrs: {
206305
+ "label": 0
206306
+ }
206307
+ }, [_vm._v("否")])], 1)], 1)])])])])])]), _c('div', {
206276
206308
  attrs: {
206277
206309
  "slot": "footer"
206278
206310
  },
@@ -206308,7 +206340,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_render = function render() {
206308
206340
  }
206309
206341
  }, [_vm._v("保存到所有单位")]) : _vm._e()], 1)], 1);
206310
206342
  };
206311
- var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206343
+ var srcvue_type_template_id_55b3d15a_scoped_true_staticRenderFns = [];
206312
206344
 
206313
206345
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=script&lang=js
206314
206346
  /* harmony default export */ var EditorConfig_srcvue_type_script_lang_js = ({
@@ -206330,7 +206362,9 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206330
206362
  //附件可在线编辑文件格式
206331
206363
  attachCanEdit: 0,
206332
206364
  //附件是否可在线编辑
206333
- attachViewer: 'pdfjs' //附件在线预览阅读器
206365
+ attachViewer: 'pdfjs',
206366
+ //附件在线预览阅读器
206367
+ attachH5CanDownload: 1 //手机端是否可下载附件
206334
206368
  };
206335
206369
  },
206336
206370
  computed: {},
@@ -206363,7 +206397,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206363
206397
  contentType: 'application/x-www-form-urlencoded',
206364
206398
  params: {
206365
206399
  orgCode: orgCode,
206366
- paramNames: 'bodyfile.editor.office,bodyfile.editor.h5office,bodyfile.upload.accept,attach.online.file,attach.online.viewer'
206400
+ paramNames: 'bodyfile.editor.office,bodyfile.editor.h5office,bodyfile.upload.accept,attach.online.file,attach.online.viewer,attach.h5.candownload'
206367
206401
  },
206368
206402
  url: 'base/paramConfig/findParamConfigByParamNames'
206369
206403
  }).then(function (res) {
@@ -206373,6 +206407,7 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206373
206407
  _this2.attachViewer = res.body.params['attach.online.viewer'] || _this2.attachViewer;
206374
206408
  _this2.bodyuploadFile = (res.body.params['bodyfile.upload.accept'] || '.doc,.docx,.pdf,.ofd').split(',');
206375
206409
  _this2.onlineFile = (res.body.params['attach.online.file'] || '.doc,.docx,.xls,.xlsx,.ppt,.pptx').split(',');
206410
+ _this2.attachH5CanDownload = parseInt(res.body.params['attach.h5.candownload'] || '1');
206376
206411
  if (_this.onlineFile.indexOf('none') !== -1) {
206377
206412
  _this.attachCanEdit = 0;
206378
206413
  } else {
@@ -206424,7 +206459,11 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206424
206459
  attachViewer.paramName = 'attach.online.viewer';
206425
206460
  attachViewer.paramDesc = '附件在线预览阅读器,PdfJS:pdfjs,易臣H5:ech5,永中H5:yzh5,WPSH5:wpsh5,默认为:pdfjs';
206426
206461
  attachViewer.paramValue = this.attachViewer;
206427
- var paramConfigs = [officeType, h5OfficeType, bodyfileAccept, onlineFile, attachViewer];
206462
+ var attachH5CanDownload = JSON.parse(JSON.stringify(param));
206463
+ attachH5CanDownload.paramName = 'attach.h5.candownload';
206464
+ attachH5CanDownload.paramDesc = '手机端是否可下载附件,1:可预览可下载,0:只能在线预览不可下载,默认为:1';
206465
+ attachH5CanDownload.paramValue = this.attachH5CanDownload;
206466
+ var paramConfigs = [officeType, h5OfficeType, bodyfileAccept, onlineFile, attachViewer, attachH5CanDownload];
206428
206467
  this.$http({
206429
206468
  method: 'POST',
206430
206469
  contentType: 'application/x-www-form-urlencoded',
@@ -206440,9 +206479,9 @@ var srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns = [];
206440
206479
  });
206441
206480
  ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=script&lang=js
206442
206481
  /* harmony default export */ var ecwplat_EditorConfig_srcvue_type_script_lang_js = (EditorConfig_srcvue_type_script_lang_js);
206443
- // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=44ffd045&prod&scoped=true&lang=scss
206444
- var srcvue_type_style_index_0_id_44ffd045_prod_scoped_true_lang_scss = __webpack_require__(51848);
206445
- ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=44ffd045&prod&scoped=true&lang=scss
206482
+ // EXTERNAL MODULE: ./node_modules/vue-style-loader/index.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=55b3d15a&prod&scoped=true&lang=scss
206483
+ var srcvue_type_style_index_0_id_55b3d15a_prod_scoped_true_lang_scss = __webpack_require__(31488);
206484
+ ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue?vue&type=style&index=0&id=55b3d15a&prod&scoped=true&lang=scss
206446
206485
 
206447
206486
  ;// CONCATENATED MODULE: ./packages/ecwplat/EditorConfig/src/index.vue
206448
206487
 
@@ -206455,11 +206494,11 @@ var srcvue_type_style_index_0_id_44ffd045_prod_scoped_true_lang_scss = __webpack
206455
206494
 
206456
206495
  var EditorConfig_src_component = (0,componentNormalizer/* default */.A)(
206457
206496
  ecwplat_EditorConfig_srcvue_type_script_lang_js,
206458
- srcvue_type_template_id_44ffd045_scoped_true_render,
206459
- srcvue_type_template_id_44ffd045_scoped_true_staticRenderFns,
206497
+ srcvue_type_template_id_55b3d15a_scoped_true_render,
206498
+ srcvue_type_template_id_55b3d15a_scoped_true_staticRenderFns,
206460
206499
  false,
206461
206500
  null,
206462
- "44ffd045",
206501
+ "55b3d15a",
206463
206502
  null
206464
206503
 
206465
206504
  )