作者 lixiang

1、bug修正

... ... @@ -5,7 +5,7 @@
<h1>{{ sskcTitle }}</h1>
<hr style="width :7%;height:1px;border:none;border-top:1px solid #B0B0B0; float: left">
<br>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="库存数据" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px"
>
... ... @@ -16,7 +16,7 @@
<!-- ></a-input>-->
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="在途库存" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px">
<!-- <a-input-->
... ... @@ -31,7 +31,7 @@
<hr style="width :7%;height:1px;border:none;border-top:1px solid #B0B0B0; float: left">
<br>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="最近中标单价(元)" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px"
>
... ... @@ -42,7 +42,7 @@
{{model.lastWinningBidPrice}}
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="最后一次中标时间" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px"
>
... ... @@ -58,7 +58,7 @@
<hr style="width :7%;height:1px;border:none;border-top:1px solid #B0B0B0; float: left">
<br>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="投标价格(元)" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px">
<!-- <a-input-->
... ... @@ -67,7 +67,7 @@
{{model.tbjg}}
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="投标时间" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px">
<!-- <a-input-->
... ... @@ -91,7 +91,7 @@
<hr style="width :7%;height:1px;border:none;border-top:1px solid #B0B0B0; float: left">
<br>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="中标单价(元)" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px">
<!-- <a-input-->
... ... @@ -100,7 +100,7 @@
{{model.zbdj}}
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-col :span="12">
<a-form-model-item label="中标时间" :labelCol="labelCol" :wrapperCol="wrapperCol"
style=" width: 600px">
<!-- <a-input-->
... ... @@ -249,6 +249,13 @@ export default {
this.$set(this.model,"tbsj",res.result.createTime)
//投标人
this.$set(this.model,"tbr",res.result.createBy)
}else {
//投标价格
this.$set(this.model,"tbjg","")
//投标时间
this.$set(this.model,"tbsj","")
//投标人
this.$set(this.model,"tbr","")
}
}
})
... ...
... ... @@ -371,10 +371,10 @@
{
title: '是否中标',
align: 'center',
dataIndex: 'isBid',
dataIndex: 'sfzb',
width: 60,
customRender: function (text) {
return text === 1 ? '是' : '否'
return text === '1' ? '是' : '否'
},
},
{
... ...