New Huajishe Check ChaoXing
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<template name="badge">
|
||||
<t-badge
|
||||
color="{{color || ''}}"
|
||||
content="{{content || ''}}"
|
||||
count="{{count || 0}}"
|
||||
dot="{{dot || false}}"
|
||||
max-count="{{maxCount || 99}}"
|
||||
offset="{{offset || []}}"
|
||||
shape="{{shape || 'circle'}}"
|
||||
show-zero="{{showZero || false}}"
|
||||
size="{{size || 'medium'}}"
|
||||
t-class="{{tClass}}"
|
||||
t-class-content="{{tClassContent}}"
|
||||
t-class-count="{{tClassCount}}"
|
||||
/>
|
||||
</template>
|
||||
@@ -0,0 +1,45 @@
|
||||
<template name="button">
|
||||
<t-button
|
||||
t-id="{{tId || ''}}"
|
||||
style="{{style}}"
|
||||
block="{{block || false}}"
|
||||
class="{{rootClass || ''}}"
|
||||
t-class="{{tClass}}"
|
||||
disabled="{{disabled || false}}"
|
||||
data-type="{{type}}"
|
||||
data-extra="{{extra}}"
|
||||
custom-dataset="{{customDataset}}"
|
||||
content="{{content || ''}}"
|
||||
icon="{{icon || ''}}"
|
||||
loading="{{loading || false}}"
|
||||
loading-props="{{loadingProps}}"
|
||||
theme="{{theme || 'default'}}"
|
||||
ghost="{{ghost || false}}"
|
||||
shape="{{shape || 'rectangle'}}"
|
||||
size="{{size || 'medium'}}"
|
||||
variant="{{variant || 'base'}}"
|
||||
open-type="{{openType || ''}}"
|
||||
hover-class="{{hoverClass || ''}}"
|
||||
hover-stop-propagation="{{hoverStopPropagation || false}}"
|
||||
hover-start-time="{{hoverStartTime || 20}}"
|
||||
hover-stay-time="{{hoverStayTime || 70}}"
|
||||
lang="{{lang || 'en'}}"
|
||||
session-from="{{sessionFrom || ''}}"
|
||||
send-message-title="{{sendMessageTitle || ''}}"
|
||||
send-message-path="{{sendMessagePath || ''}}"
|
||||
send-message-img="{{sendMessageImg || ''}}"
|
||||
app-parameter="{{appParameter || ''}}"
|
||||
show-message-card="{{showMessageCard || false}}"
|
||||
bind:tap="onTplButtonTap"
|
||||
bind:getuserinfo="onTplButtonTap"
|
||||
bind:contact="onTplButtonTap"
|
||||
bind:getphonenumber="onTplButtonTap"
|
||||
bind:error="onTplButtonTap"
|
||||
bind:opensetting="onTplButtonTap"
|
||||
bind:launchapp="onTplButtonTap"
|
||||
bind:agreeprivacyauthorization="onTplButtonTap"
|
||||
aria-label="{{ariaLabel || ''}}"
|
||||
>
|
||||
<slot />
|
||||
</t-button>
|
||||
</template>
|
||||
@@ -0,0 +1,14 @@
|
||||
<template name="icon">
|
||||
<t-icon
|
||||
style="{{style || ''}}"
|
||||
t-class="{{tClass}}"
|
||||
prefix="{{prefix || ''}}"
|
||||
name="{{name || ''}}"
|
||||
size="{{size || ''}}"
|
||||
color="{{color || ''}}"
|
||||
aria-hidden="{{ariaHidden || '' }}"
|
||||
aria-label="{{ariaLabel || ''}}"
|
||||
aria-role="{{ariaRole || ''}}"
|
||||
bind:click="{{bindclick || ''}}"
|
||||
/>
|
||||
</template>
|
||||
@@ -0,0 +1,21 @@
|
||||
<template name="image">
|
||||
<t-image
|
||||
t-class="{{tClass}}"
|
||||
t-class-load="{{tClassLoad}}"
|
||||
style="{{style || ''}}"
|
||||
customStyle="{{customStyle || ''}}"
|
||||
height="{{height || ''}}"
|
||||
width="{{width || ''}}"
|
||||
error="{{error || 'default'}}"
|
||||
lazy="{{lazy || false}}"
|
||||
loading="{{count || 'default'}}"
|
||||
shape="{{shape || 'square'}}"
|
||||
src="{{src || ''}}"
|
||||
mode="{{mode || 'scaleToFill'}}"
|
||||
webp="{{webp || false}}"
|
||||
showMenuByLongpress="{{showMenuByLongpress || false}}"
|
||||
data-custom="{{dataset || null}}"
|
||||
bind:error="{{binderror}}"
|
||||
bind:load="{{bindload}}"
|
||||
/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user