vue2-client 1.15.46 → 1.15.47
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
@@ -6,7 +6,7 @@
|
|
6
6
|
<a-list :grid="{ gutter: 16, xs: 1, sm: 2, md: 2, lg: 3, xl: 3, xxl: 4 }"
|
7
7
|
:data-source="localData">
|
8
8
|
<a-list-item slot="renderItem" slot-scope="item, index">
|
9
|
-
<div
|
9
|
+
<div class="card-a-col">
|
10
10
|
<a-row class="card-row">
|
11
11
|
<a-col class="id-a-col" :span="4" v-for="(detail,idx) in item" :key="idx" v-if="detail.label == label">
|
12
12
|
{{detail.value}}<span style="font-size: 16px;font-weight: 400 !important;">床</span>
|
@@ -477,4 +477,11 @@ export default {
|
|
477
477
|
top: 245px;
|
478
478
|
left: 225px;
|
479
479
|
}
|
480
|
+
.card-a-col{
|
481
|
+
background-color: rgba(247, 249, 252);
|
482
|
+
height: 297px;
|
483
|
+
width: auto;
|
484
|
+
border-radius: 6px;
|
485
|
+
border: 1px solid rgba(255, 255, 255, 0.08)
|
486
|
+
}
|
480
487
|
</style>
|