市北党建引领小程序初始化
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.
 

74 lines
2.9 KiB

<view class="demand-detail">
<view class="detail-wr">
<view class="dl-card">
<view class="dl-header">
<view class="dl-title is-require">需求内容</view>
</view>
<view class="dl-wrapper">
<view class="dl-input">
<textarea value="{{info.content}}" bindinput="handleInput" data-name="content" class="input-text"
maxlength="1000" placeholder="请填写信息内容"></textarea>
<view class="input-count">{{ info.content.length }}/1000</view>
</view>
</view>
<view class="dl-cell">
<view class="cell-label">服务事项</view>
<view class="cell-value">{{ categoryName }}</view>
</view>
</view>
<view class="dl-card">
<view class="dl-header">
<view class="dl-title">需求详情</view>
</view>
<view class="dl-cell is-require">
<view class="cell-label">服务时间</view>
<view class="cell-value">
<datetimePicker bind:change="handleTimeChange" bind:columnchange="handleColumnChange">
<view class="cell-picker">
<view wx:if="{{info.wantServiceTime}}" class="">{{info.wantServiceTime}}</view>
<view wx:else class="cell-value-text">请选择时间</view>
<image src="../../images/demand/arrow-right.png" />
</view>
</datetimePicker>
</view>
</view>
<view class="dl-cell is-require">
<view class="cell-label">联系人</view>
<view class="cell-value">
<input value="{{ info.demandUserName}}" bindinput="handleInput" data-name="demandUserName" placeholder="请输入姓名" />
</view>
</view>
<view class="dl-cell is-require">
<view class="cell-label">联系电话</view>
<view class="cell-value">
<input value="{{ info.demandUserMobile}}" bindinput="handleInput" type="number" data-name="demandUserMobile" placeholder="请输入联系电话" />
</view>
</view>
<view class="dl-cell is-require">
<view class="cell-label">服务地点</view>
<view class="cell-value" bind:tap="toughGetLocation">
<view class="cell-picker">
<view wx:if="{{info.serviceLocation}}" class="">{{ info.serviceLocation }}</view>
<view wx:else class="cell-value-text">请选择服务地址</view>
<image src="../../images/demand/arrow-right.png" />
</view>
</view>
</view>
<view class="dl-cell">
<view class="cell-label">门牌号</view>
<view class="cell-value">
<input value="{{ info.locationDetail}}" bindinput="handleInput" data-name="locationDetail" placeholder="例:5号楼202室" />
</view>
</view>
</view>
<view class="detail-footer detail-footer-cr" bind:tap="handleSubmit">
立即预约
</view>
</view>
</view>