Commit 9564fd96 by liucan

feat:添加编号弹窗删除确认框

parent f489d1f8
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
--el-table-text-color: #FFFFFF; --el-table-text-color: #FFFFFF;
} }
// 分段选择器的样式 // 分段选择器的样式
.custom-style .el-segmented { .custom-style .el-segmented {
// 选中选项的背景颜色 // 选中选项的背景颜色
...@@ -91,7 +90,7 @@ ...@@ -91,7 +90,7 @@
// .el-date-editor { // .el-date-editor {
// .el-date-editor { // .el-date-editor {
// color: #ffffff; // color: #ffffff;
// } // }
// } // }
.el-date-editor .el-range-input{ .el-date-editor .el-range-input{
...@@ -115,4 +114,13 @@ ...@@ -115,4 +114,13 @@
background-color: transparent !important; background-color: transparent !important;
padding: 16px; padding: 16px;
/* 保持默认内边距,可按需调整 */ /* 保持默认内边距,可按需调整 */
}
.el-popover {
background-color: #1D5484 !important;
color: white !important;
}
.el-popper__arrow::before{
background-color: #1D5484 !important;
} }
\ No newline at end of file
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</div> </div>
<div class="btn"> <div class="btn">
<el-button :disabled="curSateNo == ''" plain type="primary" @click="addNoToList">添加</el-button> <el-button :disabled="curSateNo == ''" plain type="primary" @click="addNoToList">添加</el-button>
<el-popconfirm title="确定删除选中编号吗?" width="200"> <el-popconfirm title="确定删除选中编号吗?" width="200" style="background-color: pink">
<template #reference> <template #reference>
<el-button :disabled="curSelSateNo.length === 0" plain type="danger">删除</el-button> <el-button :disabled="curSelSateNo.length === 0" plain type="danger">删除</el-button>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment