
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
<view
|
|
class="custom-class {{ classPrefix }} {{ isImageName ? 'van-icon--image' : classPrefix + '-' + name }}"
|
|
style="{{ color ? 'color: ' + color + ';' : '' }}{{ size ? 'font-size: ' + sizeWithUnit + ';' : '' }}{{ customStyle }}"
|
|
bind:tap="onClick"
|
|
>
|
|
<van-info
|
|
wx:if="{{ info !== null || dot }}"
|
|
dot="{{ dot }}"
|
|
info="{{ info }}"
|
|
custom-class="van-icon__info"
|
|
/>
|
|
<image
|
|
wx:if="{{ isImageName }}"
|
|
src="{{ name }}"
|
|
mode="aspectFit"
|
|
class="van-icon__image"
|
|
/>
|
|
</view>
|