|
@@ -115,17 +115,19 @@ export default {
|
|
{
|
|
{
|
|
title: '是否含有',
|
|
title: '是否含有',
|
|
align: 'center',
|
|
align: 'center',
|
|
- width: 100,
|
|
|
|
|
|
+ width: 80,
|
|
dataIndex: 'flag_' + item.taskno,
|
|
dataIndex: 'flag_' + item.taskno,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '实发总数量',
|
|
title: '实发总数量',
|
|
align: 'center',
|
|
align: 'center',
|
|
|
|
+ width: 90,
|
|
dataIndex: 'totalCount_' + item.taskno,
|
|
dataIndex: 'totalCount_' + item.taskno,
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '归一化单价(元)',
|
|
title: '归一化单价(元)',
|
|
align: 'center',
|
|
align: 'center',
|
|
|
|
+ width: 110,
|
|
dataIndex: 'unitPrice_' + item.taskno,
|
|
dataIndex: 'unitPrice_' + item.taskno,
|
|
customCell: this.setCustomCell,
|
|
customCell: this.setCustomCell,
|
|
}
|
|
}
|
|
@@ -158,17 +160,6 @@ export default {
|
|
this.loading = false
|
|
this.loading = false
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- // handleTableChange(pagination, filters, sorter) {
|
|
|
|
- // //分页、排序、筛选变化时触发
|
|
|
|
- // //TODO 筛选
|
|
|
|
- // console.log(pagination)
|
|
|
|
- // if (Object.keys(sorter).length > 0) {
|
|
|
|
- // this.isorter.column = sorter.field;
|
|
|
|
- // this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
|
|
|
|
- // }
|
|
|
|
- // this.ipagination = pagination;
|
|
|
|
- // this.loadData(2);
|
|
|
|
- // },
|
|
|
|
setCustomCell(record, index){
|
|
setCustomCell(record, index){
|
|
// console.log(record, index)
|
|
// console.log(record, index)
|
|
// var arr = []
|
|
// var arr = []
|
|
@@ -190,4 +181,9 @@ export default {
|
|
},
|
|
},
|
|
}
|
|
}
|
|
};
|
|
};
|
|
-</script>
|
|
|
|
|
|
+</script>
|
|
|
|
+<!-- <style >
|
|
|
|
+.ant-table-body {
|
|
|
|
+ overflow-y: auto !important;
|
|
|
|
+ overflow: overlay !important;
|
|
|
|
+}</style> -->
|