vue2-client 1.15.1 → 1.15.2
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/.env.message +19 -19
- package/package.json +109 -109
- package/src/base-client/components/common/XFormTable/demo.vue +86 -86
- package/src/base-client/components/common/XTab/XTab.vue +1 -0
- package/src/base-client/components/common/XTable/XTable.vue +1571 -1587
- package/src/router/async/router.map.js +127 -127
- package/vue.config.js +220 -220
package/.env.message
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
VUE_APP_PUBLIC_PATH=/
|
2
|
-
VUE_APP_NAME=Admin
|
3
|
-
VUE_APP_ROUTES_KEY=admin.routes
|
4
|
-
VUE_APP_PERMISSIONS_KEY=admin.permissions
|
5
|
-
VUE_APP_ROLES_KEY=admin.roles
|
6
|
-
VUE_APP_USER_KEY=admin.user
|
7
|
-
VUE_APP_LOGIN_KEY=admin.login
|
8
|
-
VUE_APP_SETTING_KEY=admin.setting
|
9
|
-
VUE_APP_TBAS_KEY=admin.tabs
|
10
|
-
VUE_APP_TBAS_TITLES_KEY=admin.tabs.titles
|
11
|
-
VUE_APP_DICTIONARY_KEY=admin.dictionary
|
12
|
-
VUE_APP_BADGE_KEY=admin.badge
|
13
|
-
VUE_APP_SINGLEVALUE_KEY=admin.singlevalue
|
14
|
-
VUE_APP_DIVISIONSOHCHINA=admin.divisionsohchina
|
15
|
-
VUE_APP_WEB_CONFIG_KEY=admin.webconfig
|
16
|
-
VUE_APP_API_BASE_URL=http://123.60.214.109:8405
|
17
|
-
VUE_APP_SYSTEM_NAME=af-message
|
18
|
-
VUE_APP_LOGIN_VERSION=V4
|
19
|
-
|
1
|
+
VUE_APP_PUBLIC_PATH=/
|
2
|
+
VUE_APP_NAME=Admin
|
3
|
+
VUE_APP_ROUTES_KEY=admin.routes
|
4
|
+
VUE_APP_PERMISSIONS_KEY=admin.permissions
|
5
|
+
VUE_APP_ROLES_KEY=admin.roles
|
6
|
+
VUE_APP_USER_KEY=admin.user
|
7
|
+
VUE_APP_LOGIN_KEY=admin.login
|
8
|
+
VUE_APP_SETTING_KEY=admin.setting
|
9
|
+
VUE_APP_TBAS_KEY=admin.tabs
|
10
|
+
VUE_APP_TBAS_TITLES_KEY=admin.tabs.titles
|
11
|
+
VUE_APP_DICTIONARY_KEY=admin.dictionary
|
12
|
+
VUE_APP_BADGE_KEY=admin.badge
|
13
|
+
VUE_APP_SINGLEVALUE_KEY=admin.singlevalue
|
14
|
+
VUE_APP_DIVISIONSOHCHINA=admin.divisionsohchina
|
15
|
+
VUE_APP_WEB_CONFIG_KEY=admin.webconfig
|
16
|
+
VUE_APP_API_BASE_URL=http://123.60.214.109:8405
|
17
|
+
VUE_APP_SYSTEM_NAME=af-message
|
18
|
+
VUE_APP_LOGIN_VERSION=V4
|
19
|
+
|
package/package.json
CHANGED
@@ -1,109 +1,109 @@
|
|
1
|
-
{
|
2
|
-
"name": "vue2-client",
|
3
|
-
"version": "1.15.
|
4
|
-
"private": false,
|
5
|
-
"scripts": {
|
6
|
-
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
|
7
|
-
"serve:gaslink": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode gaslink",
|
8
|
-
"serve:revenue": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode revenue",
|
9
|
-
"serve:liuli": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode liuli",
|
10
|
-
"serve:scada": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode scada",
|
11
|
-
"serve:iot": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode iot",
|
12
|
-
"serve:his": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode his",
|
13
|
-
"serve:runtime": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode runtime",
|
14
|
-
"serve:message": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode message",
|
15
|
-
"mac-serve": "vue-cli-service serve --no-eslint --mode his",
|
16
|
-
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
|
17
|
-
"test:unit": "vue-cli-service test:unit",
|
18
|
-
"lint": "vue-cli-service lint",
|
19
|
-
"build:preview": "vue-cli-service build --mode preview",
|
20
|
-
"lint:nofix": "vue-cli-service lint --no-fix",
|
21
|
-
"test": "jest"
|
22
|
-
},
|
23
|
-
"dependencies": {
|
24
|
-
"@afwenming123/vue-easy-tree": "^1.0.1",
|
25
|
-
"@afwenming123/vue-plugin-hiprint": "^0.0.70",
|
26
|
-
"@amap/amap-jsapi-loader": "^1.0.1",
|
27
|
-
"@antv/data-set": "^0.11.8",
|
28
|
-
"@antv/g2plot": "^2.4.31",
|
29
|
-
"@hufe921/canvas-editor": "^0.9.49",
|
30
|
-
"@microsoft/fetch-event-source": "^2.0.1",
|
31
|
-
"@vue/babel-preset-jsx": "^1.4.0",
|
32
|
-
"animate.css": "^4.1.1",
|
33
|
-
"ant-design-vue": "^1.7.8",
|
34
|
-
"axios": "^0.27.2",
|
35
|
-
"clipboard": "^2.0.11",
|
36
|
-
"core-js": "^3.33.0",
|
37
|
-
"crypto-js": "^4.1.1",
|
38
|
-
"date-fns": "^2.29.3",
|
39
|
-
"default-passive-events": "^2.0.0",
|
40
|
-
"dotenv": "^16.3.1",
|
41
|
-
"echarts": "^5.5.0",
|
42
|
-
"enquire.js": "^2.1.6",
|
43
|
-
"file-saver": "^2.0.5",
|
44
|
-
"highlight.js": "^11.7.0",
|
45
|
-
"html2canvas": "^1.4.1",
|
46
|
-
"js-base64": "^3.7.5",
|
47
|
-
"js-cookie": "^2.2.1",
|
48
|
-
"jsencrypt": "^3.3.2",
|
49
|
-
"jspdf": "^2.5.1",
|
50
|
-
"lodash.clonedeep": "^4.5.0",
|
51
|
-
"lodash.debounce": "^4",
|
52
|
-
"lodash.get": "^4.4.2",
|
53
|
-
"marked": "^4",
|
54
|
-
"mockjs": "^1.1.0",
|
55
|
-
"nprogress": "^0.2.0",
|
56
|
-
"qs": "^6.11.2",
|
57
|
-
"regenerator-runtime": "^0.14.0",
|
58
|
-
"videojs-contrib-hls": "^5.15.0",
|
59
|
-
"viser-vue": "^2.4.8",
|
60
|
-
"vue": "^2.7.14",
|
61
|
-
"vue-codemirror": "4.0.6",
|
62
|
-
"vue-draggable-resizable": "^2",
|
63
|
-
"vue-i18n": "^8.28.2",
|
64
|
-
"vue-json-viewer": "^2.2.22",
|
65
|
-
"vue-router": "^3.6.5",
|
66
|
-
"vue-video-player": "^5.0.2",
|
67
|
-
"vue-virtual-scroller": "^1.1.2",
|
68
|
-
"vuedraggable": "^2.24.3",
|
69
|
-
"vuex": "^3.6.2",
|
70
|
-
"xlsx": "0.18.5"
|
71
|
-
},
|
72
|
-
"devDependencies": {
|
73
|
-
"@ant-design/colors": "^7.0.0",
|
74
|
-
"@babel/core": "^7.22.20",
|
75
|
-
"@babel/eslint-parser": "^7.22.15",
|
76
|
-
"@babel/preset-env": "^7.22.20",
|
77
|
-
"@vue/cli-plugin-babel": "^5.0.8",
|
78
|
-
"@vue/cli-plugin-eslint": "^5.0.8",
|
79
|
-
"@vue/cli-service": "^5.0.8",
|
80
|
-
"@vue/eslint-config-standard": "^8.0.1",
|
81
|
-
"@vue/test-utils": "^1.3.6",
|
82
|
-
"babel-plugin-transform-remove-console": "^6.9.4",
|
83
|
-
"compression-webpack-plugin": "^10.0.0",
|
84
|
-
"css-minimizer-webpack-plugin": "^5.0.1",
|
85
|
-
"deepmerge": "^4.3.1",
|
86
|
-
"eslint": "^8.51.0",
|
87
|
-
"eslint-plugin-vue": "^9.17.0",
|
88
|
-
"fast-deep-equal": "^3.1.3",
|
89
|
-
"ignore-loader": "^0.1.2",
|
90
|
-
"jest": "^29.7.0",
|
91
|
-
"jest-environment-jsdom": "^29.7.0",
|
92
|
-
"jest-transform-stub": "^2.0.0",
|
93
|
-
"less-loader": "^6.2.0",
|
94
|
-
"script-loader": "^0.7.2",
|
95
|
-
"style-resources-loader": "^1.5.0",
|
96
|
-
"vue-cli-plugin-style-resources-loader": "^0.1.5",
|
97
|
-
"vue-jest": "^4.0.1",
|
98
|
-
"vue-template-compiler": "^2.7.14",
|
99
|
-
"webpack": "^5.88.2",
|
100
|
-
"webpack-theme-color-replacer": "^1.4.7",
|
101
|
-
"whatwg-fetch": "^3.6.19"
|
102
|
-
},
|
103
|
-
"browserslist": [
|
104
|
-
"> 1%",
|
105
|
-
"last 2 versions",
|
106
|
-
"not dead",
|
107
|
-
"not ie 11"
|
108
|
-
]
|
109
|
-
}
|
1
|
+
{
|
2
|
+
"name": "vue2-client",
|
3
|
+
"version": "1.15.2",
|
4
|
+
"private": false,
|
5
|
+
"scripts": {
|
6
|
+
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
|
7
|
+
"serve:gaslink": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode gaslink",
|
8
|
+
"serve:revenue": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode revenue",
|
9
|
+
"serve:liuli": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode liuli",
|
10
|
+
"serve:scada": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode scada",
|
11
|
+
"serve:iot": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode iot",
|
12
|
+
"serve:his": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode his",
|
13
|
+
"serve:runtime": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode runtime",
|
14
|
+
"serve:message": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint --mode message",
|
15
|
+
"mac-serve": "vue-cli-service serve --no-eslint --mode his",
|
16
|
+
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
|
17
|
+
"test:unit": "vue-cli-service test:unit",
|
18
|
+
"lint": "vue-cli-service lint",
|
19
|
+
"build:preview": "vue-cli-service build --mode preview",
|
20
|
+
"lint:nofix": "vue-cli-service lint --no-fix",
|
21
|
+
"test": "jest"
|
22
|
+
},
|
23
|
+
"dependencies": {
|
24
|
+
"@afwenming123/vue-easy-tree": "^1.0.1",
|
25
|
+
"@afwenming123/vue-plugin-hiprint": "^0.0.70",
|
26
|
+
"@amap/amap-jsapi-loader": "^1.0.1",
|
27
|
+
"@antv/data-set": "^0.11.8",
|
28
|
+
"@antv/g2plot": "^2.4.31",
|
29
|
+
"@hufe921/canvas-editor": "^0.9.49",
|
30
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
31
|
+
"@vue/babel-preset-jsx": "^1.4.0",
|
32
|
+
"animate.css": "^4.1.1",
|
33
|
+
"ant-design-vue": "^1.7.8",
|
34
|
+
"axios": "^0.27.2",
|
35
|
+
"clipboard": "^2.0.11",
|
36
|
+
"core-js": "^3.33.0",
|
37
|
+
"crypto-js": "^4.1.1",
|
38
|
+
"date-fns": "^2.29.3",
|
39
|
+
"default-passive-events": "^2.0.0",
|
40
|
+
"dotenv": "^16.3.1",
|
41
|
+
"echarts": "^5.5.0",
|
42
|
+
"enquire.js": "^2.1.6",
|
43
|
+
"file-saver": "^2.0.5",
|
44
|
+
"highlight.js": "^11.7.0",
|
45
|
+
"html2canvas": "^1.4.1",
|
46
|
+
"js-base64": "^3.7.5",
|
47
|
+
"js-cookie": "^2.2.1",
|
48
|
+
"jsencrypt": "^3.3.2",
|
49
|
+
"jspdf": "^2.5.1",
|
50
|
+
"lodash.clonedeep": "^4.5.0",
|
51
|
+
"lodash.debounce": "^4",
|
52
|
+
"lodash.get": "^4.4.2",
|
53
|
+
"marked": "^4",
|
54
|
+
"mockjs": "^1.1.0",
|
55
|
+
"nprogress": "^0.2.0",
|
56
|
+
"qs": "^6.11.2",
|
57
|
+
"regenerator-runtime": "^0.14.0",
|
58
|
+
"videojs-contrib-hls": "^5.15.0",
|
59
|
+
"viser-vue": "^2.4.8",
|
60
|
+
"vue": "^2.7.14",
|
61
|
+
"vue-codemirror": "4.0.6",
|
62
|
+
"vue-draggable-resizable": "^2",
|
63
|
+
"vue-i18n": "^8.28.2",
|
64
|
+
"vue-json-viewer": "^2.2.22",
|
65
|
+
"vue-router": "^3.6.5",
|
66
|
+
"vue-video-player": "^5.0.2",
|
67
|
+
"vue-virtual-scroller": "^1.1.2",
|
68
|
+
"vuedraggable": "^2.24.3",
|
69
|
+
"vuex": "^3.6.2",
|
70
|
+
"xlsx": "0.18.5"
|
71
|
+
},
|
72
|
+
"devDependencies": {
|
73
|
+
"@ant-design/colors": "^7.0.0",
|
74
|
+
"@babel/core": "^7.22.20",
|
75
|
+
"@babel/eslint-parser": "^7.22.15",
|
76
|
+
"@babel/preset-env": "^7.22.20",
|
77
|
+
"@vue/cli-plugin-babel": "^5.0.8",
|
78
|
+
"@vue/cli-plugin-eslint": "^5.0.8",
|
79
|
+
"@vue/cli-service": "^5.0.8",
|
80
|
+
"@vue/eslint-config-standard": "^8.0.1",
|
81
|
+
"@vue/test-utils": "^1.3.6",
|
82
|
+
"babel-plugin-transform-remove-console": "^6.9.4",
|
83
|
+
"compression-webpack-plugin": "^10.0.0",
|
84
|
+
"css-minimizer-webpack-plugin": "^5.0.1",
|
85
|
+
"deepmerge": "^4.3.1",
|
86
|
+
"eslint": "^8.51.0",
|
87
|
+
"eslint-plugin-vue": "^9.17.0",
|
88
|
+
"fast-deep-equal": "^3.1.3",
|
89
|
+
"ignore-loader": "^0.1.2",
|
90
|
+
"jest": "^29.7.0",
|
91
|
+
"jest-environment-jsdom": "^29.7.0",
|
92
|
+
"jest-transform-stub": "^2.0.0",
|
93
|
+
"less-loader": "^6.2.0",
|
94
|
+
"script-loader": "^0.7.2",
|
95
|
+
"style-resources-loader": "^1.5.0",
|
96
|
+
"vue-cli-plugin-style-resources-loader": "^0.1.5",
|
97
|
+
"vue-jest": "^4.0.1",
|
98
|
+
"vue-template-compiler": "^2.7.14",
|
99
|
+
"webpack": "^5.88.2",
|
100
|
+
"webpack-theme-color-replacer": "^1.4.7",
|
101
|
+
"whatwg-fetch": "^3.6.19"
|
102
|
+
},
|
103
|
+
"browserslist": [
|
104
|
+
"> 1%",
|
105
|
+
"last 2 versions",
|
106
|
+
"not dead",
|
107
|
+
"not ie 11"
|
108
|
+
]
|
109
|
+
}
|
@@ -1,86 +1,86 @@
|
|
1
|
-
<template>
|
2
|
-
<a-card :bordered="false">
|
3
|
-
<x-form-table
|
4
|
-
title="示例表单"
|
5
|
-
:queryParamsName="queryParamsName"
|
6
|
-
:fixedAddForm="fixedAddForm"
|
7
|
-
:externalSelectedRowKeys="selectedKeys"
|
8
|
-
@action="action"
|
9
|
-
@selectRow="selectRow"
|
10
|
-
@columnClick="columnClick"
|
11
|
-
ref="xFormTable">
|
12
|
-
</x-form-table>
|
13
|
-
</a-card>
|
14
|
-
</template>
|
15
|
-
|
16
|
-
<script>
|
17
|
-
import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XFormTable.vue'
|
18
|
-
import { microDispatch } from '@vue2-client/utils/microAppUtils'
|
19
|
-
|
20
|
-
export default {
|
21
|
-
name: 'Demo',
|
22
|
-
components: {
|
23
|
-
XFormTable
|
24
|
-
},
|
25
|
-
data () {
|
26
|
-
return {
|
27
|
-
// 查询配置文件名
|
28
|
-
queryParamsName: '
|
29
|
-
// 新增表单固定值
|
30
|
-
fixedAddForm: {},
|
31
|
-
// 是否显示详情抽屉
|
32
|
-
detailVisible: false,
|
33
|
-
// 当前记录
|
34
|
-
record: {},
|
35
|
-
// 选中的行keys
|
36
|
-
selectedKeys: [],
|
37
|
-
selected: {
|
38
|
-
keys: [],
|
39
|
-
rows: []
|
40
|
-
}
|
41
|
-
}
|
42
|
-
},
|
43
|
-
methods: {
|
44
|
-
test () {
|
45
|
-
this.$refs.xFormTable.setTableData([])
|
46
|
-
},
|
47
|
-
defaultF () {
|
48
|
-
this.$refs.xFormTable.setTableSize('default')
|
49
|
-
},
|
50
|
-
middleF () {
|
51
|
-
this.$refs.xFormTable.setTableSize('middle')
|
52
|
-
},
|
53
|
-
smallF () {
|
54
|
-
this.$refs.xFormTable.setTableSize('small')
|
55
|
-
},
|
56
|
-
columnClick (key, value, record) {
|
57
|
-
microDispatch({
|
58
|
-
type: 'v3route',
|
59
|
-
path: '/bingliguanli/dianzibingliluru',
|
60
|
-
props: { selected: arguments[0].his_f_admission_id }
|
61
|
-
})
|
62
|
-
},
|
63
|
-
action (record, id, actionType) {
|
64
|
-
this.detailVisible = true
|
65
|
-
console.log('触发了详情操作', record, id, actionType)
|
66
|
-
},
|
67
|
-
onClose () {
|
68
|
-
this.detailVisible = false
|
69
|
-
// 关闭详情之后重新查询表单
|
70
|
-
this.$refs.xFormTable.refreshTable(true)
|
71
|
-
},
|
72
|
-
selectRow (selectedRowKeys, selectedRows) {
|
73
|
-
this.selected = {
|
74
|
-
keys: selectedRowKeys,
|
75
|
-
rows: selectedRows
|
76
|
-
}
|
77
|
-
console.log('selectedDemo', this.selected)
|
78
|
-
},
|
79
|
-
},
|
80
|
-
computed: {},
|
81
|
-
}
|
82
|
-
</script>
|
83
|
-
|
84
|
-
<style scoped>
|
85
|
-
|
86
|
-
</style>
|
1
|
+
<template>
|
2
|
+
<a-card :bordered="false">
|
3
|
+
<x-form-table
|
4
|
+
title="示例表单"
|
5
|
+
:queryParamsName="queryParamsName"
|
6
|
+
:fixedAddForm="fixedAddForm"
|
7
|
+
:externalSelectedRowKeys="selectedKeys"
|
8
|
+
@action="action"
|
9
|
+
@selectRow="selectRow"
|
10
|
+
@columnClick="columnClick"
|
11
|
+
ref="xFormTable">
|
12
|
+
</x-form-table>
|
13
|
+
</a-card>
|
14
|
+
</template>
|
15
|
+
|
16
|
+
<script>
|
17
|
+
import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XFormTable.vue'
|
18
|
+
import { microDispatch } from '@vue2-client/utils/microAppUtils'
|
19
|
+
|
20
|
+
export default {
|
21
|
+
name: 'Demo',
|
22
|
+
components: {
|
23
|
+
XFormTable
|
24
|
+
},
|
25
|
+
data () {
|
26
|
+
return {
|
27
|
+
// 查询配置文件名
|
28
|
+
queryParamsName: 'userInfosCRUD',
|
29
|
+
// 新增表单固定值
|
30
|
+
fixedAddForm: {},
|
31
|
+
// 是否显示详情抽屉
|
32
|
+
detailVisible: false,
|
33
|
+
// 当前记录
|
34
|
+
record: {},
|
35
|
+
// 选中的行keys
|
36
|
+
selectedKeys: ['813200000004', '72547', '72455', '72451'],
|
37
|
+
selected: {
|
38
|
+
keys: [],
|
39
|
+
rows: []
|
40
|
+
}
|
41
|
+
}
|
42
|
+
},
|
43
|
+
methods: {
|
44
|
+
test () {
|
45
|
+
this.$refs.xFormTable.setTableData([])
|
46
|
+
},
|
47
|
+
defaultF () {
|
48
|
+
this.$refs.xFormTable.setTableSize('default')
|
49
|
+
},
|
50
|
+
middleF () {
|
51
|
+
this.$refs.xFormTable.setTableSize('middle')
|
52
|
+
},
|
53
|
+
smallF () {
|
54
|
+
this.$refs.xFormTable.setTableSize('small')
|
55
|
+
},
|
56
|
+
columnClick (key, value, record) {
|
57
|
+
microDispatch({
|
58
|
+
type: 'v3route',
|
59
|
+
path: '/bingliguanli/dianzibingliluru',
|
60
|
+
props: { selected: arguments[0].his_f_admission_id }
|
61
|
+
})
|
62
|
+
},
|
63
|
+
action (record, id, actionType) {
|
64
|
+
this.detailVisible = true
|
65
|
+
console.log('触发了详情操作', record, id, actionType)
|
66
|
+
},
|
67
|
+
onClose () {
|
68
|
+
this.detailVisible = false
|
69
|
+
// 关闭详情之后重新查询表单
|
70
|
+
this.$refs.xFormTable.refreshTable(true)
|
71
|
+
},
|
72
|
+
selectRow (selectedRowKeys, selectedRows) {
|
73
|
+
this.selected = {
|
74
|
+
keys: selectedRowKeys,
|
75
|
+
rows: selectedRows
|
76
|
+
}
|
77
|
+
console.log('selectedDemo', this.selected)
|
78
|
+
},
|
79
|
+
},
|
80
|
+
computed: {},
|
81
|
+
}
|
82
|
+
</script>
|
83
|
+
|
84
|
+
<style scoped>
|
85
|
+
|
86
|
+
</style>
|