Browse Source

感知事件统计、非机预警事件统计,时间组件修改

develop
wangsixiang 3 months ago
parent
commit
2ae81133d6
  1. 19
      ruoyi-ui/src/views/JiHeExpressway/pages/control/manual/events/data.js
  2. 4
      ruoyi-ui/src/views/JiHeExpressway/pages/control/manual/events/index.vue
  3. 14
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/statistics/data.js
  4. 4
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/statistics/index.vue

19
ruoyi-ui/src/views/JiHeExpressway/pages/control/manual/events/data.js

@ -77,14 +77,19 @@ export const searchFormList = [
type: "datePicker",
options: {
style:{width:'100%'},
type: "datetimerange",
format: "yyyy-MM-dd HH:mm:ss",
valueFormat: "yyyy-MM-dd HH:mm:ss",
type: "daterange",
format: "yyyy-MM-dd",
valueFormat: "yyyy-MM-dd",
pickerOptions:{
disabledDate(time) {
return time.getTime() > Date.now() || time.getTime()<new Date(moment().subtract(3, "months").format("YYYY-MM-DD HH:mm:ss"));
},
}
},
default: [
moment().startOf("month").format("YYYY-MM-DD HH:mm:ss"),
moment().format("YYYY-MM-DD HH:mm:ss"),
],
// default: [
// moment().startOf("month").format("YYYY-MM-DD HH:mm:ss"),
// moment().format("YYYY-MM-DD HH:mm:ss"),
// ],
}, {
label: "收费站:",
key: "facilityName",

4
ruoyi-ui/src/views/JiHeExpressway/pages/control/manual/events/index.vue

@ -194,8 +194,8 @@ export default {
firstBtnClick(id) {},
handleSearch(data) {
this.searchData.facilityName = data.facilityName;
this.searchData.startTime = data.warningTime && data.warningTime[0];
this.searchData.completeTime = data.warningTime && data.warningTime[1];
this.searchData.startTime = data.warningTime && data.warningTime[0]+' 00:00:00';
this.searchData.completeTime = data.warningTime && data.warningTime[1]+' 23:59:59';
if(data.warningType){
this.searchData.warningType = data.warningType
} else {

14
ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/statistics/data.js

@ -259,19 +259,19 @@ export const searchFormList = [
type: "datePicker",
options: {
style: "width: auto",
type: "datetimerange",
format: "yyyy-MM-dd HH:mm:ss",
valueFormat: "yyyy-MM-dd HH:mm:ss",
type: "daterange",
format: "yyyy-MM-dd",
valueFormat: "yyyy-MM-dd",
pickerOptions:{
disabledDate(time) {
return time.getTime() > Date.now() || time.getTime()<new Date(moment().subtract(3, "months").format("YYYY-MM-DD HH:mm:ss"));
},
}
},
default: [
moment().startOf("month").format("YYYY-MM-DD HH:mm:ss"),
moment().format("YYYY-MM-DD HH:mm:ss"),
],
// default: [
// moment().startOf("month").format("YYYY-MM-DD HH:mm:ss"),
// moment().format("YYYY-MM-DD HH:mm:ss"),
// ],
},
{
...station,

4
ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/statistics/index.vue

@ -254,9 +254,9 @@ export default {
warningSource: data?.warningSource || '',
direction: data.direction,
auditFlag:data.auditFlag,
startTime: daterange && daterange.length > 0 ? daterange[0] : "",
startTime: daterange && daterange.length > 0 ? (daterange[0]+' 00:00:00') : "",
// endTime: this.activeName != "-1" && daterange && daterange.length > 0 ? daterange[1] : "",
completeTime: daterange && daterange.length > 0 ? daterange[1] : "",
completeTime: daterange && daterange.length > 0 ? (daterange[1]+' 23:59:59'): "",
startStakeMark: stakeMark,
endStakeMark: endStakeMark,
};

Loading…
Cancel
Save