Commit e8d4690e authored by “yiyousong”'s avatar “yiyousong”

pref:修改填单、样表报表

parent 1c7f67b3
......@@ -510,9 +510,14 @@
background-color: #42dac8;
border-color: #42dac8;
}
.ant-select{
min-width: 120px
.ant-select {
min-width: 120px;
}
.ant-calendar-picker{
.ant-calendar-picker {
min-width: 270px;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
......@@ -76,18 +76,18 @@
(tablePagination.current - 1) * tablePagination.pageSize + index + 1
}}</span>
<template slot="事项名称" slot-scope="text, record">
<div>
<div class="ellipsis">
{{ record.matterName ? record.matterName : "--" }}
</div>
<div class="tabFont">
<div class="tabFont ellipsis">
事项全称:{{ record.matterFullName ? record.matterFullName : "--" }}
</div>
</template>
<template slot="材料名称" slot-scope="text, record">
<div>
<div class="ellipsis" :title="record.materialName">
{{ record.materialName ? record.materialName : "--" }}
</div>
<div class="tabFont">
<div class="tabFont ellipsis">
样表全称:{{
record.materialFullName ? record.materialFullName : "--"
}}
......
......@@ -66,16 +66,20 @@
(tablePagination.current - 1) * tablePagination.pageSize + index + 1
}}</span>
<template slot="事项名称" slot-scope="text, record">
<div>
{{ record.matterName }}
<div class="ellipsis">
{{ record.matterName || "--" }}
</div>
<div class="tabFont ellipsis">
事项全称:{{ record.matterFullName || "--" }}
</div>
<div class="tabFont">事项全称:{{ record.matterFullName }}</div>
</template>
<template slot="材料名称" slot-scope="text, record">
<div>
{{ record.materialName }}
<div class="ellipsis">
{{ record.materialName || "--" }}
</div>
<div class="tabFont ellipsis">
样表全称:{{ record.materialFullName || "--" }}
</div>
<div class="tabFont">样表全称:{{ record.materialFullName }}</div>
</template>
</a-table>
</div>
......@@ -103,7 +107,6 @@ export default {
},
{
title: "事项名称",
align: "center",
dataIndex: "matterName",
scopedSlots: {
customRender: "事项名称",
......@@ -111,7 +114,6 @@ export default {
},
{
title: "材料名称",
align: "center",
dataIndex: "materialName",
scopedSlots: {
customRender: "材料名称",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment