wangting
2024-12-17 b9686c7739bf131922005e86128ba9232c0313ac
Source/plt-web/plt-web-ui/src/components/dynamic-components/index.vue
@@ -70,6 +70,23 @@
                  :isShow="isShow">
  </dynamic-custom>
  <dynamic-ui-parse v-else-if="componentVO.uiComponentType=='uiParse'"
                    :uiBtmType="uiBtmType"
                    :uiContext="uiContext"
                    :inDialog="inDialog"
                    :canEdit="canEdit"
                    :actionType="actionType"
                    :key="areasName+'uiParse-'+componentVO.oid"
                    :componentVO="componentVO"
                    :sourceData="sourceData"
                    :sourceBtmType="sourceBtmType"
                    :dataStore="dataStore"
                    :areasName="areasName"
                    :paramVOS="paramVOS"
                    @setData="setData"
                    @setDataStore="setDataStore"
                    :isShow="isShow">
  </dynamic-ui-parse>
</template>
<script>
@@ -77,9 +94,10 @@
import dynamicForm from "@/components/dynamic-components/dynamic-form"
import dynamicTree from "@/components/dynamic-components/dynamic-tree"
import dynamicCustom from "@/components/dynamic-components/dynamic-custom"
import DynamicUiParse from "@/components/dynamic-components/dynamic-uiParse";
export default {
  name: "dynamicIndex",
  components:{dynamicCustom, dynamicTree, dynamicForm, dynamicTable  },
  components:{DynamicUiParse, dynamicCustom, dynamicTree, dynamicForm, dynamicTable  },
  props:{
    //ui上下文的业务类型(或链接类型)
    uiBtmType: {