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