This commit is contained in:
parent
f0d7348423
commit
6c8c3a6441
|
@ -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">
|
||||||
|
@ -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",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
就业援助: [
|
就业援助: [
|
||||||
|
@ -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",
|
||||||
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue