, cols: [[ { title: '编号', type: 'numbers', width:50, fixed: 'left' } , { field: 'river_status', title: '事件种类', width:150, align: 'center', , { field: 'event_no', title: '事件编号', width:280, align: 'center' } , { field: 'supervise_no', title: '督办单号', width:180, align: 'center' } , { field: 'describe', title: '事件内容', align: 'center' } , { field: 'supervise_topic', title: '督办标题', width:200, align: 'center' } , { field: 'create_time', title: '督办时间', width:150, align: 'center' } , { field: 'receive_user_name', title: '责任人员/单位',width:120, align: 'center' } , { field: 'user_name', title: '发起人员', width:90, align: 'center' } , { field: 'status', title: '状态', width:80, align: 'center', } , { toolbar: '#barDemo', title: '操作', width:160, align: 'center' } ]]river_status值为0展示河流事件值为1展示湖泊事件
时间: 2024-01-10 10:03:39 浏览: 119
read1.rar_matlab xml_opencv读取xml_site:www.pudn.com
根据您的描述,您想要在表格中展示不同类型的事件,其中 `river_status` 字段的值为0时展示河流事件,值为1时展示湖泊事件。根据您提供的代码片段,可以对 `field: 'river_status'` 进行修改,使用 formatter 函数来根据字段的值进行条件判断。
以下是修改后的代码示例:
```javascript
cols: [[
{ title: '编号', type: 'numbers', width: 50, fixed: 'left' },
{
field: 'river_status',
title: '事件种类',
width: 150,
align: 'center',
formatter: function(value, row, index) {
if (value === 0) {
return '河流事件';
} else if (value === 1) {
return '湖泊事件';
} else {
return '';
}
}
},
{ field: 'event_no', title: '事件编号', width: 280, align: 'center' },
{ field: 'supervise_no', title: '督办单号', width: 180, align: 'center' },
{ field: 'describe', title: '事件内容', align: 'center' },
{ field: 'supervise_topic', title: '督办标题', width: 200, align: 'center' },
{ field: 'create_time', title: '督办时间', width: 150, align: 'center' },
{ field: 'receive_user_name', title: '责任人员/单位', width: 120, align: 'center' },
{ field: 'user_name', title: '发起人员', width: 90, align: 'center' },
{ field: 'status', title: '状态', width: 80, align: 'center' },
{ toolbar: '#barDemo', title: '操作', width: 160, align: 'center' }
]]
```
在上述代码中,我们在 `field: 'river_status'` 的列中添加了 formatter 函数,根据字段的值进行条件判断,如果值为0,则返回"河流事件",如果值为1,则返回"湖泊事件",否则返回空字符串。
希望对您有所帮助!如果您还有其他问题,请随时提问。
阅读全文