购物车添加文字

This commit is contained in:
huangdeliang 2021-03-12 18:59:50 +08:00
parent ac7ae33142
commit 80ac974977

View File

@ -21,7 +21,7 @@
<div class="title_style"> <div class="title_style">
<span>{{ plan.label }}</span> <span>{{ plan.label }}</span>
<em <em
class="el-icon-shopping-cart-full icon_style" class="el-icon-shopping-cart-full icon_style shopping_cart"
@click="(e) => handleOnShoppingPlanClick(e, plan)" @click="(e) => handleOnShoppingPlanClick(e, plan)"
/> />
</div> </div>
@ -155,6 +155,16 @@ export default {
font-size: 16px; font-size: 16px;
padding: 4px 8px; padding: 4px 8px;
} }
.shopping_cart {
display: flex;
align-items: center;
&::after {
margin-left: 2px;
content: "采购";
font-size: 12px;
}
}
} }
} }
} }