vue2-client 1.10.27 → 1.10.29
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
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
:value="card[item.key]" />
|
|
74
74
|
</template>
|
|
75
75
|
<template v-else>
|
|
76
|
-
<slot :name="column.slots.customRender">{{ card[item.
|
|
76
|
+
<slot :name="column.slots.customRender">{{ card[item.key] }}</slot>
|
|
77
77
|
</template>
|
|
78
78
|
</span>
|
|
79
79
|
</template>
|
|
@@ -213,7 +213,7 @@ export default {
|
|
|
213
213
|
} else {
|
|
214
214
|
this.config = {
|
|
215
215
|
id: '未获取到配置',
|
|
216
|
-
title: '
|
|
216
|
+
title: 'one',
|
|
217
217
|
title2: '未获取到配置',
|
|
218
218
|
subtitle2: '未获取到配置',
|
|
219
219
|
subtitle3: '未获取到配置',
|
|
@@ -269,14 +269,14 @@ export default {
|
|
|
269
269
|
// this.loadData()
|
|
270
270
|
// }
|
|
271
271
|
} else {
|
|
272
|
-
this.data = {
|
|
272
|
+
this.data = [{
|
|
273
273
|
one: '未获取到配置',
|
|
274
274
|
two: '未获取到配置',
|
|
275
275
|
three: '未获取到配置',
|
|
276
276
|
four: '未获取到配置',
|
|
277
277
|
five: '未获取到配置',
|
|
278
278
|
six: 70
|
|
279
|
-
}
|
|
279
|
+
}]
|
|
280
280
|
}
|
|
281
281
|
// 测试数据初始化
|
|
282
282
|
if (this.testData) {
|