Files
FreeERP.Applet/miniprogram/pages/components/select-plugin/select-plugin.wxml

31 lines
719 B
Plaintext
Raw Normal View History

<view style="display: contents" bindtap="click">
<slot/>
</view>
<popup-plugin visible="{{visible}}" bind:close="close" title="{{title}}">
<view>
<t-radio-group
wx:if="{{mode == 'single'}}"
bind:change="radioChange"
allow-uncheck
value="{{val}}"
options="{{options}}"
/>
<t-checkbox-group wx:else value="{{val}}" bind:change="checkboxChange">
<t-checkbox
wx:for="{{options}}"
icon="rectangle"
wx:key="index"
value="{{item.value}}"
>{{item.label}}
</t-checkbox>
</t-checkbox-group>
</view>
<view class="footer">
<t-button size="small" theme="primary" bindtap="ok">确定</t-button>
</view>
</popup-plugin>