|
@@ -15,7 +15,7 @@
|
|
|
:show="show"
|
|
|
:date="defaultDate"
|
|
|
:show-month="false"
|
|
|
- toText="取车"
|
|
|
+ :toText="$t('取车')"
|
|
|
:show-header="false"
|
|
|
mode="date"
|
|
|
@change="onChange"
|
|
@@ -27,7 +27,7 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="time-wrap">
|
|
|
- <view class="picker-text">取车时间</view>
|
|
|
+ <view class="picker-text">{{ $t('取车时间') }}</view>
|
|
|
<view class="flex-row flex-between">
|
|
|
<picker-view
|
|
|
:value="[startH,startM]"
|
|
@@ -37,13 +37,13 @@
|
|
|
<picker-view-column>
|
|
|
<view v-for="(item, index) in hours" :key="index" class="item-picker">
|
|
|
{{ item }}
|
|
|
- <text class="unit">时</text>
|
|
|
+ <text class="unit">{{ $t('时小') }}</text>
|
|
|
</view>
|
|
|
</picker-view-column>
|
|
|
<picker-view-column>
|
|
|
<view v-for="(item, index) in minutes" :key="index" class="item-picker">
|
|
|
{{ item }}
|
|
|
- <text class="unit">分</text>
|
|
|
+ <text class="unit">{{ $t('分') }}</text>
|
|
|
</view>
|
|
|
</picker-view-column>
|
|
|
</picker-view>
|
|
@@ -51,8 +51,8 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="bottom-row">
|
|
|
- <view class="text">{{ '取车:'+startDay }}</view>
|
|
|
- <button :loading="isPaickerLoading" class="custom-button" @tap="navToHireCar" >确定</button>
|
|
|
+ <view class="text">{{ $t('取车小')+':'+startDay }}</view>
|
|
|
+ <button :loading="isPaickerLoading" class="custom-button" @tap="navToHireCar" >{{ $t('确定') }}</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-popup>
|
|
@@ -126,7 +126,6 @@
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.bindTime()
|
|
|
this.time = this.isNextDay?common.getToDay(1):common.getToDay()
|
|
|
//#ifdef MP-ALIPAY
|
|
|
let _startH = this.startH< 10&&this.startH!== '00' ? '0' + this.startH : this.startH
|
|
@@ -142,7 +141,7 @@
|
|
|
// #endif
|
|
|
this.startDate = this.time+'T'+_startH+':'+_startM
|
|
|
const DATE = new Date()
|
|
|
- this.curMonth = `${DATE.getFullYear()}年${DATE.getMonth()+1}月`
|
|
|
+ this.curMonth = `${DATE.getFullYear()}`+'-'+`${DATE.getMonth()+1}`
|
|
|
this.startDay = common.formatDate(this.time)+' '+_startH+':'+_startM
|
|
|
this.endDate = common.loadAugmentTime(this.duration_unit,this.startDate,this.startN+1)
|
|
|
this.endDay = common.formatTimeDate(this.endDate)
|
|
@@ -167,7 +166,7 @@
|
|
|
|
|
|
this.startH = +hour;
|
|
|
this.startM = +minute;
|
|
|
- this.curMonth = `${year}年${month}月`;
|
|
|
+ this.curMonth = `${year}`+'-'+`${month}`;
|
|
|
this.startDay = result.takeCar;
|
|
|
this.defaultDate = result.dateText;
|
|
|
},
|
|
@@ -203,29 +202,13 @@
|
|
|
this.$refs.uniCalendar && this.$refs.uniCalendar.next()
|
|
|
}
|
|
|
const { nowDate } = this.$refs.uniCalendar
|
|
|
- this.curMonth = `${nowDate.year}年${nowDate.month}月`
|
|
|
+ this.curMonth = `${nowDate.year}`+'-'+`${nowDate.month}`
|
|
|
}
|
|
|
},
|
|
|
nextMonth() {
|
|
|
this.$refs.uniCalendar && this.$refs.uniCalendar.next()
|
|
|
const { nowDate } = this.$refs.uniCalendar
|
|
|
- this.curMonth = `${nowDate.year}年${nowDate.month}月`
|
|
|
- },
|
|
|
- bindTime() {
|
|
|
- if (this.rentalUnit == '小时') {
|
|
|
- for (let i = 1; i < 25; i++) {
|
|
|
- this.number.push(i);
|
|
|
- }
|
|
|
- } else if (this.rentalUnit == '天') {
|
|
|
- for (let i = 1; i < 31; i++) {
|
|
|
- this.number.push(i);
|
|
|
- }
|
|
|
- } else if (this.rentalUnit == '周') {
|
|
|
- for (let i = 1; i < 5; i++) {
|
|
|
- this.number.push(i);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
+ this.curMonth = `${nowDate.year}`+'-'+`${nowDate.month}`
|
|
|
},
|
|
|
|
|
|
onChange(e) {
|