diff --git a/src/App.vue b/src/App.vue
index 161c711..36c1f6c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -66,6 +66,10 @@
display: none;
}
+.el-table::before {
+ display: none;
+}
+
.bottomZS {
position: absolute;
width: 100%;
@@ -106,6 +110,12 @@
border: 1px solid rgba(40, 132, 126, 1);
}
+ .el-pagination.is-background .el-pager li:not(.disabled).active {
+ background-color: rgba(64, 158, 255, 0);
+ color: #ccc;
+ border: 1px solid #76EAE4;
+ }
+
.btn-prev {
margin: 0 5px;
background-color: rgba(255, 255, 255, 0);
diff --git a/src/api/archives/index.js b/src/api/archives/index.js
index f23b641..29dc5cc 100644
--- a/src/api/archives/index.js
+++ b/src/api/archives/index.js
@@ -39,4 +39,12 @@ export function warningDisposal(params) {
params
})
}
+//预警处置
+export function tbSafeCompanyVehicle(params) {
+ return request({
+ url: '/safety/enterpriseArchives/tbSafeCompanyVehicle',
+ method: 'get',
+ params
+ })
+}
diff --git a/src/assets/archives/列表9910.png b/src/assets/archives/列表9910.png
new file mode 100644
index 0000000..1c5511f
Binary files /dev/null and b/src/assets/archives/列表9910.png differ
diff --git a/src/views/archives/car.vue b/src/views/archives/car.vue
new file mode 100644
index 0000000..c017b8f
--- /dev/null
+++ b/src/views/archives/car.vue
@@ -0,0 +1,259 @@
+
+
+
+
+ 车辆信息({{ total }})
+
+
+
+
+
+ 搜索
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/archives/index.vue b/src/views/archives/index.vue
index 7cddbf9..703b8be 100644
--- a/src/views/archives/index.vue
+++ b/src/views/archives/index.vue
@@ -170,6 +170,7 @@
+
@@ -181,11 +182,13 @@ import { safeIndex } from '@/api/archives'
import monitor from './monitor.vue'
import kakou from './kakou.vue'
import yujing from './yujing.vue'
+import car from './car.vue'
export default {
components: {
monitor,
kakou,
yujing,
+ car
},
data() {
return {
diff --git a/src/views/archives/yujing.vue b/src/views/archives/yujing.vue
index f648490..87a8a9e 100644
--- a/src/views/archives/yujing.vue
+++ b/src/views/archives/yujing.vue
@@ -7,18 +7,26 @@
-
+ :header-row-style="tableHeaderColor" :header-cell-style="tableHeaderCellColor">
+
-
+
+
+
+
-
+
-
+
-
+
-
+
+
+
@@ -78,12 +86,15 @@ export default {
if ((rowIndex + 1) % 2 == 1) {
return { 'background': 'rgba(0,0,0,0)', 'color': '#fff', 'border': '0' }
} else {
- return { 'background': '#3D5566', 'border': '0' }
+ return { 'background': 'rgba(61, 85, 102, 0.16)', 'border': '0', 'color': '#fff' }
}
},
tableHeaderColor() {
- //{'background-image': 'linear-gradient(90deg, #263958 0%, #375683 17%, #22324A 100%)'}
- return { 'background-image': 'linear-gradient(90deg, #182436 0%, #1A3760 50%, #182436 100%)', 'color': '#fff' }
+ return { 'background': 'linear-gradient( rgba(38, 88, 76, 0.6) 100%, rgba(55, 131, 128, 0.6) 100%, rgba(34, 74, 53, 0.46) 46%)' }
+ // return { 'background': 'url("~@/assets/archives/列表9910.png") no-repeat;', 'background-size': '100% 100%;', 'color': '#fff' }
+ },
+ tableHeaderCellColor() {
+ return { 'background': 'rgba(0,0,0,0)', 'border': '0', 'color': '#fff' }
},
handleSizeChange(val) {
console.log(`每页 ${val} 条`);
@@ -103,7 +114,7 @@ export default {