vue2-client 1.9.70 → 1.9.72
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 +1 -1
- package/src/base-client/components/common/XButtons/XButtonDemo.vue +2 -2
- package/src/base-client/components/common/XButtons/XButtons.vue +5 -0
- package/src/base-client/components/common/XButtons/index.md +1 -1
- package/src/base-client/components/common/XTable/TableCellRenderer.vue +1 -1
- package/src/router/async/router.map.js +1 -1
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<script>
|
|
8
8
|
import XButtons from './XButtons.vue'
|
|
9
|
-
import { getConfigByName } from '
|
|
9
|
+
import { getConfigByName } from '@vue2-client/services/api/common'
|
|
10
10
|
|
|
11
11
|
export default {
|
|
12
12
|
name: 'XButtonDemo',
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
mounted () {
|
|
20
20
|
getConfigByName('testButtonGroup', 'af-his', res => {
|
|
21
21
|
this.$refs.xButtons.init({
|
|
22
|
-
|
|
22
|
+
value: res.value
|
|
23
23
|
})
|
|
24
24
|
}, true)
|
|
25
25
|
},
|
|
@@ -82,7 +82,7 @@ import XFormItem from '@vue2-client/base-client/components/common/XForm/XFormIte
|
|
|
82
82
|
import Ellipsis from '@vue2-client/components/Ellipsis/Ellipsis.vue'
|
|
83
83
|
import XBadge from '@vue2-client/base-client/components/common/XBadge/XBadge.vue'
|
|
84
84
|
import { executeStrFunction } from '@vue2-client/utils/runEvalFunction'
|
|
85
|
-
import { formatDate } from '
|
|
85
|
+
import { formatDate } from '@vue2-client/utils/util'
|
|
86
86
|
|
|
87
87
|
export default {
|
|
88
88
|
components: { XBadge, Ellipsis, XFormItem },
|
|
@@ -90,7 +90,7 @@ routerResource.example = {
|
|
|
90
90
|
// component: () => import('@vue2-client/base-client/components/common/XTab/XTabDemo.vue'),
|
|
91
91
|
// component: () => import('@vue2-client/base-client/components/common/XReportGrid/XReportDemo.vue'),
|
|
92
92
|
// component: () => import('@vue2-client/pages/WorkflowDetail/WorkFlowDemo.vue'),
|
|
93
|
-
|
|
93
|
+
component: () => import('@vue2-client/base-client/components/common/XButtons/XButtonDemo.vue'),
|
|
94
94
|
meta: {
|
|
95
95
|
// 菜单中不显示
|
|
96
96
|
invisible: true,
|