vue2-client 1.12.66 → 1.12.67
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="list-wrapper">
|
|
2
|
+
<div class="list-wrapper" >
|
|
3
3
|
<a-list size="large" :data-source="data" itemLayout="horizontal" class="list-container">
|
|
4
4
|
<a-list-item slot="renderItem" slot-scope="item, index" class="list-item" @click="handleClick(index)">
|
|
5
5
|
{{ item.number }} {{ item.name }}
|
|
@@ -35,8 +35,7 @@ export default {
|
|
|
35
35
|
})
|
|
36
36
|
},
|
|
37
37
|
handleClick (index) {
|
|
38
|
-
|
|
39
|
-
this.$emit('listClick', row)
|
|
38
|
+
this.$emit('listClick', this.data[index])
|
|
40
39
|
},
|
|
41
40
|
refreshList () {
|
|
42
41
|
this.getData(this.queryParamsName)
|
|
@@ -52,8 +52,8 @@ routerResource.newDynamicStatistics = () => import('@vue2-client/pages/NewDynami
|
|
|
52
52
|
routerResource.example = {
|
|
53
53
|
path: 'example',
|
|
54
54
|
name: '示例主页面',
|
|
55
|
-
component: () => import('@vue2-client/base-client/components/his/XList/XList.vue'),
|
|
56
|
-
|
|
55
|
+
// component: () => import('@vue2-client/base-client/components/his/XList/XList.vue'),
|
|
56
|
+
component: () => import('@vue2-client/base-client/components/common/XCollapse/XCollapse.vue'),
|
|
57
57
|
// component: () => import('@vue2-client/base-client/components/common/XDataCard/XDataCard.vue'),
|
|
58
58
|
// component: () => import('@vue2-client/base-client/components/common/XDescriptions/demo.vue'),
|
|
59
59
|
// component: () => import('@vue2-client/base-client/components/common/XAddNativeForm/demo.vue'),
|