检测设备,自定义页面颜色
parent
f7c5550bb1
commit
915a926816
Binary file not shown.
After Width: | Height: | Size: 553 KiB |
@ -1,132 +1,184 @@
|
||||
import Vue from 'vue'
|
||||
import VueRouter from 'vue-router'
|
||||
import Vue from "vue";
|
||||
import VueRouter from "vue-router";
|
||||
|
||||
Vue.use(VueRouter)
|
||||
Vue.use(VueRouter);
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
redirect: '/stritl'
|
||||
},
|
||||
{
|
||||
path: '/',
|
||||
component: () => import(/* webpackChunkName: "home" */ '../components/common/Home.vue'),
|
||||
meta: { title: '首页' },
|
||||
path: "/",
|
||||
redirect: "/stritl",
|
||||
},
|
||||
{
|
||||
path: "/",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "home" */ "../components/common/Home.vue"),
|
||||
meta: { title: "首页" },
|
||||
children: [
|
||||
{
|
||||
path: '/stritl',
|
||||
component: () => import(/* webpackChunkName: "dashboard" */ '../views/stritl/index.vue'),
|
||||
meta: {
|
||||
title: '系统首页',
|
||||
icon: 'el-icon-s-home',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/realTimeMonitor',
|
||||
component: () => import(/* webpackChunkName: "icon" */ '../views/realTimeMonitor/index.vue'),
|
||||
meta: {
|
||||
title: '实时监控',
|
||||
permission: true,
|
||||
icon: 'el-icon-camera',
|
||||
},
|
||||
},
|
||||
{
|
||||
path: '/pictureRotation',
|
||||
component: () => import(/* webpackChunkName: "table" */ '../views/pictureRotation/index.vue'),
|
||||
meta: {
|
||||
title: '图片轮巡',
|
||||
permission: true,
|
||||
icon: 'el-icon-film',
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/videoMonitor',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/videoMonitor/index.vue'),
|
||||
meta: { title: '监控视频', icon: 'el-icon-video-camera', }
|
||||
},
|
||||
{
|
||||
path: '/videoHistory',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/videoMonitor/videoHistory.vue'),
|
||||
meta: { title: '视频回放', icon: 'el-icon-video-camera' }
|
||||
},
|
||||
{
|
||||
path: '/photoAlarm',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/alarmHandling/index.vue'),
|
||||
meta: { title: '告警处理', icon: 'el-icon-bell', }
|
||||
},
|
||||
|
||||
{
|
||||
path: '/lineInformation',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/userEquipment/lineInformation/index.vue'),
|
||||
meta: { title: '线路信息管理', icon: '', }
|
||||
},
|
||||
{
|
||||
path: '/groupInformation',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/userEquipment/groupInformation/index.vue'),
|
||||
meta: { title: '分组信息管理', icon: '', }
|
||||
},
|
||||
{
|
||||
path: '/towerInformation',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/userEquipment/towerInformation/index.vue'),
|
||||
meta: { title: '杆塔信息管理', icon: '', }
|
||||
},
|
||||
{
|
||||
path: '/towerTeam',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/userEquipment/towerTeam/index.vue'),
|
||||
meta: { title: '杆塔班组用户', icon: '', }
|
||||
},
|
||||
{
|
||||
path: "/stritl",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "dashboard" */ "../views/stritl/index.vue"
|
||||
),
|
||||
meta: {
|
||||
title: "系统首页",
|
||||
icon: "el-icon-s-home",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/realTimeMonitor",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "icon" */ "../views/realTimeMonitor/index.vue"
|
||||
),
|
||||
meta: {
|
||||
title: "实时监控",
|
||||
permission: true,
|
||||
icon: "el-icon-camera",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/pictureRotation",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "table" */ "../views/pictureRotation/index.vue"
|
||||
),
|
||||
meta: {
|
||||
title: "图片轮巡",
|
||||
permission: true,
|
||||
icon: "el-icon-film",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/videoMonitor",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/videoMonitor/index.vue"
|
||||
),
|
||||
meta: { title: "监控视频", icon: "el-icon-video-camera" },
|
||||
},
|
||||
{
|
||||
path: "/videoHistory",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/videoMonitor/videoHistory.vue"
|
||||
),
|
||||
meta: { title: "视频回放", icon: "el-icon-video-camera" },
|
||||
},
|
||||
{
|
||||
path: "/photoAlarm",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/alarmHandling/index.vue"
|
||||
),
|
||||
meta: { title: "告警处理", icon: "el-icon-bell" },
|
||||
},
|
||||
|
||||
{
|
||||
path: '/deviceVisualization',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/monitoringEquipment/deviceVisualization/index.vue'),
|
||||
meta: { title: '装置分布可视化', icon: '', }
|
||||
},
|
||||
{
|
||||
path: '/photographicDevice',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/monitoringEquipment/photographicDevice/index.vue'),
|
||||
meta: { title: '拍照装置管理', icon: '', }
|
||||
},
|
||||
{
|
||||
path: '/SIMCard',
|
||||
component: () => import(/* webpackChunkName: "tabs" */ '../views/management/monitoringEquipment/SIMCard/index.vue'),
|
||||
meta: { title: 'SIM卡管理', icon: '', }
|
||||
},
|
||||
|
||||
{
|
||||
// 权限页面
|
||||
path: '/permission',
|
||||
component: () => import(/* webpackChunkName: "permission" */ '../views/Permission.vue'),
|
||||
meta: { title: '权限测试', permission: true, icon: 'el-icon-setting', }
|
||||
},
|
||||
{
|
||||
path: '/404',
|
||||
component: () => import(/* webpackChunkName: "404" */ '../views/404.vue'),
|
||||
meta: { title: '404' }
|
||||
},
|
||||
{
|
||||
path: '/403',
|
||||
component: () => import(/* webpackChunkName: "403" */ '../views/403.vue'),
|
||||
meta: { title: '403' }
|
||||
},
|
||||
{
|
||||
path: "/lineInformation",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/userEquipment/lineInformation/index.vue"
|
||||
),
|
||||
meta: { title: "线路信息管理", icon: "" },
|
||||
},
|
||||
{
|
||||
path: "/groupInformation",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/userEquipment/groupInformation/index.vue"
|
||||
),
|
||||
meta: { title: "分组信息管理", icon: "" },
|
||||
},
|
||||
{
|
||||
path: "/towerInformation",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/userEquipment/towerInformation/index.vue"
|
||||
),
|
||||
meta: { title: "杆塔信息管理", icon: "" },
|
||||
},
|
||||
{
|
||||
path: "/towerTeam",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/userEquipment/towerTeam/index.vue"
|
||||
),
|
||||
meta: { title: "杆塔班组用户", icon: "" },
|
||||
},
|
||||
|
||||
{
|
||||
path: "/deviceVisualization",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/monitoringEquipment/deviceVisualization/index.vue"
|
||||
),
|
||||
meta: { title: "装置分布可视化", icon: "" },
|
||||
},
|
||||
{
|
||||
path: "/photographicDevice",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/monitoringEquipment/photographicDevice/index.vue"
|
||||
),
|
||||
meta: { title: "拍照装置管理", icon: "" },
|
||||
},
|
||||
{
|
||||
path: "/SIMCard",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "tabs" */ "../views/management/monitoringEquipment/SIMCard/index.vue"
|
||||
),
|
||||
meta: { title: "SIM卡管理", icon: "" },
|
||||
},
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/login',
|
||||
component: () => import(/* webpackChunkName: "login" */ '../views/Login.vue'),
|
||||
meta: { title: '登录' }
|
||||
},
|
||||
{
|
||||
path: '*',
|
||||
redirect: '/404'
|
||||
}
|
||||
]
|
||||
{
|
||||
// 权限页面
|
||||
path: "/permission",
|
||||
component: () =>
|
||||
import(
|
||||
/* webpackChunkName: "permission" */ "../views/Permission.vue"
|
||||
),
|
||||
meta: { title: "权限测试", permission: true, icon: "el-icon-setting" },
|
||||
},
|
||||
{
|
||||
path: "/404",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "404" */ "../views/404.vue"),
|
||||
meta: { title: "404" },
|
||||
},
|
||||
{
|
||||
path: "/403",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "403" */ "../views/403.vue"),
|
||||
meta: { title: "403" },
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/login",
|
||||
component: () =>
|
||||
import(/* webpackChunkName: "login" */ "../views/Login.vue"),
|
||||
meta: { title: "登录" },
|
||||
},
|
||||
{
|
||||
path: "*",
|
||||
redirect: "/404",
|
||||
},
|
||||
];
|
||||
|
||||
const router = new VueRouter({
|
||||
mode: 'history',
|
||||
mode: "history",
|
||||
base: process.env.BASE_URL,
|
||||
routes
|
||||
})
|
||||
|
||||
export default router
|
||||
routes,
|
||||
});
|
||||
/**
|
||||
* 重写 router.prototype.push 避免同时跳转相同路径报错
|
||||
*/
|
||||
const originalPush = VueRouter.prototype.push;
|
||||
VueRouter.prototype.push = function push(location, onResolve, onReject) {
|
||||
if (onResolve || onReject)
|
||||
return originalPush.call(this, location, onResolve, onReject);
|
||||
return originalPush.call(this, location).catch((err) => err);
|
||||
};
|
||||
export default router;
|
||||
|
@ -1,17 +1,21 @@
|
||||
import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import Vue from "vue";
|
||||
import Vuex from "vuex";
|
||||
|
||||
Vue.use(Vuex)
|
||||
Vue.use(Vuex);
|
||||
|
||||
export default new Vuex.Store({
|
||||
state: {
|
||||
//用户登录token 存储
|
||||
token: localStorage.getItem("token") ? localStorage.getItem("token") : "",
|
||||
},
|
||||
getters: {
|
||||
},
|
||||
getters: {},
|
||||
mutations: {
|
||||
//修改token 并将token存入localstorage
|
||||
setToken(state, user) {
|
||||
state.token = user.token;
|
||||
localStorage.setItem("token", user.token);
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
},
|
||||
modules: {
|
||||
}
|
||||
})
|
||||
actions: {},
|
||||
modules: {},
|
||||
});
|
||||
|
@ -1,12 +1,153 @@
|
||||
<template>
|
||||
<div>SIM卡管理</div>
|
||||
<div class="simCardcontain">
|
||||
<div class="simBtnGroup">
|
||||
<el-button type="primary">新增</el-button>
|
||||
<el-button type="primary">修改</el-button>
|
||||
<el-button type="primary">删除</el-button>
|
||||
<el-button type="primary">查询</el-button>
|
||||
<el-button type="primary">质保延期</el-button>
|
||||
<el-button type="primary">导入</el-button>
|
||||
<el-button type="primary">导入模板下载</el-button>
|
||||
<el-button type="primary">导出</el-button>
|
||||
</div>
|
||||
<div class="searchForm">
|
||||
<el-form :inline="true" :model="formInline" class="demo-form-inline">
|
||||
<el-form-item label="单位:">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="网络类型:">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态:">
|
||||
<el-input v-model="formInline.user" placeholder="审批人"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否已使用">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="电话号码:">
|
||||
<el-input v-model="formInline.user" placeholder="审批人"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="simTable">
|
||||
<el-table
|
||||
ref="multipleTable"
|
||||
:data="tableData"
|
||||
tooltip-effect="dark"
|
||||
style="width: 100%"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="index" width="55"> </el-table-column>
|
||||
<el-table-column type="selection" width="55"> </el-table-column>
|
||||
<el-table-column label="单位">
|
||||
<template slot-scope="scope">{{ scope.row.date }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="name" label="电话号码"> </el-table-column>
|
||||
<el-table-column prop="address" label="网络类型" show-overflow-tooltip>
|
||||
</el-table-column>
|
||||
<el-table-column prop="name" label="质保到期日"> </el-table-column>
|
||||
<el-table-column prop="name" label="流量包(M)"> </el-table-column>
|
||||
<el-table-column prop="name" label="告警阀值(%)"> </el-table-column>
|
||||
<el-table-column prop="name" label="状态"> </el-table-column>
|
||||
<el-table-column prop="name" label="是否已使用"> </el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {};
|
||||
}
|
||||
data() {
|
||||
return {
|
||||
formInline: {
|
||||
user: "",
|
||||
region: "",
|
||||
},
|
||||
tableData: [
|
||||
{
|
||||
date: "2016-05-03",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-02",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-04",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-01",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-08",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-06",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-07",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
],
|
||||
multipleSelection: [],
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onSubmit() {
|
||||
console.log("submit!");
|
||||
},
|
||||
toggleSelection(rows) {
|
||||
if (rows) {
|
||||
rows.forEach((row) => {
|
||||
this.$refs.multipleTable.toggleRowSelection(row);
|
||||
});
|
||||
} else {
|
||||
this.$refs.multipleTable.clearSelection();
|
||||
}
|
||||
},
|
||||
handleSelectionChange(val) {
|
||||
this.multipleSelection = val;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
</style>
|
||||
.simCardcontain {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: @color-white;
|
||||
.simBtnGroup {
|
||||
padding: 16px 8px;
|
||||
}
|
||||
.searchForm {
|
||||
padding: 0px 8px;
|
||||
.el-form {
|
||||
.el-form-item {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.simTable {
|
||||
padding: 16px 8px 0 8px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@ -1,12 +1,153 @@
|
||||
<template>
|
||||
<div>拍照装置管理</div>
|
||||
<div class="photoGraphicDevice">
|
||||
<div class="photoGraphicBtnGroup">
|
||||
<el-button type="primary">新增</el-button>
|
||||
<el-button type="primary">修改</el-button>
|
||||
<el-button type="primary">删除</el-button>
|
||||
<el-button type="primary">查询</el-button>
|
||||
<el-button type="primary">质保延期</el-button>
|
||||
<el-button type="primary">导入</el-button>
|
||||
<el-button type="primary">导入模板下载</el-button>
|
||||
<el-button type="primary">导出</el-button>
|
||||
</div>
|
||||
<div class="searchForm">
|
||||
<el-form :inline="true" :model="formInline" class="demo-form-inline">
|
||||
<el-form-item label="单位:">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="网络类型:">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态:">
|
||||
<el-input v-model="formInline.user" placeholder="审批人"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否已使用">
|
||||
<el-select v-model="formInline.region" placeholder="活动区域">
|
||||
<el-option label="区域一" value="shanghai"></el-option>
|
||||
<el-option label="区域二" value="beijing"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="电话号码:">
|
||||
<el-input v-model="formInline.user" placeholder="审批人"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="photoGraphicTable">
|
||||
<el-table
|
||||
ref="multipleTable"
|
||||
:data="tableData"
|
||||
tooltip-effect="dark"
|
||||
style="width: 100%"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="index" width="55"> </el-table-column>
|
||||
<el-table-column type="selection" width="55"> </el-table-column>
|
||||
<el-table-column label="单位">
|
||||
<template slot-scope="scope">{{ scope.row.date }}</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="name" label="电话号码"> </el-table-column>
|
||||
<el-table-column prop="address" label="网络类型" show-overflow-tooltip>
|
||||
</el-table-column>
|
||||
<el-table-column prop="name" label="质保到期日"> </el-table-column>
|
||||
<el-table-column prop="name" label="流量包(M)"> </el-table-column>
|
||||
<el-table-column prop="name" label="告警阀值(%)"> </el-table-column>
|
||||
<el-table-column prop="name" label="状态"> </el-table-column>
|
||||
<el-table-column prop="name" label="是否已使用"> </el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {};
|
||||
}
|
||||
data() {
|
||||
return {
|
||||
formInline: {
|
||||
user: "",
|
||||
region: "",
|
||||
},
|
||||
tableData: [
|
||||
{
|
||||
date: "2016-05-03",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-02",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-04",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-01",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-08",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-06",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
{
|
||||
date: "2016-05-07",
|
||||
name: "王小虎",
|
||||
address: "上海市普陀区金沙江路 1518 弄",
|
||||
},
|
||||
],
|
||||
multipleSelection: [],
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onSubmit() {
|
||||
console.log("submit!");
|
||||
},
|
||||
toggleSelection(rows) {
|
||||
if (rows) {
|
||||
rows.forEach((row) => {
|
||||
this.$refs.multipleTable.toggleRowSelection(row);
|
||||
});
|
||||
} else {
|
||||
this.$refs.multipleTable.clearSelection();
|
||||
}
|
||||
},
|
||||
handleSelectionChange(val) {
|
||||
this.multipleSelection = val;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="less">
|
||||
</style>
|
||||
.photoGraphicDevice {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: @color-white;
|
||||
.photoGraphicBtnGroup {
|
||||
padding: 16px 8px;
|
||||
}
|
||||
.searchForm {
|
||||
padding: 0px 8px;
|
||||
.el-form {
|
||||
.el-form-item {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.photoGraphicTable {
|
||||
padding: 16px 8px 0 8px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue