Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
W
web-purchase
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张冬
web-purchase
Commits
55f783e5
Commit
55f783e5
authored
Nov 04, 2020
by
吴冠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ad
parent
d37b111c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
7 deletions
+29
-7
list.js
src/api/common/list.js
+8
-0
Upload.vue
src/components/Upload/Upload.vue
+1
-0
SeeinquiryAnnouncement.vue
src/pages/purchaser/bid/reviewed/SeeinquiryAnnouncement.vue
+1
-1
see.vue
...s/supply/bid/joinProject/bidStage/clearManagement/see.vue
+4
-4
fileDownload.vue
src/pages/supply/bid/joinProject/bidStage/fileDownload.vue
+1
-1
workbench.vue
src/pages/supply/bid/joinProject/workbench.vue
+14
-1
No files found.
src/api/common/list.js
View file @
55f783e5
...
@@ -192,4 +192,11 @@ export function getMessagephone(){
...
@@ -192,4 +192,11 @@ export function getMessagephone(){
return
request
({
return
request
({
url
:
'/company/customService'
,
url
:
'/company/customService'
,
method
:
'get'
,
method
:
'get'
,
})}
/* 获取参与开标 */
export
function
getBidOpening
(
projectId
){
return
request
({
url
:
`/tender/isSubmitBidFile/
${
projectId
}
`
,
method
:
'get'
,
})}
})}
\ No newline at end of file
src/components/Upload/Upload.vue
View file @
55f783e5
<
template
>
<
template
>
<div
class=
"hello"
>
<div
class=
"hello"
>
<el-upload
<el-upload
v-loading=
"loading"
:http-request=
"handleUpload"
:http-request=
"handleUpload"
:on-preview=
"handlePreview"
:on-preview=
"handlePreview"
:on-remove=
"handleRemove"
:on-remove=
"handleRemove"
...
...
src/pages/purchaser/bid/reviewed/SeeinquiryAnnouncement.vue
View file @
55f783e5
...
@@ -54,7 +54,7 @@ export default {
...
@@ -54,7 +54,7 @@ export default {
projectName
:
''
,
projectName
:
''
,
Bidderlist
:
[],
Bidderlist
:
[],
detail
:
''
,
detail
:
''
,
breads
:
[
'招标管理 '
,
'
在线报名'
,
'询价公告
'
],
breads
:
[
'招标管理 '
,
'
招标项目管理'
,
'工作台
'
],
columns
:
[
columns
:
[
{
{
label
:
'标的名称'
,
label
:
'标的名称'
,
...
...
src/pages/supply/bid/joinProject/bidStage/clearManagement/see.vue
View file @
55f783e5
...
@@ -20,9 +20,10 @@
...
@@ -20,9 +20,10 @@
<div
class=
"flex-item clear-item"
v-if=
'questionlist.length>0'
>
<div
class=
"flex-item clear-item"
v-if=
'questionlist.length>0'
>
<div>
*澄清问题附件:
</div>
<div>
*澄清问题附件:
</div>
<ul>
<ul>
<li
v-for=
"item in questionlist"
:key=
"item.id"
>
<li
>
<span>
{{
item
.
fileName
}}
</span>
<a
:href=
"question.clarifiesAccessoryList.accessoryUrl"
>
{{
question
.
clarifiesAccessoryList
.
fileName
}}
</a>
<el-button
@
click=
"down(item.accessoryUrl)"
>
下载
</el-button>
<!--
<span>
{{
item
.
fileName
}}
</span>
<el-button
@
click=
"down(item.accessoryUrl)"
>
下载
</el-button>
-->
</li>
</li>
</ul>
</ul>
</div>
</div>
...
@@ -108,7 +109,6 @@ export default {
...
@@ -108,7 +109,6 @@ export default {
this
.
clarifieslist
=
data
.
noticeClarifiesDO
this
.
clarifieslist
=
data
.
noticeClarifiesDO
this
.
question
=
data
.
clarifiesDO
this
.
question
=
data
.
clarifiesDO
this
.
questionlist
=
data
.
clarifiesAccessoryList
this
.
questionlist
=
data
.
clarifiesAccessoryList
},
},
// 问题详情
// 问题详情
async
getquestionDetail
(
id
)
{
async
getquestionDetail
(
id
)
{
...
...
src/pages/supply/bid/joinProject/bidStage/fileDownload.vue
View file @
55f783e5
...
@@ -106,7 +106,7 @@
...
@@ -106,7 +106,7 @@
}
=
await
bidBooklist
(
message
)
}
=
await
bidBooklist
(
message
)
if
(
code
===
200
)
{
if
(
code
===
200
)
{
for
(
let
item
of
data
){
for
(
let
item
of
data
){
item
.
fileSize
=
(
item
.
fileSize
/
1024
/
1024
).
toFixed
(
0
)
+
"MB"
item
.
fileSize
=
(
item
.
fileSize
/
1024
/
1024
).
toFixed
(
2
)
+
"MB"
}
}
this
.
files
=
data
this
.
files
=
data
}
}
...
...
src/pages/supply/bid/joinProject/workbench.vue
View file @
55f783e5
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
import
{
projectConsole
}
from
'@api/purchaser/bid'
;
import
{
projectConsole
}
from
'@api/purchaser/bid'
;
import
dataBreadcrumb
from
'@components/dataBreadcrumb.vue'
;
import
dataBreadcrumb
from
'@components/dataBreadcrumb.vue'
;
import
changeNav
from
'@components/changeNav.vue'
;
import
changeNav
from
'@components/changeNav.vue'
;
import
{
getBidOpening
}
from
'@api/common/list.js'
export
default
{
export
default
{
components
:
{
components
:
{
dataBreadcrumb
,
dataBreadcrumb
,
...
@@ -222,8 +223,19 @@ export default {
...
@@ -222,8 +223,19 @@ export default {
}
}
return
newlabel
;
return
newlabel
;
},
},
jump
(
mods
)
{
async
jump
(
mods
)
{
if
(
mods
.
bright
)
{
if
(
mods
.
bright
)
{
/* 参与开标状态 code为200 通行 code为500 返回一个信息 不通行 */
if
(
mods
.
buttonId
==
58
){
const
{
data
,
code
,
msg
}
=
await
getBidOpening
()
if
(
code
==
200
){
this
.
$message
.
success
(
msg
)
return
true
}
else
{
this
.
$message
.
error
(
msg
)
return
false
}
}
this
.
$router
.
push
(
mods
.
url
);
this
.
$router
.
push
(
mods
.
url
);
}
}
},
},
...
@@ -249,6 +261,7 @@ export default {
...
@@ -249,6 +261,7 @@ export default {
item1
.
url
=
this
.
geturl
(
item1
.
url
,
item2
.
status
);
item1
.
url
=
this
.
geturl
(
item1
.
url
,
item2
.
status
);
item1
.
label
=
this
.
getlabel
(
item1
.
label
,
item2
.
status
);
item1
.
label
=
this
.
getlabel
(
item1
.
label
,
item2
.
status
);
}
}
}
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment