2026-03-07 22:58:43 +08:00
|
|
|
|
<!-- components/icon/icon.wxml -->
|
|
|
|
|
|
<view class="icon icon-{{name}} {{customClass}}" style="width: {{size}}rpx; height: {{size}}rpx; {{customStyle}}">
|
2026-03-18 17:01:26 +08:00
|
|
|
|
<!-- 优先 iconfont,其次 SVG dataUrl,最后兜底 name 文本 -->
|
|
|
|
|
|
<text
|
|
|
|
|
|
wx:if="{{fontGlyph}}"
|
|
|
|
|
|
class="iconfont"
|
|
|
|
|
|
style="font-size: {{size}}rpx; line-height: {{size}}rpx; color: {{color}};"
|
|
|
|
|
|
>{{fontGlyph}}</text>
|
|
|
|
|
|
<image wx:elif="{{svgData}}" class="icon-image" src="{{svgData}}" mode="aspectFit" style="width: {{size}}rpx; height: {{size}}rpx;" />
|
2026-03-07 22:58:43 +08:00
|
|
|
|
<text wx:else class="icon-text">{{name}}</text>
|
|
|
|
|
|
</view>
|