| | |
| | | <view class="list-item-row" @click="show = true"> |
| | | <view class="list-item-row-label">用工时间<b>*</b></view> |
| | | <view class="list-item-row-val"> |
| | | <text>{{form.startDate ? form.startDate + ' 至 ' + form.endDate + ' (' + form.priceNum1 + '天) ' : '请选择'}}</text> |
| | | <text>{{form.startDate ? form.startDate + ' 至 ' + form.endDate + ' (' + workDays + '天) ' : '请选择'}}</text> |
| | | <u-icon name="arrow-right" color="#111111" size="16"></u-icon> |
| | | </view> |
| | | </view> |
| | |
| | | <view :class="form.carType === item.id ? 'list-item-cate-item active' : 'list-item-cate-item'" v-for="(item, index) in settlementType" :key="index" @click="clickType(item.id)">{{item.name}}</view> |
| | | </view> |
| | | <view class="list-item-row"> |
| | | <view class="list-item-row-label" v-if="form.carType === 0">天数</view> |
| | | <view class="list-item-row-label" v-if="form.carType === 1">小时数</view> |
| | | <view class="list-item-row-label" v-if="form.carType === 2">重量</view> |
| | | <view class="list-item-row-label" v-if="form.carType === 0">用工天数</view> |
| | | <view class="list-item-row-label" v-if="form.carType === 1">工作时长<b>*</b></view> |
| | | <view class="list-item-row-label" v-if="form.carType === 2">包装重量<b>*</b></view> |
| | | <view class="list-item-row-val"> |
| | | <input v-model="form.priceNum1" :disabled="form.carType === 0" @blur="getPrice" type="number" placeholder="请输入" /> |
| | | <text v-if="form.carType === 0">天</text> |
| | |
| | | </view> |
| | | </view> |
| | | <view class="footer-bottom"> |
| | | <div class="footer-bottom-btn" @click="submit"> |
| | | <text>立即下单</text> |
| | | <text>(服务完成后付款)</text> |
| | | <div class="footer-bottom-btn" @click="submit" > |
| | | <text>{{form.id?'确认修改':'立即下单'}}</text> |
| | | <text v-if="!form.id">(服务完成后付款)</text> |
| | | </div> |
| | | </view> |
| | | <view style="width: 100%; height: env(safe-area-inset-bottom);"></view> |
| | |
| | | this.form.lgt = option.longitude |
| | | this.form.location = option.address |
| | | this.form.workType = option.workType |
| | | this.form.days = option.days |
| | | this.workDays = option.days |
| | | } |
| | | this.getCateList() |
| | | }, |
| | |
| | | if (!this.form.categoryId) { |
| | | return uni.showToast({ title: '请选择分拣品种', icon: 'none' }) |
| | | } |
| | | if (this.form.carType !=0 && !this.form.priceNum1) { |
| | | var t = this.form.carType ==1?"工作时长":"包装重量" |
| | | return uni.showToast({ title: '请输入'+t, icon: 'none' }) |
| | | } |
| | | if (!this.form.priceNum2) { |
| | | return uni.showToast({ title: '请输入用工数量', icon: 'none' }) |
| | | } |
| | | if (!this.form.price) { |
| | | return uni.showToast({ title: '请输入费用标准', icon: 'none' }) |
| | | } |
| | | } |
| | | if (!this.form.linkPhone) { |
| | | return uni.showToast({ title: '请输入联系电话', icon: 'none' }) |
| | | } |