| | |
| | | <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">天数</view> |
| | | <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-val"> |
| | | <input v-model="form.priceNum1" disabled @blur="getPrice" type="number" placeholder="请输入" /> |
| | | <text>天</text> |
| | | <input v-model="form.priceNum1" :disabled="form.carType === 0" @blur="getPrice" type="number" placeholder="请输入" /> |
| | | <text v-if="form.carType === 0">天</text> |
| | | <text v-if="form.carType === 1">小时</text> |
| | | <text v-if="form.carType === 2">斤</text> |
| | | </view> |
| | | </view> |
| | | <view class="list-item-row"> |
| | |
| | | :show="show" |
| | | color="#00BC12" |
| | | mode="range" |
| | | :allowSameDay="true" |
| | | @close="show = false" |
| | | @confirm="confirmDate" /> |
| | | |
| | |
| | | }, |
| | | settlementType: [ |
| | | { name: '按天付费', id: 0 }, |
| | | { name: '按次付费', id: 1 }, |
| | | { name: '按小时付费', id: 1 }, |
| | | { name: '按重量付费', id: 2 } |
| | | ], |
| | | cateList: [], |
| | | viewStatus: false |
| | | viewStatus: false, |
| | | workDays: 0 |
| | | }; |
| | | }, |
| | | onLoad(option) { |
| | |
| | | confirmDate(e) { |
| | | this.form.startDate = e[0] |
| | | this.form.endDate = e[e.length - 1] |
| | | this.form.priceNum1 = e.length; |
| | | let time = this.form.startDate == this.form.endDate ? 1 : 0 |
| | | this.workDays = e.length - time; |
| | | if (this.form.carType === 0) { |
| | | this.form.priceNum1 = e.length - time; |
| | | } |
| | | this.show = false |
| | | this.getPrice() |
| | | }, |
| | |
| | | success: (res) => { |
| | | this.form.lat = res.latitude |
| | | this.form.lgt = res.longitude |
| | | this.form.address = res.address |
| | | this.form.address =res.name || res.address |
| | | } |
| | | }); |
| | | }, |
| | |
| | | this.form.carType = id |
| | | if (id === 0) { |
| | | this.form.priceUnit = '元/人/天' |
| | | this.form.priceNum1 = this.workDays |
| | | } else if (id === 1) { |
| | | this.form.priceUnit = '元/人/小时' |
| | | this.form.priceNum1 = '' |
| | | } else { |
| | | this.form.priceUnit = '元/斤' |
| | | this.form.priceNum1 = '' |
| | | } |
| | | }, |
| | | confirmCategary(e) { |