jufubao-mall 2.0.20-beta11 → 2.0.20-beta12
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
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
<view
|
|
53
53
|
:style="[sub.category_id === (['child','parentNew'].includes(showType)? uiPid:uiCateId )?subActTitleIcon:subTitleIcon,subTitleInIcon]"
|
|
54
54
|
class="sub_icon"
|
|
55
|
+
:class="{parentNew: showType === 'parentNew'}"
|
|
55
56
|
>
|
|
56
57
|
<view>
|
|
57
58
|
<image :src="sub.category_icon" style="width:100%;height:100%"/>
|
|
@@ -541,11 +542,13 @@ export default {
|
|
|
541
542
|
& > view {
|
|
542
543
|
width: 100%;
|
|
543
544
|
height: 100%;
|
|
544
|
-
border: 2rpx solid #fff;
|
|
545
545
|
border-radius: var(--sub-icon-w-radius);
|
|
546
546
|
overflow: hidden;
|
|
547
547
|
box-sizing: border-box;
|
|
548
548
|
}
|
|
549
|
+
&.parentNew > view {
|
|
550
|
+
border: 2rpx solid #fff;
|
|
551
|
+
}
|
|
549
552
|
}
|
|
550
553
|
|
|
551
554
|
.sub_name {
|