jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/ImageIcon/index.axml

19 lines
441 B
Plaintext
Raw Normal View History

2024-12-01 11:56:54 +00:00
<import-sjs
from="./index.sjs"
name="helper"
></import-sjs>
2024-11-10 07:01:22 +00:00
<view class="ant-imageIcon {{className ? className : ''}}">
2024-12-01 11:56:54 +00:00
<icon
a:if="{{helper.isIcon(image)}}"
type="{{image}}"
className="{{className ? className + '-icon' : ''}}"
style="{{style}}"
></icon>
<image
a:else
src="{{image}}"
class="{{className ? className + '-image' : ''}}"
style="{{style || ''}}"
mode="aspectFit"
></image>
</view>