Browse Source

修复了单选,多选,下拉选项数据源为系统表单字段时,无法选择表单的bug

lwx_v13
liwenxuan 1 year ago
parent
commit
ca095c6290
  1. 3
      src/components/DesignForm/formControlPropertiNew.vue

3
src/components/DesignForm/formControlPropertiNew.vue

@ -5045,7 +5045,7 @@ const radioChangeSet = (val:any) => {
<!-- 单选下拉多选选项来源value3--系统表单字段 start-->
<el-dialog v-model="optionsValue3SettingDialogOpenFlag" class="glxxsztc" top="150px" :close-on-click-modal="false" title="选择表单字段" :show-close="false" style="margin-top:70px;" width="50%" >
<el-dialog v-model="optionsValue3SettingDialogOpenFlag" class="glxxsztc" top="150px" :close-on-click-modal="false" title="选择表单字段" :show-close="false" style="margin-top:70px;" width="50%" >
<template v-if="controlData.type=='radio'||controlData.type=='select'||controlData.type=='checkbox'">
<div style="display:flex;margin-bottom: 20px;margin-top:20px"><span style="font-size: larger;margin-left: 35px;margin-right: 15px;">请选择表单</span>
<el-tree-select
@ -5055,6 +5055,7 @@ const radioChangeSet = (val:any) => {
check-strictly
:render-after-expand="false"
filterable
node-key="id"
@change="formidChangedOptionsValue3"
/>
</div>

Loading…
Cancel
Save