Commit a37f3340 by henry

修改列表显示宽度

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