| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- function columns(vm) {
- const cols = [
- {
- title: '序号',
- key: 'rowIndex',
- width: 60,
- align: 'center',
- customRender: function(t, r, index) {
- return parseInt(index) + 1
- }
- },
- {
- title: '车间',
- align: 'center',
- dataIndex: 'deptName',
- key: 'deptName'
- },
- {
- title: '站场/区间',
- align: 'center',
- dataIndex: 'stationName',
- key: 'stationName'
- },
- {
- title: '支柱号范围',
- align: 'center',
- dataIndex: 'pillarArea',
- key: 'pillarArea'
- },
- {
- title: '检查人',
- align: 'center',
- dataIndex: 'checkUser',
- key: 'checkUser'
- },
- {
- title: '检查日期',
- align: 'center',
- dataIndex: 'checkDate',
- key: 'checkDate'
- }
- ]
- return cols
- }
- export default columns
|