|
@@ -51,10 +51,12 @@
|
|
|
<el-table-column prop sortable label='日期' width='100' resizable>
|
|
|
<template slot-scope='{row}'>{{formatter(row.createdate)||'--'}}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop label='政府部门' :show-overflow-tooltip='true' width='160'>
|
|
|
- <template slot-scope='{row}'>{{row.department||'--'}}</template>
|
|
|
+ <el-table-column prop label='政府部门' :show-overflow-tooltip='true' width='200'>
|
|
|
+ <template slot-scope='{row}'>
|
|
|
+ {{row.department?row.department == '其他部门'?`${row.department} - ${row.otherdescription}`:row.department:'--'}}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop label='记录事项' :show-overflow-tooltip='true' min-width='700'>
|
|
|
+ <el-table-column prop label='记录事项' :show-overflow-tooltip='true' min-width='660'>
|
|
|
<template slot-scope='{row}'>{{row.recordsx||'--'}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop label='工作要求' :show-overflow-tooltip='true' width='160'>
|