Files
doodle-mini/miniprogram/toy/icon/icon.wxml
T
2026-04-07 17:23:05 +08:00

11 lines
442 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<view
wx:if="{{isImage}}"
class="{{rootClassName}} custom-class ext-class"
style="{{rootStyle}}">
<image src="{{name}}" mode="aspectFit" class="toy-icon-root__image" />
</view>
<!-- 字体图标:内层 text 承载 iconfont::before),外层 view 负责布局与 externalClass -->
<view wx:else class="{{rootClassName}} custom-class ext-class" style="{{rootStyle}}">
<text class="{{fontGlyphClass}}"></text>
</view>