| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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: 'toolCode',
- key: 'toolCode'
- },
- {
- title: '工具名称',
- align: 'center',
- dataIndex: 'toolName',
- key: 'toolName'
- },
- {
- title: '车间',
- align: 'center',
- dataIndex: 'deptName',
- key: 'deptName'
- },
- {
- title: '存放处所',
- align: 'center',
- dataIndex: 'storePlace',
- key: 'storePlace'
- },
- {
- title: '上次检验日期',
- align: 'center',
- dataIndex: 'lastTestDate',
- key: 'lastTestDate'
- },
- {
- title: '结果',
- align: 'center',
- dataIndex: 'isok',
- scopedSlots: { customRender: 'isok' },
- key: 'isok'
- }
- ]
- return cols
- }
- export default columns
|