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

pref:修改填单、样表报表

parent 1c7f67b3
...@@ -510,9 +510,14 @@ ...@@ -510,9 +510,14 @@
background-color: #42dac8; background-color: #42dac8;
border-color: #42dac8; border-color: #42dac8;
} }
.ant-select{ .ant-select {
min-width: 120px min-width: 120px;
} }
.ant-calendar-picker{ .ant-calendar-picker {
min-width: 270px; min-width: 270px;
} }
\ No newline at end of file .ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
...@@ -76,18 +76,18 @@ ...@@ -76,18 +76,18 @@
(tablePagination.current - 1) * tablePagination.pageSize + index + 1 (tablePagination.current - 1) * tablePagination.pageSize + index + 1
}}</span> }}</span>
<template slot="事项名称" slot-scope="text, record"> <template slot="事项名称" slot-scope="text, record">
<div> <div class="ellipsis">
{{ record.matterName ? record.matterName : "--" }} {{ record.matterName ? record.matterName : "--" }}
</div> </div>
<div class="tabFont"> <div class="tabFont ellipsis">
事项全称:{{ record.matterFullName ? record.matterFullName : "--" }} 事项全称:{{ record.matterFullName ? record.matterFullName : "--" }}
</div> </div>
</template> </template>
<template slot="材料名称" slot-scope="text, record"> <template slot="材料名称" slot-scope="text, record">
<div> <div class="ellipsis" :title="record.materialName">
{{ record.materialName ? record.materialName : "--" }} {{ record.materialName ? record.materialName : "--" }}
</div> </div>
<div class="tabFont"> <div class="tabFont ellipsis">
样表全称:{{ 样表全称:{{
record.materialFullName ? record.materialFullName : "--" record.materialFullName ? record.materialFullName : "--"
}} }}
......
...@@ -66,16 +66,20 @@ ...@@ -66,16 +66,20 @@
(tablePagination.current - 1) * tablePagination.pageSize + index + 1 (tablePagination.current - 1) * tablePagination.pageSize + index + 1
}}</span> }}</span>
<template slot="事项名称" slot-scope="text, record"> <template slot="事项名称" slot-scope="text, record">
<div> <div class="ellipsis">
{{ record.matterName }} {{ record.matterName || "--" }}
</div>
<div class="tabFont ellipsis">
事项全称:{{ record.matterFullName || "--" }}
</div> </div>
<div class="tabFont">事项全称:{{ record.matterFullName }}</div>
</template> </template>
<template slot="材料名称" slot-scope="text, record"> <template slot="材料名称" slot-scope="text, record">
<div> <div class="ellipsis">
{{ record.materialName }} {{ record.materialName || "--" }}
</div>
<div class="tabFont ellipsis">
样表全称:{{ record.materialFullName || "--" }}
</div> </div>
<div class="tabFont">样表全称:{{ record.materialFullName }}</div>
</template> </template>
</a-table> </a-table>
</div> </div>
...@@ -103,7 +107,6 @@ export default { ...@@ -103,7 +107,6 @@ export default {
}, },
{ {
title: "事项名称", title: "事项名称",
align: "center",
dataIndex: "matterName", dataIndex: "matterName",
scopedSlots: { scopedSlots: {
customRender: "事项名称", customRender: "事项名称",
...@@ -111,7 +114,6 @@ export default { ...@@ -111,7 +114,6 @@ export default {
}, },
{ {
title: "材料名称", title: "材料名称",
align: "center",
dataIndex: "materialName", dataIndex: "materialName",
scopedSlots: { scopedSlots: {
customRender: "材料名称", 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