20 lines
511 B
Plaintext
20 lines
511 B
Plaintext
<!-- components/chenghao-tag/chenghao-tag.wxml -->
|
|
<view
|
|
class="tag-root {{shapeClass}} {{animationClass}}"
|
|
style="width: {{width}}rpx; height: {{height}}rpx; {{bgStyle}}"
|
|
>
|
|
<!-- 背景图(如果有) -->
|
|
<image
|
|
wx:if="{{imageUrl}}"
|
|
class="tag-bg-image"
|
|
src="{{imageUrl}}"
|
|
mode="aspectFill"
|
|
binderror="onImageError"
|
|
></image>
|
|
|
|
<!-- 文字层 -->
|
|
<text
|
|
class="tag-text"
|
|
style="color: {{textColor}}; font-size: {{textSize}}rpx;"
|
|
>{{mingcheng}}</text>
|
|
</view> |