diff --git a/src/components/DesignForm/formControlAttr.vue b/src/components/DesignForm/formControlAttr.vue index a6f7f5b..9f463a9 100644 --- a/src/components/DesignForm/formControlAttr.vue +++ b/src/components/DesignForm/formControlAttr.vue @@ -1883,7 +1883,7 @@ const treeDefaultProps = { label: 'label', } //拿到子组件AssociatedFormsTinyace的实例 -let aft = ref(); +const aft = ref(); const aftRange = ref(); function getAssociatedFormsCurrentFieldTree() { @@ -3159,7 +3159,7 @@ const disabledIstrue = (val:string) => { -
+
关联选项设置
@@ -3858,17 +3858,19 @@ const disabledIstrue = (val:string) => {
当满足以下条件时此控件隐藏
-
+
-
+
  • 请从左侧面板右击选择字段或选项
  • 支持英文模式下运算符
  • +
  • 支持"包含"关键字,用于组织机构条件
  • +
  • 支持"当前用户"关键字,用于角色条件
  • 参考场景:
  • 年龄控件输入的值大于10时,需要隐藏当前控件,则可将隐藏条件设置为:年龄>10
@@ -3968,17 +3970,19 @@ const disabledIstrue = (val:string) => {
仅可选择符合以下条件的数据
-
+
-
+
  • 请从左侧面板右击选择字段或选项
  • 支持英文模式下运算符
  • +
  • 支持"包含"关键字,用于组织机构条件
  • +
  • 支持"当前用户"关键字,用于角色条件
  • 参考场景:
  • 仅可选择关联表单中年龄大于10的数据,则可将数据范围设置为:年龄>10
diff --git a/src/components/DesignForm/formControlPropertiNew.vue b/src/components/DesignForm/formControlPropertiNew.vue index 0a437b6..dc6ebea 100644 --- a/src/components/DesignForm/formControlPropertiNew.vue +++ b/src/components/DesignForm/formControlPropertiNew.vue @@ -3211,7 +3211,8 @@ const disabledIstrue = (val:string) => {
-
+ +
关联选项设置
@@ -3911,17 +3912,19 @@ const disabledIstrue = (val:string) => {
当满足以下条件时此控件隐藏
-
+
-
+
  • 请从左侧面板右击选择字段或选项
  • 支持英文模式下运算符
  • +
  • 支持"包含"关键字,用于组织机构条件
  • +
  • 支持"当前用户"关键字,用于角色条件
  • 参考场景:
  • 年龄控件输入的值大于10时,需要隐藏当前控件,则可将隐藏条件设置为:年龄>10
@@ -4021,17 +4024,19 @@ const disabledIstrue = (val:string) => {
仅可选择符合以下条件的数据
-
+
-
+
  • 请从左侧面板右击选择字段或选项
  • 支持英文模式下运算符
  • +
  • 支持"包含"关键字,用于组织机构条件
  • +
  • 支持"当前用户"关键字,用于角色条件
  • 参考场景:
  • 仅可选择关联表单中年龄大于10的数据,则可将数据范围设置为:年龄>10
diff --git a/src/widget/associatedforms/associatedFormsTinyace.vue b/src/widget/associatedforms/associatedFormsTinyace.vue index da9e093..4606fea 100644 --- a/src/widget/associatedforms/associatedFormsTinyace.vue +++ b/src/widget/associatedforms/associatedFormsTinyace.vue @@ -18,7 +18,7 @@ const tinymceInit = { language_url: "/tinymce/langs/zh-Hans.js", // 引入语言包(该语言包在public下,注意文件名称) language: "zh-Hans", // 这里名称根据 zh-Hans.js 里面写的名称而定 skin_url: "/tinymce/skins/ui/oxide", // 这里引入的样式 - height: 260, // 限制高度 + height: 174, // 限制高度 statusbar:false, toolbar:false, branding: false, //是否禁用“Powered by TinyMCE” @@ -85,9 +85,11 @@ watch(()=>tinymceHtml.value, (val:any) => { errorCondition("条件不能以蓝色块结尾") }else if(countSpanTags(gongShi.formulaHtml)>1){ errorCondition("不允许出现多个蓝色块") - }else if(!containsSingleComparator(gongShi.mathsFormula)){ - errorCondition("不存在有效符号") - }else if(checkEnding(gongShi.mathsFormula)){ + }else if(!containsSingleComparator(gongShi.mathsFormula)&&!gongShi.mathsFormula.includes("包含")){ + + errorCondition("不存在有效符号") + + }else if(checkEnding(gongShi.mathsFormula)){ errorCondition("不能以符号为结尾") }else{ succCondition() diff --git a/src/widget/associatedforms/associatedFormsTinyaceRange.vue b/src/widget/associatedforms/associatedFormsTinyaceRange.vue index 1edad2b..4ce83e9 100644 --- a/src/widget/associatedforms/associatedFormsTinyaceRange.vue +++ b/src/widget/associatedforms/associatedFormsTinyaceRange.vue @@ -17,7 +17,7 @@ const tinymceInit = { language_url: "/tinymce/langs/zh-Hans.js", // 引入语言包(该语言包在public下,注意文件名称) language: "zh-Hans", // 这里名称根据 zh-Hans.js 里面写的名称而定 skin_url: "/tinymce/skins/ui/oxide", // 这里引入的样式 - height: 260, // 限制高度 + height: 174, // 限制高度 statusbar:false, toolbar:false, branding: false, //是否禁用“Powered by TinyMCE” @@ -84,8 +84,10 @@ watch(()=>tinymceHtml.value, (val:any) => { errorCondition("条件不能以蓝色块结尾") }else if(countSpanTags(gongShi.formulaHtml)>1){ errorCondition("不允许出现多个蓝色块") - }else if(!containsSingleComparator(gongShi.mathsFormula)){ + }else if(!containsSingleComparator(gongShi.mathsFormula)&&!gongShi.mathsFormula.includes("包含")){ + errorCondition("不存在有效符号") + }else if(checkEnding(gongShi.mathsFormula)){ errorCondition("不能以符号为结尾") }else{