13 lines
622 B
Plaintext
13 lines
622 B
Plaintext
|
|
<t-cell arrow note="{{label}}" hover bind:click="onShowPicker">
|
||
|
|
<view slot="title" class="custom-label">选择账户</view>
|
||
|
|
</t-cell>
|
||
|
|
<t-picker visible="{{visible}}" value="{{value}}" title="选择账户" cancelBtn="取消" confirmBtn="确认"
|
||
|
|
bindconfirm="onPickerConfirm" bindcancel="onPickerCancel">
|
||
|
|
<t-picker-item options="{{list}}">
|
||
|
|
<block wx:for="{{list}}" wx:key="index" wx:for-item="option">
|
||
|
|
<view wx:if="{{option.tag}}" slot="label-suffix--{{index}}" class="label-suffix">
|
||
|
|
<t-tag size="small" theme="primary">{{option.tag}}</t-tag>
|
||
|
|
</view>
|
||
|
|
</block>
|
||
|
|
</t-picker-item>
|
||
|
|
</t-picker>
|