vue2-client 1.8.435 → 1.8.437
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
|
@@ -12,12 +12,13 @@
|
|
|
12
12
|
:span="cell.colSpan ? cell.colSpan * 2 : undefined">
|
|
13
13
|
<!-- 插槽渲染 -->
|
|
14
14
|
<template v-if="cell.type === 'slot'">
|
|
15
|
-
<template v-if="['x-form-table','x-add-native-form','x-tree-pro', 'x-his-editor'].includes(cell.slotType)">
|
|
15
|
+
<template v-if="['x-form-table','x-add-native-form','x-tree-pro', 'x-his-editor', 'x-tab'].includes(cell.slotType)">
|
|
16
16
|
<component
|
|
17
17
|
:is="getComponentName(cell.slotConfig, cell.serviceName, cell.slotType)"
|
|
18
18
|
:key="cellIndex"
|
|
19
19
|
:ref="`dynamicComponent_${ cell.slotRef || cellIndex}`"
|
|
20
20
|
:serviceName="cell.serviceName"
|
|
21
|
+
:serverName="cell.serviceName"
|
|
21
22
|
v-on="getEventHandlers(cell)"
|
|
22
23
|
@hook:mounted="(h)=>onComponentMounted(h,cell,cellIndex)"
|
|
23
24
|
:queryParamsName="cell.slotConfig"
|
|
@@ -399,7 +400,8 @@ export default {
|
|
|
399
400
|
XFormTable: () => import('@vue2-client/base-client/components/common/XFormTable/XFormTable.vue'),
|
|
400
401
|
XAddNativeForm: () => import('@vue2-client/base-client/components/common/XAddNativeForm/XAddNativeForm.vue'),
|
|
401
402
|
XTreePro: () => import('@vue2-client/base-client/components/common/XTree/XTreePro.vue'),
|
|
402
|
-
XHisEditor: () => import('@vue2-client/base-client/components/his/XHisEditor/XHisEditor.vue')
|
|
403
|
+
XHisEditor: () => import('@vue2-client/base-client/components/his/XHisEditor/XHisEditor.vue'),
|
|
404
|
+
XTab: () => import('@vue2-client/base-client/components/common/XTab/XTab.vue')
|
|
403
405
|
},
|
|
404
406
|
props: {
|
|
405
407
|
// 每一行的配置
|
|
@@ -78,7 +78,8 @@ routerResource.example = {
|
|
|
78
78
|
{
|
|
79
79
|
path: 'default',
|
|
80
80
|
name: '示例页面',
|
|
81
|
-
component: () => import('@vue2-client/base-client/components/common/XFormTable/demo.vue'),
|
|
81
|
+
// component: () => import('@vue2-client/base-client/components/common/XFormTable/demo.vue'),
|
|
82
|
+
component: () => import('@vue2-client/base-client/components/common/XReportGrid/XReportDemo.vue'),
|
|
82
83
|
// component: () => import('@vue2-client/pages/WorkflowDetail/WorkFlowDemo.vue'),
|
|
83
84
|
meta: {
|
|
84
85
|
// 菜单中不显示
|