| | |
| | | </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 === 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> |
| | |
| | | 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' }) |
| | | } |