Commit a37f3340 by henry

修改列表显示宽度

1 parent 02c06e19
......@@ -97,7 +97,7 @@
prop="manageOrgId"
label="建设单位"
align="center"
width="160"
width="280"
show-overflow-tooltip
:formatter="
(row, column, cellValue, index) =>
......@@ -109,6 +109,7 @@
label="业务部门"
show-overflow-tooltip
align="center"
width="280"
:formatter="
(row, column, cellValue, index) =>
formatterDept(row, column, cellValue, index, 'sysDeptOptions')
......@@ -118,7 +119,7 @@
prop="appName"
label="系统名称"
align="center"
width="150"
width="280"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column label="建设类型" align="center">
......@@ -131,7 +132,7 @@
prop="prjName"
label="项目名称"
align="center"
width="200"
width="280"
:show-overflow-tooltip="true"
>
<template slot-scope="{ row }">
......@@ -146,18 +147,18 @@
<span v-else-if="scope.row.prjPlanClass == 2">续建</span>
</template>
</el-table-column>
<el-table-column :show-overflow-tooltip="true" prop="buildOrg" label="承建单位" align="center">
<el-table-column :show-overflow-tooltip="true" prop="buildOrg" label="承建单位" width="280" align="center">
<template v-slot="scope">
<span>{{ scope.row.buildOrg | orgNameFilter(that) }}</span>
</template>
</el-table-column>
<el-table-column prop="projAmount" label="项目金额(万元)" align="right">
<el-table-column prop="projAmount" label="项目金额(万元)" width="150" align="right">
<template v-slot="scope">
<span style="font-weight: bold">{{ scope.row.projAmount | formatMoney }}</span>
</template>
</el-table-column>
<!--项目启动日期-->
<el-table-column prop="projectInitiationTime" label="项目启动日期" align="center">
<el-table-column prop="projectInitiationTime" label="项目启动日期" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.projectInitiationTime }}</span>
</template>
......
......@@ -100,12 +100,12 @@ export default {
{
label: '建设单位',
prop: 'manageOrgName',
width: '120px',
width: '300px',
},
{
label: '业务部门',
prop: 'manageDeptName',
width: '120px',
width: '300px',
},
{label: '系统名称', width: '280px', prop: 'appName'},
{
......@@ -126,7 +126,7 @@ export default {
prop: 'buildOrg',
options: this.sysBuildOrgOptions,
collectionType: true,
width: '120px',
width: '300px',
},
{
label: '运安符合性审查',
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!