Commit 8e1f314b authored by 刘怀志's avatar 刘怀志

修改bug

parent 87ec0b2c
...@@ -23,7 +23,7 @@ export function analyzeList(params) { ...@@ -23,7 +23,7 @@ export function analyzeList(params) {
params params
}) })
} }
// 过车图回放查询接口 // 过车图回放查询接口
export function queryPassNumber(params) { export function queryPassNumber(params) {
return request({ return request({
url: '/business/analyze/queryPassNumber', url: '/business/analyze/queryPassNumber',
...@@ -31,7 +31,7 @@ export function queryPassNumber(params) { ...@@ -31,7 +31,7 @@ export function queryPassNumber(params) {
params params
}) })
} }
// 过车图回放二级页面图片查询接口 // 过车图回放二级页面图片查询接口
export function queryPassPicture(params) { export function queryPassPicture(params) {
return request({ return request({
url: '/business/analyze/queryPassPicture', url: '/business/analyze/queryPassPicture',
......
...@@ -107,6 +107,20 @@ export const constantRoutes = [ ...@@ -107,6 +107,20 @@ export const constantRoutes = [
} }
] ]
}, },
{
path: '/comprehensiveQueryIframe',
component: LayoutIframe,
redirect: '/ comprehensiveQueryIframe/index',
hidden: true,
children: [
{
path: 'index',
component: () => import('@/views/ comprehensiveQuery'),
name: ' ComprehensiveQueryIframe',
meta: { title: '综合查询', icon: 'dashboard' }
}
]
},
{ {
path: '/dataStatistics', path: '/dataStatistics',
component: Layout, component: Layout,
...@@ -120,6 +134,20 @@ export const constantRoutes = [ ...@@ -120,6 +134,20 @@ export const constantRoutes = [
} }
] ]
}, },
{
path: '/dataStatisticsIframe',
component: LayoutIframe,
redirect: '/ dataStatisticsIframe/index',
hidden: true,
children: [
{
path: 'index',
component: () => import('@/views/dataStatistics'),
name: ' DataStatisticsIframe',
meta: { title: '统计功能', icon: 'dashboard' }
}
]
},
{ {
path: '/storageManagement', path: '/storageManagement',
component: Layout, component: Layout,
...@@ -174,7 +202,7 @@ export const constantRoutes = [ ...@@ -174,7 +202,7 @@ export const constantRoutes = [
} }
] ]
}, },
// 图回放 // 图回放
{ {
path: '/picturePlayback', path: '/picturePlayback',
component: Layout, component: Layout,
...@@ -184,7 +212,22 @@ export const constantRoutes = [ ...@@ -184,7 +212,22 @@ export const constantRoutes = [
path: 'index', path: 'index',
component: () => import('@/views/picturePlayback'), component: () => import('@/views/picturePlayback'),
name: 'PicturePlayback', name: 'PicturePlayback',
meta: { title: '图片回放', icon: 'dashboard' } meta: { title: '图像回放', icon: 'dashboard' }
}
]
},
// 图像回放
{
path: '/picturePlaybackIframe',
component: LayoutIframe,
redirect: '/picturePlaybackIframe/index',
hidden: true,
children: [
{
path: 'index',
component: () => import('@/views/picturePlayback'),
name: 'picturePlaybackIframe',
meta: { title: '图像回放', icon: 'dashboard' }
} }
] ]
}, },
......
...@@ -56,9 +56,9 @@ ...@@ -56,9 +56,9 @@
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="车牌筛选" prop="licensePlateNumber"> <!-- <el-form-item label="车牌筛选" prop="licensePlateNumber">-->
<el-input v-model="queryParams.licensePlateNumber" clearable placeholder="请输入车牌号" /> <!-- <el-input v-model="queryParams.licensePlateNumber" clearable placeholder="请输入车牌号" />-->
</el-form-item> <!-- </el-form-item>-->
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button> <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
<!-- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>--> <!-- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>-->
...@@ -104,8 +104,8 @@ ...@@ -104,8 +104,8 @@
style="margin-bottom: unset !important;" style="margin-bottom: unset !important;"
@pagination="getList" @pagination="getList"
/> />
<!-- 图回放弹窗--> <!-- 图回放弹窗-->
<el-dialog title="图回放" :visible.sync="open" width="680px" append-to-body :close-on-click-modal="false" @close="closeDialog"> <el-dialog title="图回放" :visible.sync="open" width="680px" append-to-body :close-on-click-modal="false" @close="closeDialog">
<el-form ref="picForm" label-position="right" label-width="70px" :model="picForm" :inline="true"> <el-form ref="picForm" label-position="right" label-width="70px" :model="picForm" :inline="true">
<el-form-item label="车身颜色" prop="colour"> <el-form-item label="车身颜色" prop="colour">
<el-select <el-select
...@@ -236,8 +236,8 @@ export default { ...@@ -236,8 +236,8 @@ export default {
}, },
}, },
picList: [], // 图片列表 picList: [], // 图片列表
picForm: {}, // 图回放弹出框筛选项 picForm: {}, // 图回放弹出框筛选项
open: false, // 图回放弹窗标识位 open: false, // 图回放弹窗标识位
crossNameOption: [], // 路口选项 crossNameOption: [], // 路口选项
deptIdsOptions: [ deptIdsOptions: [
{ {
...@@ -382,7 +382,7 @@ export default { ...@@ -382,7 +382,7 @@ export default {
}) })
}) })
}, },
/** 关闭图回放回调*/ /** 关闭图回放回调*/
closeDialog() { closeDialog() {
this.picForm ={} this.picForm ={}
this.selectedWindow = 'four' this.selectedWindow = 'four'
......
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