riku
2024-07-26 c827d70bd16535e103f4bcdd9f3ed53a5fd324e8
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<wxs src="../common/utils.wxs" module="_" />
 
<view
  style="{{_._style([style, customStyle])}}"
  class="class {{prefix}}-class {{classPrefix}} {{ !bordered || isLastChild ? classPrefix + '--borderless' : ''}} {{classPrefix}}--{{align}}"
  hover-class="{{ hover ? classPrefix + '--hover' : ''}}"
  hover-stay-time="70"
  bind:tap="onClick"
  aria-role="{{ariaRole || (arrow ? 'button' : '')}}"
  aria-label="{{ariaLabel}}"
>
  <view class="{{classPrefix}}__left {{prefix}}-class-left">
    <t-icon
      wx:if="{{ leftIcon }}"
      name="{{leftIcon}}"
      t-class="{{classPrefix}}__left-icon {{prefix}}-class-left-icon"
    />
    <slot name="left-icon" />
    <t-image
      wx:if="{{ image }}"
      shape="round"
      t-class="{{classPrefix}}__left-image {{prefix}}-class-image"
      src="{{ image }}"
    />
    <slot name="image" />
  </view>
  <view class="{{classPrefix}}__title">
    <view class="{{classPrefix}}__title-text  {{prefix}}-class-title">
      <block wx:if="{{ title }}"> {{ title}} </block>
      <slot name="title" />
      <block wx:if="{{required}}">
        <text decode class="{{classPrefix}}--required">&nbsp;*</text>
      </block>
    </view>
 
    <view class="{{classPrefix}}__description {{prefix}}-class-description">
      <view wx:if="{{ description }}" class="{{classPrefix}}__description-text">{{description}}</view>
      <slot name="description" />
    </view>
  </view>
 
  <view class="{{classPrefix}}__note {{prefix}}-class-note">
    <text wx:if="{{ note }}">{{note}}</text>
    <slot name="note" />
  </view>
 
  <view class="{{classPrefix}}__right {{prefix}}-class-right">
    <t-icon
      wx:if="{{ arrow }}"
      name="chevron-right"
      t-class="{{classPrefix}}__right-icon {{prefix}}-class-right-icon"
    />
    <block wx:else>
      <t-icon name="{{rightIcon}}" t-class="{{classPrefix}}__right-icon {{prefix}}-class-right-icon" />
      <slot name="right-icon" />
    </block>
  </view>
</view>