865118801@qq.com 3 years ago
parent
commit
8a9f190b83
  1. 36
      pages/stampingRecordList/stampingRecordList.vue

36
pages/stampingRecordList/stampingRecordList.vue

@ -26,8 +26,7 @@
</view> </view>
<view class="card-up-list"> <view class="card-up-list">
<view class="card-up-list-list"> <view class="card-up-list-list">
<view>生产时间:</view><text <view>生产时间:</view><text>{{item.production}}{{item.week}}</text>
>{{item.production}}{{item.week}}</text>
</view> </view>
</view> </view>
<view class="card-dow-list"> <view class="card-dow-list">
@ -136,7 +135,7 @@
jurisdiction: [], jurisdiction: [],
todays: '', todays: '',
todayTime: '', todayTime: '',
timeArea:'' timeArea: ''
}; };
}, },
methods: { methods: {
@ -153,12 +152,10 @@
day >= 0 && day <= 9 ? (day = "0" + day) : ""; day >= 0 && day <= 9 ? (day = "0" + day) : "";
var timer = year + '-' + month + '-' + day + '\xa0' + hour + ':' + minute + ':' + second; var timer = year + '-' + month + '-' + day + '\xa0' + hour + ':' + minute + ':' + second;
this.todays = year + '-' + month + '-' + day this.todays = year + '-' + month + '-' + day
this.todayTime=year + '-' + month + '-' + day + '\xa0' + hour + ':' + minute + ':' + second; this.todayTime = year + '-' + month + '-' + day + '\xa0' + hour + ':' + minute + ':' + second;
this.timeAreaBb=this.todays+ '\xa0' + '07:45:00' this.timeAreaBb = this.todays + '\xa0' + '07:45:00'
this.timeAreaYb=this.todays+ '\xa0' + '19:45:00' this.timeAreaYb = this.todays + '\xa0' + '19:45:00'
console.log("当前时间", this.todayTime)
console.log("夜班时间", this.timeAreaYb)
console.log("白班时间", this.timeAreaBb)
return timer; return timer;
}, },
@ -183,8 +180,12 @@
this.froms.status = e.target.value + 1 this.froms.status = e.target.value + 1
}, },
openLine(plan_id, item) { openLine(plan_id, item) {
console.log("夜班时间", this.timeAreaYb)
console.log("当前时间", this.todayTime)
//console.log("", this.timeAreaBb)
this.getTime() this.getTime()
if( moment(this.timeAreaYb) < moment(this.todayTime)){ if (!moment(this.timeAreaYb).isBefore(moment(this.todayTime))) {
this.$functions.error("夜班时间大于当前时间"); this.$functions.error("夜班时间大于当前时间");
return false; return false;
} }
@ -192,15 +193,14 @@
this.$functions.error("已开线,请勿重复操作"); this.$functions.error("已开线,请勿重复操作");
return false; return false;
} }
if(item.frequency==0 && moment(this.timeAreaYb)>moment(this.todayTime)){ if (item.frequency == 0 && moment(this.timeAreaYb) > moment(this.todayTime)) {
this.$functions.error("未到开线时间,夜班请于当天晚上七点四十五分后操作"); this.$functions.error("未到开线时间,夜班请于当天晚上七点四十五分后操作");
return false; return false;
} }
if(item.frequency==1 && moment(this.todayTime)>moment(this.timeAreaBb)){ if (item.frequency == 1 && moment(this.todayTime) > moment(this.timeAreaBb)) {
this.$functions.error("未到开线时间,白班请于当天早上七点四十五后操作"); this.$functions.error("未到开线时间,白班请于当天早上七点四十五后操作");
return false; return false;
} } else {
else {
openLine({ openLine({
id: plan_id id: plan_id
}).then(res => { }).then(res => {
@ -227,14 +227,14 @@
} else { } else {
item.tr = ""; item.tr = "";
} }
if(moment(item.production) <= moment(this.todays)){ if (moment(item.production) <= moment(this.todays)) {
item.today=true item.today = true
} else { } else {
item.today = false item.today = false
} }
}) })
console.log("记录列表",this.list) console.log("记录列表", this.list)
}) })
}, },
stopLine(item) { stopLine(item) {

Loading…
Cancel
Save