|  |  | 
 |  |  |   {
 | 
 |  |  |     title: formatMessage('db.man_task.task_no', '任务编号'),
 | 
 |  |  |     dataIndex: 'taskNo',
 | 
 |  |  |     width: 140,
 | 
 |  |  |     width: 120,
 | 
 |  |  |     ellipsis: true,
 | 
 |  |  |     ...getColumnSearchProps('taskNo'),
 | 
 |  |  |   },
 | 
 |  |  |   {
 | 
 |  |  |     title: formatMessage('db.man_task.task_sts', '任务状态'),
 | 
 |  |  |     dataIndex: 'taskSts$',
 | 
 |  |  |     width: 140,
 | 
 |  |  |     width: 200,
 | 
 |  |  |     ellipsis: true,
 | 
 |  |  |     ...getColumnSearchProps('taskSts$'),
 | 
 |  |  |   },
 | 
 |  |  | 
 |  |  |   {
 | 
 |  |  |     title: formatMessage('db.man_task.io_pri', '优先级'),
 | 
 |  |  |     dataIndex: 'ioPri',
 | 
 |  |  |     width: 140,
 | 
 |  |  |     width: 120,
 | 
 |  |  |     ellipsis: true,
 | 
 |  |  |     ...getColumnSearchProps('ioPri'),
 | 
 |  |  |   },
 | 
 |  |  | 
 |  |  |             <a-button v-if="record.taskType == 103" type="link" primary @click="handlePick(record)">{{
 | 
 |  |  |               formatMessage('page.pick', '拣料')
 | 
 |  |  |             }}</a-button>
 | 
 |  |  |             <a-button v-if="record.taskType == 107 && record.taskSts == 198" type="link" primary @click="handlePick(record)">{{
 | 
 |  |  |               formatMessage('page.pick', '盘点')
 | 
 |  |  |             }}</a-button>
 | 
 |  |  |             <a-button type="link" primary @click="handleComplete(record)">{{ formatMessage('page.complete', '完成')
 | 
 |  |  |               }}</a-button>
 | 
 |  |  |             <a-button type="link" danger @click="handleCancel(record)">{{ formatMessage('page.cancel', '取消')
 |