14 lines
1.2 KiB
Text
14 lines
1.2 KiB
Text
|
|
<view class="container">
|
||
|
|
<view class="form">
|
||
|
|
<t-input label="分销金额" placeholder="请输入分销金额" suffix="元" type="digit" align="right" model:value="{{price}}" />
|
||
|
|
<t-cell title="分销类型" hover note="{{buy_type || '请选择分销类型'}}" arrow bindtap="handleAction" />
|
||
|
|
<t-cell title="付款有效期" hover note="{{expireDate || '请选择付款有效期'}}" arrow bindtap="showPicker" />
|
||
|
|
<!-- <t-input label="分销类型" placeholder="请选择分销类型" align="right" value="{{buy_type}}" bindtap="handleAction" readonly /> -->
|
||
|
|
<!-- <t-input label="付款有效期" placeholder="请选择付款有效期" align="right" value="{{expireDate}}" bindtap="showPicker" readonly /> -->
|
||
|
|
</view>
|
||
|
|
<view class="footer">
|
||
|
|
<t-button theme="primary" open-type="share" block catchtap="share">分享</t-button>
|
||
|
|
</view>
|
||
|
|
<t-action-sheet id="t-action-sheet" usingCustomNavbar bind:selected="handleSelected" />
|
||
|
|
<t-date-time-picker auto-close title="选择日期" visible="{{dateVisible}}" mode="date" default-value="{{expireDate}}" format="YYYY-MM-DD" start="{{start}}" end="{{end}}" filter="{{filter}}" popup-props="{{popupProps}}" bind:confirm="onConfirm" bind:close="onClose" />
|
||
|
|
</view>
|