Commit 5903a153 authored by 张冬's avatar 张冬

更新

parent 082cc2eb
...@@ -271,10 +271,11 @@ export function winBookdetail(projectId) { ...@@ -271,10 +271,11 @@ export function winBookdetail(projectId) {
// 签到解密简略 // 签到解密简略
export function openBidsign(projectId) { export function openBidsign(projectId) {
return request({ return request({
url: `open-bid/sign/${projectId}`, url: `bidder-openBid/signInfo?projectId=${projectId}`,
method: 'get', method: 'get',
}) })
} }
// 开标大厅三个截止时间 // 开标大厅三个截止时间
export function opentimeInfo(projectId) { export function opentimeInfo(projectId) {
return request({ return request({
...@@ -282,4 +283,19 @@ export function opentimeInfo(projectId) { ...@@ -282,4 +283,19 @@ export function opentimeInfo(projectId) {
method: 'get', method: 'get',
}) })
} }
// 解密
export function decode(projectId) {
return request({
url: `open-bid/decode?projectId=${projectId}`,
method: 'put',
})
}
// 签名
export function signature(projectId) {
return request({
url: `open-bid/signature?projectId=${projectId}`,
method: 'put',
})
}
...@@ -454,7 +454,6 @@ ...@@ -454,7 +454,6 @@
console.log("小于") console.log("小于")
this.endbidButton = true this.endbidButton = true
} }
console.log()
} }
} }
} catch (e) { } catch (e) {
......
...@@ -45,7 +45,7 @@ export default { ...@@ -45,7 +45,7 @@ export default {
tableData: [], tableData: [],
columns: [{ columns: [{
label: '投标人', label: '投标人',
prop: 'bidder' prop: 'companyName'
}, },
{ {
slot: 'code' slot: 'code'
...@@ -56,7 +56,7 @@ export default { ...@@ -56,7 +56,7 @@ export default {
}, },
{ {
label: '接收人', label: '接收人',
prop: 'receiver' prop: 'companyName'
}, },
{ {
slot: 'operate' slot: 'operate'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment