Commit 6a1ce0fb authored by xxx's avatar xxx

1

parent ef49b68e
...@@ -54,12 +54,17 @@ ...@@ -54,12 +54,17 @@
<div class="aiAnalysisViews"> <div class="aiAnalysisViews">
<div class="aiAnalysisViews_Title">智能AI分析</div> <div class="aiAnalysisViews_Title">智能AI分析</div>
<div style="margin:1vh 0px 0px 0vw;"> <div style="margin:1vh 0px 0px 0vw;">
<el-radio-group v-model="aiTabPosition"> <el-radio-group v-model="aiTabPosition" @change="aiTabPositionFn">
<el-radio-button label="今天">今天</el-radio-button> <el-radio-button label="今天">今天</el-radio-button>
<el-radio-button label="近7天">近7天</el-radio-button> <el-radio-button label="近7天">近7天</el-radio-button>
<el-radio-button label="近30天">近30天</el-radio-button> <el-radio-button label="近30天">近30天</el-radio-button>
</el-radio-group> </el-radio-group>
</div> </div>
<div class="aiAnalysisViews_1">
<span>AI报警总数:23</span><span style="margin-left:30px;">处理数:10</span>
</div>
<div class="aiAnalysisViews_1">处理率:10/23*100%</div>
<div></div>
</div> </div>
</el-container> </el-container>
...@@ -294,6 +299,9 @@ export default { ...@@ -294,6 +299,9 @@ export default {
} }
} }
},
aiTabPositionFn(){
console.log(this.aiTabPosition);
} }
}, },
// 销毁 // 销毁
...@@ -422,7 +430,12 @@ export default { ...@@ -422,7 +430,12 @@ export default {
box-sizing: border-box; box-sizing: border-box;
} }
.aiAnalysisViews_Title{ .aiAnalysisViews_Title{
font-size: 22px; font-size: 24px;
font-weight: 600;
}
.aiAnalysisViews_1{
margin-top: 1vh;
font-size: 18px;
font-weight: 600; font-weight: 600;
} }
</style> </style>
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheDayQueryDay({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheYearQueryYear({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheDayQueryDay({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheYearQueryYear({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheDayQueryDay({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -79,8 +79,12 @@ export default { ...@@ -79,8 +79,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheYearQueryYear({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheDayQueryDay(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheDayQueryDay({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheMonthQueryMonth({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
...@@ -78,8 +78,12 @@ export default { ...@@ -78,8 +78,12 @@ export default {
HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => { HttpReq.truckDispatching.apiManmadesCheYearQueryYear(param).then((res) => {
if(res.code == 200){ if(res.code == 200){
this.loading = false; this.loading = false;
this.tableData = res.data.content; this.tableData = res.data;
this.total = res.data.totalElements; }
})
HttpReq.truckDispatching.apiManmadesCheYearQueryYear({createTime:param.createTime,size:9999}).then((res) => {
if(res.code == 200){
this.total = res.data.length;
} }
}) })
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment