diff --git a/src/assets/images/base/person.png b/src/assets/images/base/person.png new file mode 100644 index 0000000..15fc9a2 Binary files /dev/null and b/src/assets/images/base/person.png differ diff --git a/src/loveflow/assets/reset.less b/src/loveflow/assets/reset.less new file mode 100644 index 0000000..0dfc8bb --- /dev/null +++ b/src/loveflow/assets/reset.less @@ -0,0 +1,165 @@ +.loveflow { + .flexSpaceBetween { + display: flex; + justify-content: space-between; + .searchWrap { + /deep/ .el-input__inner { + color: #fff; + border: 0.1px solid #495e70; + background-color: rgba(0, 0, 0, 0); + } + /deep/ .el-form-item__label { + color: #fff; + } + + .el-button { + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + border: 1px solid#34e1b3; + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } + } + } + .tableWrap { + height: calc(100% - 60px); + } + /deep/ .el-table { + background-color: #233438; + .el-table__header-wrapper { + tr { + color: #fff; + font-weight: 500; + background: linear-gradient(to right, #284f49, #2f6363, #233b38); + th { + background-color: transparent; + } + } + } + .el-table__body { + color: #ffffff; + background-color: #233438; + tr { + color: #ffffff; + background-color: #233438; + } + } + } + .gPagination { + background-color: transparent; + } + /deep/.el-pagination { + .el-pagination__total { + color: #ffffff; + } + .el-pagination__sizes { + .el-input__inner { + background: #3c4b4a; + color: #fff; + } + } + .btn-prev { + background: #3c4b4a; + color: #fff; + } + .btn-next { + background: #3c4b4a; + color: #fff; + } + .el-pager { + .number { + background: #3c4b4a; + color: #fff; + &.active { + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } + } + } + .el-pagination__jump { + color: #fff; + .el-input__inner { + background: #3c4b4a; + color: #fff; + } + } + } + + /deep/.el-dialog { + margin: 10vh auto 10vh !important; + .el-dialog__title { + color: #fff; + text-shadow: 0 0 9px rgba(21, 255, 198, 0.64); + } + + background-image: url("~@/assets/companyFile/dialogBack.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + height: 80vh; + + /* 关闭弹窗叉号 */ + .el-dialog__headerbtn { + .el-dialog__close { + color: #fff; + font-size: 18px; + } + } + .el-dialog__body { + padding: 30px 20px 0; + height: calc(100% - 120px); + } + + .el-button { + width: 70px; + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + color: #34e1b3; + background: url("~@/assets/companyFile/btn05.png") no-repeat !important; + background-size: 100% 100% !important; + } + + .el-form { + padding: 16px 0; + height: 100%; + background: url(/img/242112.6e40adf5.png) no-repeat; + background-size: 100% 100%; + overflow-y: scroll; + &::-webkit-scrollbar { + display: none; + } + .el-form-item { + .el-form-item__label { + color: #fff; + line-height: normal; + } + .el-form-item__content { + .el-textarea__inner, + .el-input__inner { + border-radius: 0px; + border: 0.5px solid; + background: #3c4b4a; + color: #fff; + } + + /* 查询框点击颜色变化 */ + .el-input__inner:focus, + .el-input__inner:hover { + border-color: #1b3736; + } + } + } + } + } +} diff --git a/src/loveflow/components/data/table.vue b/src/loveflow/components/data/table.vue index 56d4ddb..d6e6ea2 100644 --- a/src/loveflow/components/data/table.vue +++ b/src/loveflow/components/data/table.vue @@ -106,6 +106,18 @@ export default { diff --git a/src/loveflow/components/menu/head.vue b/src/loveflow/components/menu/head.vue index 9579a72..36a7191 100644 --- a/src/loveflow/components/menu/head.vue +++ b/src/loveflow/components/menu/head.vue @@ -11,7 +11,6 @@ :default-active="activeIndex" class="el-menu-demo topMenu" mode="horizontal" - @select="handleSelect" :router="true" > @@ -107,7 +114,7 @@ export default { width: { type: String, default: () => { - return "800px"; + return "1000px"; }, }, formItems: { @@ -122,6 +129,24 @@ export default { return "100px"; }, }, + cancelBtn: { + type: Boolean, + default: () => { + return true; + }, + }, + submitBtn: { + type: Boolean, + default: () => { + return true; + }, + }, + closeBtn: { + type: Boolean, + default: () => { + return false; + }, + }, }, data() { return { @@ -186,3 +211,15 @@ export default { watch: {}, }; + diff --git a/src/loveflow/mixins/tableListMixins.js b/src/loveflow/mixins/tableListMixins.js index 9acbf0e..b1c8f3a 100644 --- a/src/loveflow/mixins/tableListMixins.js +++ b/src/loveflow/mixins/tableListMixins.js @@ -49,7 +49,10 @@ export const tableListMixins = { for (let i = 0; i < params.pageSize; i++) { this.dataSource.push({ id: params.pageNo + "_" + i, - name: "当前页:" + params.pageNo, + name: "姓名_" + params.pageNo, + card: "32032119879876321" + i, + phone: "186678879" + i, + cmy: "测试公司名称" + i, }); } //console.log(this.dataSource); diff --git a/src/router/routes/integration.js b/src/router/routes/integration.js index add74f4..88676fe 100644 --- a/src/router/routes/integration.js +++ b/src/router/routes/integration.js @@ -112,62 +112,171 @@ export default [ { path: "/integration/systemManagement/safeIndex", name: "systemManagement", + meta: { + name: "safeIndex", + aside: true, + title: "平安指数", + icon: require("@/assets/companyFile/menu01.png"), + }, component: () => import("@/views/systemManagement/safeIndex"), }, // 企业赋分 { path: "/integration/systemManagement/companyScore", name: "systemManagement", + meta: { + name: "companyScore", + aside: true, + title: "企业赋分", + icon: require("@/assets/companyFile/menu02.png"), + }, component: () => import("@/views/systemManagement/companyScore"), }, // 企业赋分详情 { path: "/integration/systemManagement/companyDetails", - name: "companyDetails", + name: "systemManagement", component: () => import( "@/views/systemManagement/companyScore/components/companyDetails" ), }, - // 关联设备 { - path: "/integration/systemManagement/correlationEquipment", - name: "correlationEquipment", + path: "/integration/systemManagement/correlationEquipment2", + name: "systemManagement", component: () => - import("@/views/systemManagement/correlationEquipment"), + import("@/views/systemManagement/correlationEquipment2"), }, + // 关联设备 { - path: "/integration/systemManagement/correlationEquipment2", - name: "correlationEquipment2", + path: "/integration/systemManagement/correlationEquipment", + name: "systemManagement", + meta: { + name: "correlationEquipment", + aside: true, + title: "关联设备", + icon: require("@/assets/companyFile/menu04.png"), + }, component: () => - import("@/views/systemManagement/correlationEquipment2"), + import("@/views/systemManagement/correlationEquipment"), }, // 企业名单 { path: "/integration/systemManagement/companyList", - name: "companyList", + name: "systemManagement", + meta: { + name: "companyList", + aside: true, + title: "企业名单", + icon: require("@/assets/companyFile/menu03.png"), + }, component: () => import("@/views/systemManagement/companyList"), }, { path: "/integration/systemManagement/floatPopulation", - name: "floatPopulation", + name: "systemManagement", + meta: { + name: "floatPopulation", + aside: true, + title: "流动人口", + icon: require("@/assets/companyFile/menu04.png"), + }, component: () => import("@/views/systemManagement/floatPopulation"), }, { path: "/integration/systemManagement/dangerChemicals", - name: "dangerChemicals", + name: "systemManagement", + meta: { + name: "dangerChemicals", + aside: true, + title: "危化品风险", + icon: require("@/assets/companyFile/menu04.png"), + }, component: () => import("@/views/systemManagement/dangerChemicals"), }, + { + path: "/integration/systemManagement/majorHazard", + name: "systemManagement", + meta: { + name: "majorHazard", + aside: true, + title: "重大危险源", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/majorHazard"), + }, + { + path: "/integration/systemManagement/illegalDishonest", + name: "systemManagement", + meta: { + name: "illegalDishonest", + aside: true, + title: "违法失信企业", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => + import("@/views/systemManagement/illegalDishonest"), + }, + { + path: "/integration/systemManagement/chemicalCar", + name: "systemManagement", + meta: { + name: "chemicalCar", + aside: true, + title: "危化品车辆信息", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/chemicalCar"), + }, + { + path: "/integration/systemManagement/blackList", + name: "systemManagement", + meta: { + name: "blackList", + aside: true, + title: "黑名单信息", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/blackList"), + }, + { + path: "/integration/systemManagement/superviseAlarm", + name: "systemManagement", + meta: { + name: "superviseAlarm", + aside: true, + title: "监管报警信息", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/superviseAlarm"), + }, + { + path: "/integration/systemManagement/sysEnterprise", + name: "systemManagement", + meta: { + name: "sysEnterprise", + aside: true, + title: "系统企业信息", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/sysEnterprise"), + }, + { + path: "/integration/systemManagement/superviseCar", + name: "systemManagement", + meta: { + name: "superviseCar", + aside: true, + title: "车辆监管信息", + icon: require("@/assets/companyFile/menu04.png"), + }, + component: () => import("@/views/systemManagement/superviseCar"), + }, ], }, // 封装演示模块 ...module, - { - path: "/integration/recordManage", - name: "recordManage", - component: () => import("@/views/enterpriseManage/recordManage/index"), - }, ], }, ]; diff --git a/src/views/applySupermarket/businessConsulting/index.vue b/src/views/applySupermarket/businessConsulting/index.vue new file mode 100644 index 0000000..4147064 --- /dev/null +++ b/src/views/applySupermarket/businessConsulting/index.vue @@ -0,0 +1,169 @@ + + + diff --git a/src/views/applySupermarket/index.less b/src/views/applySupermarket/index.less new file mode 100644 index 0000000..f203717 --- /dev/null +++ b/src/views/applySupermarket/index.less @@ -0,0 +1,166 @@ +.enterpriseService { + .flexSpaceBetween { + display: flex; + justify-content: space-between; + .searchWrap { + /deep/ .el-input__inner { + color: #fff; + border: 0.1px solid #495e70; + background-color: rgba(0, 0, 0, 0); + } + /deep/ .el-form-item__label { + color: #fff; + } + + .el-button { + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + border: 1px solid#34e1b3; + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } + } + } + .tableWrap { + height: calc(100% - 60px); + } + /deep/ .el-table { + background-color: #233438; + .el-table__header-wrapper { + tr { + color: #fff; + font-weight: 500; + background: linear-gradient(to right, #284f49, #2f6363, #233b38); + th { + background-color: transparent; + } + } + } + .el-table__body { + color: #ffffff; + background-color: #233438; + tr { + color: #ffffff; + background-color: #233438; + } + } + } + .gPagination { + background-color: transparent; + } + /deep/.el-pagination { + .el-pagination__total { + color: #ffffff; + } + .el-pagination__sizes { + .el-input__inner { + background: #3c4b4a; + color: #fff; + } + } + .btn-prev { + background: #3c4b4a; + color: #fff; + } + .btn-next { + background: #3c4b4a; + color: #fff; + } + .el-pager { + .number { + background: #3c4b4a; + color: #fff; + &.active { + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } + } + } + .el-pagination__jump { + color: #fff; + .el-input__inner { + background: #3c4b4a; + color: #fff; + } + } + } + + /deep/.el-dialog { + margin: 10vh auto 10vh !important; + .el-dialog__title { + color: #fff; + text-shadow: 0 0 9px rgba(21, 255, 198, 0.64); + } + + background-image: url("~@/assets/companyFile/dialogBack.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + //height: 80vh; + + /* 关闭弹窗叉号 */ + .el-dialog__headerbtn { + .el-dialog__close { + color: #fff; + font-size: 18px; + } + } + .el-dialog__body { + padding: 30px 20px 0; + height: calc(100% - 120px); + } + + .el-button { + width: 70px; + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + color: #34e1b3; + background: url("~@/assets/companyFile/btn05.png") no-repeat !important; + background-size: 100% 100% !important; + } + + .el-form { + padding: 16px 0; + height: 100%; + background: url(/img/242112.6e40adf5.png) no-repeat; + background-size: 100% 100%; + overflow-y: scroll; + &::-webkit-scrollbar { + display: none; + } + .el-form-item { + .el-form-item__label { + color: #fff; + line-height: normal; + } + .el-form-item__content { + .el-textarea__inner, + .el-input__inner { + border-radius: 0px; + border: 0.5px solid; + background: #3c4b4a; + color: #fff; + } + + /* 查询框点击颜色变化 */ + .el-input__inner:focus, + .el-input__inner:hover { + border-color: #1b3736; + } + } + } + } + } + } + \ No newline at end of file diff --git a/src/views/applySupermarket/index.vue b/src/views/applySupermarket/index.vue index 71fd846..0216b3c 100644 --- a/src/views/applySupermarket/index.vue +++ b/src/views/applySupermarket/index.vue @@ -6,13 +6,26 @@
>>人员背景审核
-
>>重点岗位资质审查
+
+ >>重点岗位资质审查 +
>>警情通报
>>网络反诈提醒
-
>>企业纠纷提醒
+
+ >>企业纠纷提醒 +
>>企业反馈
+
+ >>业务咨询 +
+
+ >>证照办理 +
+
+ >>法律咨询 +
@@ -70,7 +83,7 @@
企业纠纷提醒
-
+
@@ -79,7 +92,7 @@
业务咨询
-
+
@@ -88,7 +101,7 @@
法律咨询
-
+
@@ -127,6 +140,15 @@
+
+ +
+
+ +
+
+ +
@@ -136,7 +158,10 @@ import PoliceReport from "./policeReport/index"; import Counterfraud from "./counterfraud/index"; import CompanyDispute from "./companyDispute/index"; import CompanyFeedback from "./companyFeedback/index"; -import KeyPerson from "./keyPerson/index" +import KeyPerson from "./keyPerson/index"; +import businessConsulting from "./businessConsulting/index"; +import licenseHandle from "./licenseHandle/index"; +import legalAdvice from "./legalAdvice/index"; export default { name: "ApplySupermarket", components: { @@ -146,6 +171,9 @@ export default { CompanyDispute, CompanyFeedback, KeyPerson, + businessConsulting, + licenseHandle, + legalAdvice, }, data() { return { @@ -163,7 +191,7 @@ export default { }, // 跳转至重点人员审核 key_back_change() { - this.is_flag = '2' + this.is_flag = "2"; }, // 跳转至警情通报 police_back_change() { @@ -175,12 +203,24 @@ export default { }, // 跳转 企业纠纷提醒 dispute_back_change() { - this.is_flag = "6" + this.is_flag = "6"; }, // 跳转 企业反馈 feedback_back_change() { - this.is_flag = '10' - } + this.is_flag = "10"; + }, + //跳转 业务咨询 + gotoBusinessConsulting() { + this.is_flag = "ywzx"; + }, + //跳转 证照办理 + gotoLicenseHandle() { + this.is_flag = "zzbl"; + }, + //跳转 法律咨询 + gotoLegalAdvice() { + this.is_flag = "flzx"; + }, }, }; @@ -724,4 +764,4 @@ export default { .turn { animation: turn 10s linear infinite; } - \ No newline at end of file + diff --git a/src/views/applySupermarket/legalAdvice/index.vue b/src/views/applySupermarket/legalAdvice/index.vue new file mode 100644 index 0000000..2dc79d9 --- /dev/null +++ b/src/views/applySupermarket/legalAdvice/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/applySupermarket/licenseHandle/index.vue b/src/views/applySupermarket/licenseHandle/index.vue new file mode 100644 index 0000000..79b0908 --- /dev/null +++ b/src/views/applySupermarket/licenseHandle/index.vue @@ -0,0 +1,165 @@ + + + diff --git a/src/views/companyCanban/canban.vue b/src/views/companyCanban/canban.vue index d98d882..a4a7e1f 100644 --- a/src/views/companyCanban/canban.vue +++ b/src/views/companyCanban/canban.vue @@ -88,7 +88,7 @@ export default { }, toArchives() { - this.$router.push({ path: '/home/enterpriseRank' }) + this.$router.push({ path: '/integration/enterpriseRank' }) }, toDangan() { diff --git a/src/views/compositeIndex/components/companyNum.vue b/src/views/compositeIndex/components/companyNum.vue index 6eca75d..c9f5079 100644 --- a/src/views/compositeIndex/components/companyNum.vue +++ b/src/views/compositeIndex/components/companyNum.vue @@ -186,7 +186,7 @@ export default { }, turn_item(val) { this.$router.push({ - path: "/home/enterpriseRank", + path: "/integration/enterpriseRank", query: { companyParamName: val }, }); } diff --git a/src/views/enterpriseManage/recordManage/index.vue b/src/views/enterpriseManage/recordManage/index.vue deleted file mode 100644 index b45f678..0000000 --- a/src/views/enterpriseManage/recordManage/index.vue +++ /dev/null @@ -1,151 +0,0 @@ - - - - - diff --git a/src/views/enterpriseRank/index.vue b/src/views/enterpriseRank/index.vue index 0b49164..bed421e 100644 --- a/src/views/enterpriseRank/index.vue +++ b/src/views/enterpriseRank/index.vue @@ -593,7 +593,7 @@ export default { goCanban(val) { sessionStorage.setItem('companyID', val.companyId) this.$router.push({ - path: '/home/companyCanban', + path: '/integration/companyCanban', }) }, handleSizeChange(val) { diff --git a/src/views/safetyIndex/paiming.vue b/src/views/safetyIndex/paiming.vue index d57b36f..83f30d7 100644 --- a/src/views/safetyIndex/paiming.vue +++ b/src/views/safetyIndex/paiming.vue @@ -99,12 +99,12 @@ export default { }) }, goMore() { - this.$router.push({ path: '/home/enterpriseRank' }) + this.$router.push({ path: '/integration/enterpriseRank' }) }, toCanban(val) { sessionStorage.setItem('companyID', val.companyId) this.$router.push({ - path: '/home/companyCanban', + path: '/integration/companyCanban', }) } }, diff --git a/src/views/systemManagement/blackList/index.vue b/src/views/systemManagement/blackList/index.vue new file mode 100644 index 0000000..2b56655 --- /dev/null +++ b/src/views/systemManagement/blackList/index.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/src/views/systemManagement/chemicalCar/index.vue b/src/views/systemManagement/chemicalCar/index.vue new file mode 100644 index 0000000..2ee6781 --- /dev/null +++ b/src/views/systemManagement/chemicalCar/index.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/src/views/systemManagement/companyList/index.vue b/src/views/systemManagement/companyList/index.vue index 113ca22..027d001 100644 --- a/src/views/systemManagement/companyList/index.vue +++ b/src/views/systemManagement/companyList/index.vue @@ -192,7 +192,7 @@ export default { console.log(val, "Val"); sessionStorage.setItem("companyID", val.id); sessionStorage.setItem("companyName", val.companyName); - this.$router.push("/home/archives"); + this.$router.push("/integration/archives"); }, setDefaultImage(e) { // 加载失败默认图片 diff --git a/src/views/systemManagement/companyScore/components/companyTable.vue b/src/views/systemManagement/companyScore/components/companyTable.vue index 74e6e87..31d843f 100644 --- a/src/views/systemManagement/companyScore/components/companyTable.vue +++ b/src/views/systemManagement/companyScore/components/companyTable.vue @@ -154,7 +154,7 @@ export default { val = Object.assign(val, this.jump_params); console.log("jump_val", val); this.$router.push({ - path: "/home/systemManagement/companyDetails", + path: "/integration/systemManagement/companyDetails", query: { params:JSON.stringify(val) }, diff --git a/src/views/systemManagement/dangerChemicals/index.vue b/src/views/systemManagement/dangerChemicals/index.vue index 6c14e5b..c664fd4 100644 --- a/src/views/systemManagement/dangerChemicals/index.vue +++ b/src/views/systemManagement/dangerChemicals/index.vue @@ -3,7 +3,7 @@
- 流动人口 + 危化品风险
@@ -11,10 +11,10 @@
- + @@ -26,7 +26,7 @@
-
+
- + @@ -35,7 +38,39 @@
-
+
+
+ + +
+
+ +
+
+
+
姓名:
+
{{ item.name }}
+
+
+
证件号码:
+
{{ item.card }}
+
+
+
联系电话:
+
{{ item.phone }}
+
+
+
居住地址:
+
{{ item.name }}
+
+
+
详情
+
+
+
+
+
+
+ +
@@ -53,10 +96,16 @@ diff --git a/src/views/systemManagement/illegalDishonest/index.vue b/src/views/systemManagement/illegalDishonest/index.vue new file mode 100644 index 0000000..979520f --- /dev/null +++ b/src/views/systemManagement/illegalDishonest/index.vue @@ -0,0 +1,226 @@ + + + + + diff --git a/src/views/systemManagement/index.less b/src/views/systemManagement/index.less index 4bee167..321068c 100644 --- a/src/views/systemManagement/index.less +++ b/src/views/systemManagement/index.less @@ -19,7 +19,11 @@ } } } +/deep/ .el-card__body { + height: calc(100% - 60px); +} .cardBody { + height: 100%; .search_top { width: 85.2vw; height: 4.3vh; @@ -92,9 +96,27 @@ /deep/ .el-form-item__label { color: #fff; } + + .el-button { + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + border: 1px solid#34e1b3; + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } } } + .tableWrap { + height: calc(100% - 60px); + } /deep/ .el-table { + background-color: #233438; .el-table__header-wrapper { tr { color: #fff; @@ -139,6 +161,10 @@ .number { background: #3c4b4a; color: #fff; + &.active { + background: url("~@/assets/companyFile/2121.png") no-repeat !important; + background-size: 100% 100% !important; + } } } .el-pagination__jump { @@ -149,4 +175,76 @@ } } } + + /deep/.el-dialog { + margin: 10vh auto 10vh !important; + .el-dialog__title { + color: #fff; + text-shadow: 0 0 9px rgba(21, 255, 198, 0.64); + } + + background-image: url("~@/assets/companyFile/dialogBack.png"); + background-size: 100% 100%; + background-repeat: no-repeat; + height: 80vh; + + /* 关闭弹窗叉号 */ + .el-dialog__headerbtn { + .el-dialog__close { + color: #fff; + font-size: 18px; + } + } + .el-dialog__body { + padding: 30px 20px 0; + height: calc(100% - 120px); + } + + .el-button { + width: 70px; + border: 1px solid #4a6072; + color: #fff; + border-radius: 0px !important; + background: #323f43; + } + + .el-button:focus, + .el-button:hover { + color: #34e1b3; + background: url("~@/assets/companyFile/btn05.png") no-repeat !important; + background-size: 100% 100% !important; + } + + .el-form { + padding: 16px 0; + height: 100%; + background: url(/img/242112.6e40adf5.png) no-repeat; + background-size: 100% 100%; + overflow-y: scroll; + &::-webkit-scrollbar { + display: none; + } + .el-form-item { + .el-form-item__label { + color: #fff; + line-height: normal; + } + .el-form-item__content { + .el-textarea__inner, + .el-input__inner { + border-radius: 0px; + border: 0.5px solid; + background: #3c4b4a; + color: #fff; + } + + /* 查询框点击颜色变化 */ + .el-input__inner:focus, + .el-input__inner:hover { + border-color: #1b3736; + } + } + } + } + } } diff --git a/src/views/systemManagement/index.vue b/src/views/systemManagement/index.vue index 8d370c8..898590f 100644 --- a/src/views/systemManagement/index.vue +++ b/src/views/systemManagement/index.vue @@ -3,7 +3,7 @@
- + @@ -15,11 +15,12 @@ + + diff --git a/src/views/systemManagement/superviseAlarm/index.vue b/src/views/systemManagement/superviseAlarm/index.vue new file mode 100644 index 0000000..08ff6f9 --- /dev/null +++ b/src/views/systemManagement/superviseAlarm/index.vue @@ -0,0 +1,317 @@ + + + + + diff --git a/src/views/systemManagement/superviseCar/index.vue b/src/views/systemManagement/superviseCar/index.vue new file mode 100644 index 0000000..75cb604 --- /dev/null +++ b/src/views/systemManagement/superviseCar/index.vue @@ -0,0 +1,1252 @@ + + + + + diff --git a/src/views/systemManagement/sysEnterprise/index.vue b/src/views/systemManagement/sysEnterprise/index.vue new file mode 100644 index 0000000..8570be8 --- /dev/null +++ b/src/views/systemManagement/sysEnterprise/index.vue @@ -0,0 +1,312 @@ + + + + +