cloud-web-corejs 1.0.54-dev.225 → 1.0.54-dev.226
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/package.json
CHANGED
@@ -542,27 +542,23 @@ modules = {
|
|
542
542
|
this.handleWidgetShowRule(widget);
|
543
543
|
|
544
544
|
if (wfParam.hasWf) {
|
545
|
-
if (
|
546
|
-
//结束节点
|
545
|
+
if (!widgetEditOnWf) {
|
547
546
|
//有流程,且不匹配流程节点可编辑表单设置信息
|
548
|
-
this.hanldeWfWidgetNew1(widget)
|
549
547
|
//设置组件的有流程可编辑,有流程隐藏
|
550
|
-
this.
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
hasModifyItem = true;
|
565
|
-
}
|
548
|
+
this.hanldeWfWidgetNew1(widget)
|
549
|
+
if (wfInfo.taskStep == "9999") {
|
550
|
+
this.hanldeWfWidgetItemNew(widget)
|
551
|
+
}
|
552
|
+
else if (toModify) {
|
553
|
+
//后台返回流程可以修改单据
|
554
|
+
//设置组件的特定流程节点的可编辑,仅显示,隐藏
|
555
|
+
if (taskDefinitionKey) {
|
556
|
+
// this.hanldeWfWidgetNew2(widget)
|
557
|
+
this.hanldeWfWidgetItemNew(widget)
|
558
|
+
}
|
559
|
+
if (widget.formItemFlag && !widget.options.hidden && !widget.options.disbaled) {
|
560
|
+
//存在存在可以编辑输入框框
|
561
|
+
hasModifyItem = true;
|
566
562
|
}
|
567
563
|
}
|
568
564
|
}
|