From f91c24d2b2b513716ffe9f4259a8a343c841bb00 Mon Sep 17 00:00:00 2001
From: 13937891274 <kxc0822>
Date: Sat, 30 Jul 2022 18:10:28 +0800
Subject: [PATCH] 数据对接
---
src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/index.vue | 66 +++++++++++++++++++--------------
1 files changed, 38 insertions(+), 28 deletions(-)
diff --git a/src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/index.vue b/src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/index.vue
index 482392a..d128453 100644
--- a/src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/index.vue
+++ b/src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/index.vue
@@ -1,7 +1,7 @@
<template>
<div class="system-user-container">
<el-card shadow="hover">
- <div class="button_Line">
+ <div class="button_Line mb15">
<div class="button_Left">
<el-button size="default" type="primary" @click="onOpenAdd">
<el-icon>
@@ -15,21 +15,21 @@
</el-button>
</div>
<div class="button_Right">
- <el-button @click="upButton">
- <el-icon>
- <Upload />
- </el-icon>
- </el-button>
- <el-button>
- <el-icon>
- <Download />
- </el-icon>
- </el-button>
- <el-button>
- <el-icon>
- <Refresh />
- </el-icon>
- </el-button>
+<!-- <el-button @click="upButton">-->
+<!-- <el-icon>-->
+<!-- <Upload />-->
+<!-- </el-icon>-->
+<!-- </el-button>-->
+<!-- <el-button>-->
+<!-- <el-icon>-->
+<!-- <Download />-->
+<!-- </el-icon>-->
+<!-- </el-button>-->
+<!-- <el-button>-->
+<!-- <el-icon>-->
+<!-- <Refresh />-->
+<!-- </el-icon>-->
+<!-- </el-button>-->
</div>
</div>
<el-table
@@ -42,7 +42,7 @@
type="selection"
width="55"
/>
- <el-table-column prop="drillPlanId" label="演练名称" show-overflow-tooltip sortable></el-table-column>
+ <el-table-column prop="emergencyPlanName" label="演练名称" show-overflow-tooltip sortable></el-table-column>
<el-table-column prop="drillAddress" label="演练地点" show-overflow-tooltip sortable></el-table-column>
<el-table-column prop="drillWay" label="演练方式" show-overflow-tooltip sortable></el-table-column>
<el-table-column prop="drillLevel" label="演练级别" show-overflow-tooltip sortable></el-table-column>
@@ -85,7 +85,7 @@
</div>
</el-card>
<OpenAdd ref="addRef" @myAdd="onMyAdd"/>
- <upData ref="upShow"></upData>
+<!-- <upData ref="upShow"></upData>-->
</div>
</template>
@@ -105,8 +105,8 @@
import { Plus,
// Edit,
Delete,
- Upload,
- Download,
+ // Upload,
+ // Download,
View,
Refresh,
VideoPause,
@@ -125,8 +125,8 @@
// Edit,
Delete,
View,
- Upload,
- Download,
+ // Upload,
+ // Download,
Refresh,
VideoPause,
UpData
@@ -159,10 +159,10 @@
};
// 上传
- const upShow=ref()
- const upButton=()=>{
- upShow.value.openDialog()
- }
+ // const upShow=ref()
+ // const upButton=()=>{
+ // upShow.value.openDialog()
+ // }
// 打开新增用户弹窗
const addRef = ref();
const onOpenAdd = () => {
@@ -279,8 +279,8 @@
listApi();
});
return {
- upButton,
- upShow,
+ // upButton,
+ // upShow,
tableData,
onOpenAdd, //新增
addRef,
@@ -295,6 +295,7 @@
handleSelectionChange,
danger,
deletAll,
+ onEdit,
};
},
});
@@ -313,6 +314,15 @@
flex-direction: row;
justify-content: space-between;
}
+//表头
+::v-deep .el-table th.el-table__cell {
+ background-color: #f6f7fa;
+ font-weight: 400;
+ color: #909399;
+}
+.el-table .sort-caret.ascending{
+ border-bottom-color: #c0c4cc;
+}
//分页开始
.pages{
display: flex;
--
Gitblit v1.9.2