|
|
@@ -13,7 +13,13 @@ |
|
|
|
<van-cell title="中标人" :value="attestationDetail.assignee" /> |
|
|
|
<van-cell title="建设单位" :value="attestationDetail.bulidPart" /> |
|
|
|
<van-cell title="项目负责人" :value="attestationDetail.partLinkman" /> |
|
|
|
<van-cell title="中标价格" :value="attestationDetail.transactionPrice" /> |
|
|
|
<van-cell title="中标金额(元)" :value="attestationDetail.price" /> |
|
|
|
|
|
|
|
<van-cell title="竟价方式" :value="attestationDetail.biddingType" /> |
|
|
|
<van-cell title="中标单价(元)" :value="attestationDetail.transactionPrice" /> |
|
|
|
<van-cell title="数量/面积" :value="attestationDetail.areaCount" /> |
|
|
|
<van-cell title="数量单位" :value="attestationDetail.priceUnit" /> |
|
|
|
|
|
|
|
<van-cell title="中标日期" :value="attestationDetail.dealTime" /> |
|
|
|
<van-cell title="公示开始日期" :value="attestationDetail.startTime" /> |
|
|
|
<van-cell title="公示结束日期" :value="attestationDetail.stopTime" /> |
|
|
@@ -29,7 +35,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import {attachmentQuery, tenderWinDetail} from "@/api/notice/index"; |
|
|
|
import {attachmentQuery, tenderDetail, tenderWinDetail} from "@/api/notice/index"; |
|
|
|
export default { |
|
|
|
name: "noticeDetail", |
|
|
|
data() { |
|
|
@@ -47,6 +53,11 @@ export default { |
|
|
|
console.log(this.$route.query.id) |
|
|
|
tenderWinDetail(this.$route.query.id,{translate_dict:1}).then(response => { |
|
|
|
this.attestationDetail = response.data; |
|
|
|
tenderDetail(response.data.tenderId,{translate_dict:1}).then(response2 => { |
|
|
|
this.getDicts("tenderbid_type").then(res => { |
|
|
|
this.$set(this.attestationDetail,'biddingType',this.selectDictLabel(res.data,response2.data.biddingType)) |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
let query = { |
|
|
|
tableName: 't_transaction_tender_win', |
|
|
|