This commit is contained in:
姚宇浩 2024-05-27 13:47:44 +08:00
parent f0d7348423
commit 6c8c3a6441
1 changed files with 10 additions and 16 deletions

View File

@ -226,11 +226,11 @@
:header-cell-style="tableHeaderColor" :header-cell-style="tableHeaderColor"
v-if="choose == '1'" v-if="choose == '1'"
> >
<el-table-column prop="company" label="企业名称" width="180" /> <el-table-column prop="company" label="企业名称" width="200" />
<el-table-column <el-table-column
prop="address" prop="address"
label="项目事项牵头单位" label="项目事项牵头单位"
width="180" width="200"
/> />
<el-table-column prop="finish" label="完成情况"> <el-table-column prop="finish" label="完成情况">
<template #default="scope"> <template #default="scope">
@ -434,7 +434,7 @@
@close="close" @close="close"
@handle="handlePagination" @handle="handlePagination"
> >
<template #yxstatus="{ currentCol, currentData }"> <template #yxstatus="{ currentCol, currentData }">
<div>-------------</div> <div>-------------</div>
</template> </template>
</Dialog> </Dialog>
@ -473,37 +473,30 @@ const columnss = reactive({
{ {
label: "姓名", label: "姓名",
property: "name", property: "name",
}, },
{ {
label: "单位", label: "单位",
property: "name", property: "name",
}, },
{ {
label: "职业", label: "职业",
property: "name", property: "name",
}, },
{ {
label: "承办机构", label: "承办机构",
property: "name", property: "name",
}, },
{ {
label: "培训班名称", label: "培训班名称",
property: "name", property: "name",
}, },
{ {
label: "培训开始时间", label: "培训开始时间",
property: "name", property: "name",
}, },
{ {
label: "培训结束时间", label: "培训结束时间",
property: "name", property: "name",
}, },
], ],
就业见习服务: [ 就业见习服务: [
@ -550,7 +543,7 @@ const columnss = reactive({
{ {
label: "有效状态", label: "有效状态",
property: "yxstatus", property: "yxstatus",
type:'slot', type: "slot",
}, },
], ],
就业援助: [ 就业援助: [
@ -597,7 +590,7 @@ const columnss = reactive({
label: "居住地", label: "居住地",
property: "name", property: "name",
}, },
{ {
label: "帮扶时间", label: "帮扶时间",
property: "name", property: "name",
}, },
@ -605,8 +598,7 @@ const columnss = reactive({
}); });
const tableType = reactive({ const tableType = reactive({
title: "", title: "",
columns: [ columns: [],
],
data: [ data: [
{ {
date: "2016-05-02", date: "2016-05-02",
@ -681,7 +673,7 @@ const showDialog = (title) => {
dialogShow.value = true; dialogShow.value = true;
tableType.title = title; tableType.title = title;
tableType.data = tabledata[title]; tableType.data = tabledata[title];
tableType.columns=columnss[title]; tableType.columns = columnss[title];
pagination.currentPage = 1; pagination.currentPage = 1;
}; };
@ -2184,7 +2176,7 @@ onBeforeMount(async () => {
--el-table-border-color: none; --el-table-border-color: none;
border: 1px solid #7aceff; border: 1px solid #7aceff;
} }
.table{
:deep(.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf) { :deep(.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf) {
border: none !important; border: none !important;
padding-left: 10px !important; padding-left: 10px !important;
@ -2193,6 +2185,8 @@ onBeforeMount(async () => {
:deep(.el-table td.el-table__cell) { :deep(.el-table td.el-table__cell) {
padding-left: 10px; padding-left: 10px;
} }
}
::v-deep .el-table--enable-row-hover .el-table__body tr:hover > td { ::v-deep .el-table--enable-row-hover .el-table__body tr:hover > td {
background-color: #2f4b74; background-color: #2f4b74;