This commit is contained in:
sjl
2025-03-17 13:17:12 +08:00
parent 0d2f8a7788
commit 630eb48d28
7 changed files with 49 additions and 15 deletions

View File

@@ -30,5 +30,7 @@ export const deletePqErrSys = (params: string[]) => {
return http.post(`/pqErrSys/delete`, params)
}
//复制误差体系
export const copyPqErrSys = (params: ErrorSystem.ErrorSystemList) => {
return http.get(`/pqErrSys/copy?id=${params.id}`)
}

View File

@@ -9,7 +9,8 @@ export const HOME_URL: string = "/home/index";
export const LOGIN_URL: string = "/login";
// 默认主题颜色
export const DEFAULT_PRIMARY: string = "#003078";
//export const DEFAULT_PRIMARY: string = "#003078";
export const DEFAULT_PRIMARY: string = "#526ADE";
// 路由白名单地址(本地存在的路由 staticRouter.ts 中)
export const ROUTER_WHITE_LIST: string[] = ["/500"];

View File

@@ -39,7 +39,9 @@
}
.el-menu-item:hover {
color: #fff; //一级导航划过颜色
background-color: #5274a5 !important; //一级导航划过背景色
//background-color: #5274a5 !important; //一级导航划过背景色
background-color: #7588e5 !important;
}
.el-sub-menu__hide-arrow {
width: 65px;
@@ -47,7 +49,9 @@
}
.el-menu-item.is-active {
color: #fff !important; //一级导航文字选中颜色
background-color: #5274a5 !important; //一级导航选中背景色
//background-color: #5274a5 !important; //一级导航选中背景色
background-color: #7588e5 !important;
border-bottom: 0 !important;
}
.el-sub-menu__title {
@@ -67,7 +71,9 @@
color: #fff !important; //二级导航文字选中颜色
// background-color: var(--el-color-primary) !important;
// background-color: #5274a5 !important;//二级导航选中背景色
background-color: #5274a5 !important;
background-color: #7588e5 !important;
border-bottom-color: var(--el-color-primary) !important;
}
}

View File

@@ -30,7 +30,7 @@
</el-dropdown-menu>
</template>
</el-dropdown>
<p style="margin: 0;">
<p style="margin: 0;" >
<a href="http://www.shining-electric.com/" target="_blank">
2024 © 南京灿能电力自动化股份有限公司
</a>
@@ -117,10 +117,11 @@ const handelOpen = async (item: string) => {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
text-align: right;
line-height: 40px;
a {
color: #fff;
margin-right: 25px; // 增加右边距
}
}
}

View File

@@ -33,14 +33,19 @@ const handleClickMenu = (subItem: Menu.MenuOptions) => {
// color: var(--el-menu-hover-text-color) !important;
// background-color: transparent !important;
color: #fff !important;//一级导航文字选中颜色
background-color: #5274a5 !important; //一级导航选中背景色
//background-color: #5274a5 !important; //一级导航选中背景色
background-color: #7588e5 !important;
}
.el-menu--collapse {
.is-active {
.el-sub-menu__title {
color: #ffffff !important;
// background-color: var(--el-color-primary) !important;
background-color: #5274a5 !important;
//background-color: #5274a5 !important;
background-color: #7588e5 !important;
border-bottom: 0 !important;
}
}
@@ -53,7 +58,9 @@ const handleClickMenu = (subItem: Menu.MenuOptions) => {
// color: var(--el-menu-active-color) !important;
// background-color: var(--el-menu-active-bg-color) !important;
color: #fff !important;//一级导航文字选中颜色
background-color: #5274a5 !important; //一级导航选中背景色
//background-color: #5274a5 !important; //一级导航选中背景色
background-color: #7588e5 !important;
&::before {
position: absolute;
top: 0;

View File

@@ -65,5 +65,6 @@ const setupAll = async () => {
//挂载app
setupAll().then(() => {
app.mount('#app')
})

View File

@@ -16,6 +16,7 @@
<!-- 表格操作 -->
<template #operation='scope'>
<el-button v-auth.device="'view'" type='primary' link :icon='View' @click="openDialog('view', scope.row)">查看</el-button>
<el-button v-auth.device="'view'" type='primary' link :icon='View' @click="copy(scope.row)">复制</el-button>
<el-button v-auth.device="'edit'" type='primary' link :icon='EditPen' @click="openDialog('edit', scope.row)">编辑</el-button>
<el-button v-auth.device="'delete'" type='primary' link :icon='Delete' @click='handleDelete(scope.row)'>删除</el-button>
</template>
@@ -36,7 +37,8 @@ import ErrorSystemPopup from '@/views/machine/errorSystem/components/errorSystem
import ErrorStandardPopup from '@/views/machine/errorSystem/components/errorStandardPopup.vue'
import type { ErrorSystem } from '@/api/device/interface/error'
import { useDictStore } from '@/stores/modules/dict'
import { getPqErrSysList, deletePqErrSys} from '@/api/device/error/index'
import { getPqErrSysList, deletePqErrSys,copyPqErrSys} from '@/api/device/error/index'
import { ElMessageBox } from 'element-plus'
defineOptions({
name: 'errorSystem'
})
@@ -71,7 +73,7 @@ const columns = ref<ColumnProps<ErrorSystem.ErrorSystemList>[]>([
search: { el: 'select', props: { filterable: true } },
fieldNames: { label: 'name', value: 'id' },
},
{ prop: 'operation', label: '操作', fixed: 'right' ,width: 250,},
{ prop: 'operation', label: '操作', fixed: 'right' ,width: 300,},
])
// 打开 drawer(新增、编辑)
@@ -86,19 +88,33 @@ const openDialog = (titleType: string, row: Partial<ErrorSystem.ErrorSystemList>
}
// 批量删除设备
// 批量误差体系
const batchDelete = async (id: string[]) => {
await useHandleData(deletePqErrSys, id, '删除所选误差体系')
proTable.value?.clearSelection()
proTable.value?.getTableList()
}
// 删除设备
// 删除误差体系
const handleDelete = async (params: ErrorSystem.ErrorSystemList) => {
await useHandleData(deletePqErrSys, [params.id], `删除【${params.name}】误差体系`)
proTable.value?.getTableList()
}
// 复制误差体系
const copy = async (params: ErrorSystem.ErrorSystemList) => {
ElMessageBox.confirm('是否复制当前误差体系?', '提示', {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: 'warning',
draggable: true
}).then(async () => {
copyPqErrSys(params).then(() => {
proTable.value?.getTableList()
})
})
}
</script>
<style scoped>