2026-07-07 16:38:13 +08:00
|
|
|
|
<view class="page">
|
|
|
|
|
|
<view class="section-title">发布闲置</view>
|
|
|
|
|
|
<view class="card">
|
|
|
|
|
|
<input class="input" placeholder="标题" data-field="title" bindinput="onFieldInput" />
|
|
|
|
|
|
<input class="input" placeholder="价格(元)" type="digit" bindinput="onPriceInput" />
|
|
|
|
|
|
<input class="input" placeholder="分类" data-field="category" bindinput="onFieldInput" />
|
|
|
|
|
|
<input class="input" placeholder="联系电话" data-field="contactPhone" bindinput="onFieldInput" />
|
|
|
|
|
|
<radio-group bindchange="onTradeMethodChange">
|
|
|
|
|
|
<label class="radio"><radio value="FACE_TO_FACE" checked="{{form.tradeMethod === 'FACE_TO_FACE'}}" />面交</label>
|
|
|
|
|
|
<label class="radio"><radio value="DELIVERY" checked="{{form.tradeMethod === 'DELIVERY'}}" />可配送</label>
|
|
|
|
|
|
</radio-group>
|
|
|
|
|
|
<input class="input" placeholder="图片 URL,多个用英文逗号分隔" value="{{imageText}}" bindinput="onImageInput" />
|
|
|
|
|
|
<textarea class="textarea" placeholder="描述" data-field="description" bindinput="onFieldInput" />
|
|
|
|
|
|
<button class="primary" loading="{{submitting}}" bindtap="submit">提交审核</button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|