作者 lixiang

1、bug修正,导入投中标明细

... ... @@ -317,13 +317,13 @@
{
title: '询价标书文件号',
align: 'center',
dataIndex: 'bidNum',
dataIndex: 'xjbswjh',
width: 130,
},
{
title: '物料编码/工作令号',
align: 'center',
dataIndex: 'materialCode',
dataIndex: 'wlbm',
width: 150,
},
{
... ... @@ -335,37 +335,37 @@
{
title: '物料长描述',
align: 'center',
dataIndex: 'materialDescription',
dataIndex: 'miaoshu',
width: 130,
},
{
title: '品牌',
align: 'center',
dataIndex: 'brand',
dataIndex: 'tenderInfo.pinpai',
width: 130,
},
{
title: '计量单位',
align: 'center',
dataIndex: 'measurementUnit',
dataIndex: 'tenderInfo.jldw',
width: 130,
},
{
title: '需求数量',
align: 'center',
dataIndex: 'demandQuantity',
dataIndex: 'tenderInfo.xqsl',
width: 60,
},
{
title: '需求交货期',
align: 'center',
dataIndex: 'requiredDeliveryTime',
dataIndex: 'tenderInfo.xqjhq',
width: 130,
},
{
title: '需求单位',
align: 'center',
dataIndex: 'demandUnit',
dataIndex: 'tenderInfo.xqdw',
width: 130,
},
{
... ... @@ -380,25 +380,25 @@
{
title: '投标单价(不含税,元)',
align: 'center',
dataIndex: 'bidPrice',
dataIndex: 'xydj',
width: 130,
},
{
title: '中标单价(不含税,元)',
align: 'center',
dataIndex: 'winningBidPrice',
dataIndex: 'zbj',
width: 130,
},
{
title: '单价差异',
align: 'center',
dataIndex: 'diffPrice',
dataIndex: 'djchay',
width: 130,
},
{
title: '税率(%)',
align: 'center',
dataIndex: 'taxRate',
dataIndex: 'sl',
width: 100,
},
{
... ... @@ -477,6 +477,7 @@
exportXlsUrl: '/trade/tblTradePriceInquiry/exportXls',
importExcelUrl: '/trade/tblTradePriceInquiry/importExcel',
tblTradeBidMaterialDetailsList: '/trade/tblTradeBidMaterialDetails/list',
tblTradeBidSubList: '/trade/tblTradeBidSub/list',
addContract: '/trade/tblTradeContractAwarded/add',
contractList: '/trade/tblTradeContractAwarded/list',
... ... @@ -498,6 +499,7 @@
},
},
methods: {
onClearSelected() {
this.addHt = true
this.selectedRowKeys = [];
... ... @@ -564,7 +566,8 @@
var params = {
bidNum: selectionRows[0].xjbswjh
}
getAction(this.url.tblTradeBidMaterialDetailsList, params).then((res) => {
getAction(this.url.tblTradeBidSubList, params).then((res) => {
console.log("569-----res.result.records",res.result.records)
if (res.success) {
this.dataSource2 = res.result.records
}
... ... @@ -594,7 +597,7 @@
let params = {
}
getAction(this.url.tblTradeBidMaterialDetailsList, params).then((res) => {
getAction(this.url.tblTradeBidSubList, params).then((res) => {
if (res.success) {
this.dataSource2 = res.result.records
}
... ...