askbot-dragon 0.7.36 → 0.7.39
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
|
@@ -37,13 +37,15 @@
|
|
|
37
37
|
<p>
|
|
38
38
|
<i class="iconfont guoran-miaoshu"></i>
|
|
39
39
|
<section class="description">
|
|
40
|
-
<section class="img-view" v-if="imgList.length
|
|
41
|
-
<template v-for="(item,index) in imgList">
|
|
42
|
-
<img :src="item" alt="" :key="index"
|
|
40
|
+
<section class="img-view" v-if="imgList.length != 0">
|
|
41
|
+
<template v-for="(item, index) in imgList">
|
|
42
|
+
<img :src="item" alt="" :key="index" />
|
|
43
43
|
</template>
|
|
44
44
|
</section>
|
|
45
|
+
<span>{{
|
|
46
|
+
dataDetails.description ? dataDetails.description : "--"
|
|
47
|
+
}}</span>
|
|
45
48
|
</section>
|
|
46
|
-
<b>{{ dataDetails.description ? dataDetails.description : "--" }}</b>
|
|
47
49
|
</p>
|
|
48
50
|
<p>
|
|
49
51
|
<i class="arsenal_icon arsenalweizhi"></i>
|
|
@@ -176,7 +178,7 @@ export default {
|
|
|
176
178
|
.asset {
|
|
177
179
|
width: 100%;
|
|
178
180
|
box-sizing: border-box;
|
|
179
|
-
padding:
|
|
181
|
+
padding-right: 15px;
|
|
180
182
|
}
|
|
181
183
|
.asset-details {
|
|
182
184
|
width: 100%;
|
|
@@ -215,7 +217,7 @@ export default {
|
|
|
215
217
|
}
|
|
216
218
|
.details-content {
|
|
217
219
|
width: 100%;
|
|
218
|
-
height: 85px;
|
|
220
|
+
min-height: 85px;
|
|
219
221
|
box-sizing: border-box;
|
|
220
222
|
padding: 15px 15px;
|
|
221
223
|
display: flex;
|
|
@@ -227,7 +229,7 @@ export default {
|
|
|
227
229
|
}
|
|
228
230
|
.background-null {
|
|
229
231
|
width: 51px;
|
|
230
|
-
height: 51px;
|
|
232
|
+
min-height: 51px;
|
|
231
233
|
background: #366aff;
|
|
232
234
|
border-radius: 51px;
|
|
233
235
|
line-height: 51px;
|
|
@@ -303,7 +305,7 @@ export default {
|
|
|
303
305
|
}
|
|
304
306
|
}
|
|
305
307
|
.description {
|
|
306
|
-
max-width:
|
|
308
|
+
max-width: 95%;
|
|
307
309
|
.img-view {
|
|
308
310
|
width: 100%;
|
|
309
311
|
display: flex;
|