|
|
@@ -73,7 +73,7 @@ export default { |
|
|
|
{title: '订单包',dataIndex: 'groupNo',key: 'groupNo',width:'200px',scopedSlots: { customRender: 'groupNo' },}, |
|
|
|
{title: '客户编号',dataIndex: 'memberNo',key: 'memberNo',width:'140px',scopedSlots: { customRender: 'memberNo' },}, |
|
|
|
{title: '审单员',dataIndex: 'checkAccountName',align:'center',key:'checkAccountName',width:'80px'}, |
|
|
|
{title: '跟单人员账号',dataIndex: 'followAccount',align:'center',key:'followAccount',width:'160px'}, |
|
|
|
{title: '跟单员',dataIndex: 'followAccount',align:'center',key:'followAccount',width:'160px'}, |
|
|
|
{title: '状态',dataIndex: 'status',key: 'status',width:'100px',scopedSlots: { customRender: 'status' },}, |
|
|
|
{title: '解析状态',dataIndex: 'parsingStatus',align:'center',key: 'parsingStatus',width:'100px',scopedSlots: { customRender: 'parsingStatus' },}, |
|
|
|
{title: '文件',dataIndex: 'pcbFileName',key: 'pcbFileName',width:'160px',scopedSlots: { customRender: 'pcbFileName' },}, |
|
|
@@ -93,9 +93,6 @@ export default { |
|
|
|
this.filterSearch() |
|
|
|
}, |
|
|
|
methods:{ |
|
|
|
getSelTxt(type,key){ |
|
|
|
return resSelects(type,key||'null'); |
|
|
|
}, |
|
|
|
filterSearch(page){ |
|
|
|
// console.log(this.listInput) |
|
|
|
if(typeof(page)=='object'){ |
|
|
@@ -131,6 +128,9 @@ export default { |
|
|
|
formatDateTime(time){ |
|
|
|
return formatDate(time,'yyyy-MM-dd hh:mm'); |
|
|
|
}, |
|
|
|
getSelTxt(type,key){ |
|
|
|
return resSelects(type,key===0?key:key||'null'); |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|