|
|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<div class="content">
|
|
|
<el-table :data="tableData" border style="width: 100%">
|
|
|
- <el-table-column prop="ticketName" label="作业名称" min-width="600" />
|
|
|
- <el-table-column prop="workstationName" label="岗位" min-width="200" />
|
|
|
- <el-table-column prop="machineryName" label="设备工艺" min-width="500" />
|
|
|
+ <el-table-column prop="ticketName" label="作业名称" min-width="400" />
|
|
|
+ <el-table-column prop="workstationName" label="岗位" min-width="150" />
|
|
|
+ <el-table-column prop="machineryName" label="设备工艺" min-width="200" />
|
|
|
<el-table-column label="作业类型" prop="ticketType" min-width="150">
|
|
|
<template #default="scope">
|
|
|
<dict-tag :type="DICT_TYPE.TICKET_TYPE" :value="scope.row.ticketType" />
|
|
|
@@ -35,7 +35,9 @@ const getJobDate = async () => {
|
|
|
|
|
|
.content {
|
|
|
width: 100%;
|
|
|
+ padding: 20px;
|
|
|
max-height: 400px;
|
|
|
overflow: auto;
|
|
|
+ background: #fff;
|
|
|
}
|
|
|
</style>
|