You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.8 KiB
31 lines
1.8 KiB
<!--subpages/heart/pages/groupBuyPublish/groupBuyPublish.wxml-->
|
|
<view class="my-apply">
|
|
<view class="content">
|
|
<view class="apply-item">
|
|
<view class="item-title">标题</view>
|
|
<input type="text" class="item-content" placeholder="请输入标题" value="{{dataForm.groupBuyTitle}}" bindinput="onInputGroupBuyTitle"></input>
|
|
</view>
|
|
<view class="apply-item">
|
|
<view class="item-title">团购时间</view>
|
|
<view class="select-time" bindtap="selectTime">{{dataForm.groupBuyTime||'请选择时间'}}</view>
|
|
</view>
|
|
<view class="apply-item">
|
|
<view class="item-title" style="margin-top:20rpx">内容</view>
|
|
<textarea class="item-content text-content" maxlength="500" placeholder="请描述团购内容" value="{{dataForm.groupBuyContent}}" bindinput="onInputContent"><span class="text-length">{{dataForm.groupBuyContent.length}}/500</span></textarea>
|
|
</view>
|
|
<view class="apply-item">
|
|
<view class="item-title">联系电话</view>
|
|
<input type="text" class="item-content" maxlength="20" placeholder="请输入联系电话" value="{{dataForm.groupBuyMobile}}" bindinput="onInputGroupBuyMobile"></input>
|
|
</view>
|
|
</view>
|
|
<view class="submit" bindtap="submitApply">
|
|
<image class="submit-bk" src="../../images/submit-bk.png" />
|
|
<view class="submit-text">发布</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{showPicker}}">
|
|
<date-time-picker bind:cancel="pickerCancel" bind:confirm="pickerConfirm" init-time="{{dataForm.groupBuyTime}}"></date-time-picker>
|
|
</view>
|
|
|
|
<notice bind:close="closeDialog" bind:confirm="confirmDialog" dialogVisible="{{dialogVisible}}" title="发布成功" content="" confirmText="知道了"></notice>
|
|
|