From 44dae1108f8bc7134fbbc39a09c581bf3c4e0bb2 Mon Sep 17 00:00:00 2001
From: 13937891274 <kxc0822>
Date: Thu, 04 Aug 2022 16:47:42 +0800
Subject: [PATCH] 数据对接
---
src/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/index.vue | 78 ++++++++++++++++++++++----------------
1 files changed, 45 insertions(+), 33 deletions(-)
diff --git a/src/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/index.vue b/src/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/index.vue
index d7f0a15..3f5a234 100644
--- a/src/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/index.vue
+++ b/src/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/index.vue
@@ -2,7 +2,7 @@
<div class="system-user-container">
<el-card shadow="hover">
<div class="button_Line">
- <div class="button_Left">
+ <div class="button_Left mb15">
<el-button size="default" type="primary" @click="onOpenAdd">
<el-icon>
<Plus />
@@ -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
@@ -104,14 +104,14 @@
import {
ElMessageBox,
ElMessage,
- ElTable,
+ // ElTable,
} from 'element-plus';
import {
Plus,
Delete,
- Upload,
- Download,
- Refresh,
+ // Upload,
+ // Download,
+ // Refresh,
View,
VideoPlay,
EditPen,
@@ -120,7 +120,7 @@
import OpenAdd from '/@/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/component/openAdd.vue';
// import FlowChart from '/@/views/contingencyManagement/emergencyDrill/releaseOfDrillPlan/component/flowChart.vue';
import UpData from '/@/views/contingencyManagement/panManagement/component/upData.vue';
-import { releaseDrillPlanApi } from '/@/api/releaseDrillPlan';
+import { releaseDrillPlanApi } from '/@/api/emergencyDrillPlan';
export default defineComponent({
name: 'systemUser',
@@ -130,9 +130,9 @@
Plus,
View,
Delete,
- Upload,
- Download,
- Refresh,
+ // Upload,
+ // Download,
+ // Refresh,
VideoPlay,
UpData,
// FlowChart,
@@ -143,6 +143,7 @@
pageIndex: 1,
pageSize: 10,
searchParams: {
+ drillName: ''
},
});
// 定义表格数据
@@ -167,10 +168,10 @@
listApi();
});
// 上传
- const upShow=ref()
- const upButton=()=>{
- upShow.value.openDialog()
- }
+ // const upShow=ref()
+ // const upButton=()=>{
+ // upShow.value.openDialog()
+ // }
// 打开新增弹窗
const addRef = ref();
@@ -199,14 +200,16 @@
// flowRef.value.openDialog(row);
// };
// 删除
- const onRowDel = (data: any) => {
+ const onRowDel = (id: number) => {
+ let arr = [];
+ arr.push(id)
ElMessageBox.confirm('确定删除所选项吗?', '提示',{
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
releaseDrillPlanApi()
- .deleteReleaseDrillPlan(data)
+ .deleteReleaseDrillPlan(arr)
.then((res) => {
if (res.data.code == 200) {
ElMessage({
@@ -279,7 +282,7 @@
for (let i = 0; i < valId.length; i++) {
arr.push(valId[i].id);
}
- deletAll.value = arr.toString();
+ deletAll.value = arr;
// console.log(deletAll.value);
if (val.length == 1) {
danger.value = false;
@@ -301,8 +304,8 @@
})
}
return {
- upButton,
- upShow,
+ // upButton,
+ // upShow,
tableData,
// onflowChart,
// flowRef,
@@ -343,6 +346,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