管灌系统农户端微信小程序(嘉峪关应用)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<template name="button">
  <t-button
    t-id="{{tId || ''}}"
    block="{{block || false}}"
    class="{{class || ''}}"
    t-class="{{externalClass}}"
    disabled="{{disabled || false}}"
    data-type="{{type}}"
    data-extra="{{extra}}"
    icon="{{icon || ''}}"
    loading="{{loading || false}}"
    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 || ''}}"
    >{{content}}</t-button
  >
</template>