diff --git a/src/components/XModal/src/XModal.vue b/src/components/XModal/src/XModal.vue index c397edd972ad8253a5011a1e290256eec58b650c..95b9f4be7c8a44632c22b60508d5b42c9412f37b 100644 --- a/src/components/XModal/src/XModal.vue +++ b/src/components/XModal/src/XModal.vue @@ -12,7 +12,9 @@ const props = defineProps({ height: propTypes.string, minWidth: propTypes.string.def('460'), minHeight: propTypes.string.def('320'), - showFooter: propTypes.bool.def(true) + showFooter: propTypes.bool.def(true), + maskClosable: propTypes.bool.def(false), + escClosable: propTypes.bool.def(false) }) const getBindValue = computed(() => { diff --git a/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue b/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue index 1f471f3e7223bb09c8fff1cfc7e188a77081aaee..cb8c0d26d59513ee3cd45dc789546fcfcdb5e447 100644 --- a/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue +++ b/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue @@ -190,12 +190,12 @@ -
-            
-            
-            {{ previewResult }}
-            
-        
+
+ + + {{ previewResult }} + +
diff --git a/src/views/bpm/definition/definition.data.ts b/src/views/bpm/definition/definition.data.ts index 919cbd9c01836ac300b80bdfa2c837c089d2339d..14a0c31954ff772968c58656518b132749ff6e61 100644 --- a/src/views/bpm/definition/definition.data.ts +++ b/src/views/bpm/definition/definition.data.ts @@ -17,23 +17,29 @@ const crudSchemas = reactive({ title: '定义名称', field: 'name', table: { - width: 120, + // width: 120, slots: { default: 'name_default' } } }, { - title: '流程分类', + title: '定义分类', field: 'category', - dictType: DICT_TYPE.BPM_MODEL_CATEGORY, - dictClass: 'number' + // dictType: DICT_TYPE.BPM_MODEL_CATEGORY, + // dictClass: 'number', + table: { + // width: 120, + slots: { + default: 'category_default' + } + } }, { title: '表单信息', field: 'formId', table: { - width: 120, + // width: 200, slots: { default: 'formId_default' } @@ -43,7 +49,7 @@ const crudSchemas = reactive({ title: '流程版本', field: 'version', table: { - width: 80, + // width: 80, slots: { default: 'version_default' } @@ -53,7 +59,7 @@ const crudSchemas = reactive({ title: '激活状态', field: 'suspensionState', table: { - width: 80, + // width: 80, slots: { default: 'suspensionState_default' } @@ -63,10 +69,10 @@ const crudSchemas = reactive({ title: '部署时间', field: 'deploymentTime', isForm: false, - formatter: 'formatDate', - table: { - width: 180 - } + formatter: 'formatDate' + // table: { + // width: 180 + // } } ] }) diff --git a/src/views/bpm/definition/index.vue b/src/views/bpm/definition/index.vue index 19a7cf06ad9c7e68d01fa54aa3357540558ac17d..f2ef640c198c6222fcc6aad3725912c6d2d25ee5 100644 --- a/src/views/bpm/definition/index.vue +++ b/src/views/bpm/definition/index.vue @@ -6,6 +6,10 @@ + +