| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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: 'substationName',
- key: 'substationName'
- },
- {
- title: '线别',
- align: 'center',
- dataIndex: 'lineName',
- key: 'lineName'
- },
- {
- title: '工区',
- align: 'center',
- dataIndex: 'workArea',
- key: 'workArea'
- },
- {
- title: '经度',
- align: 'center',
- dataIndex: 'longitude',
- key: 'longitude'
- },
- {
- title: '纬度',
- align: 'center',
- dataIndex: 'latitude',
- key: 'latitude'
- },
- {
- title: '公里标',
- align: 'center',
- dataIndex: 'marker',
- key: 'marker'
- },
- {
- title: '操作',
- dataIndex: 'action',
- width: 200,
- align: 'center',
- slots: { title: 'actionName' },
- scopedSlots: { customRender: 'action' }
- }
- ]
- return cols
- }
- export default columns
|