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
2342a8c9
Commit
2342a8c9
authored
Sep 25, 2020
by
张冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新左侧和接口
parent
7b1b2079
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
17 deletions
+29
-17
bid.js
src/api/supply/bid.js
+9
-3
Sidebar.vue
src/components/common/Sidebar.vue
+0
-0
clearManagement.vue
.../joinProject/bidStage/clearManagement/clearManagement.vue
+6
-3
propose.vue
...pply/bid/joinProject/bidStage/clearManagement/propose.vue
+14
-11
No files found.
src/api/supply/bid.js
View file @
2342a8c9
...
...
@@ -83,7 +83,7 @@ export function projectdetail(id) {
})
}
// ------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------
//流程进度
export
function
timeInfo
(
projectId
)
{
return
request
({
...
...
@@ -109,8 +109,14 @@ export function bidderEarnestpayment(data) {
})
}
// 提出问题
export
function
bidderEarnestpayment
(
data
)
{
return
request
({
url
:
"/bidder-earnest/payment"
,
method
:
'post'
,
data
:
data
})
}
...
...
src/components/common/Sidebar.vue
View file @
2342a8c9
This diff is collapsed.
Click to expand it.
src/pages/supply/bid/joinProject/bidStage/clearManagement/clearManagement.vue
View file @
2342a8c9
...
...
@@ -4,7 +4,7 @@
<dataBreadcrumb
:breads=
"breads"
></dataBreadcrumb>
<changeNav
:navs=
"navs"
@
getIndex=
"getIndex"
></changeNav>
<div
class=
"absolute"
>
<el-button
type=
"primary"
@
click=
"out"
>
退
出澄清
</el-button>
<el-button
type=
"primary"
@
click=
"out"
>
提
出澄清
</el-button>
</div>
<div
v-show=
"idx==0"
>
<dataTable
:columns=
"columns"
:page-obj=
"pageObj"
url=
"bidder-clarifies/list"
>
...
...
@@ -56,7 +56,7 @@
return
{
idx
:
0
,
navs
:
[
"问题列表"
,
"公告列表"
],
breads
:
[
'
招标管理'
,
'招标项目管理
'
,
'工作台'
],
breads
:
[
'
投标管理'
,
'我参与的项目
'
,
'工作台'
],
checklist
:
[{
title
:
'公告名称'
,
type
:
'input'
...
...
@@ -115,6 +115,9 @@
this
.
pageObj1
.
companyId
=
localStorage
.
getItem
(
"companyId"
)
},
methods
:
{
getIndex
(
value
){
this
.
idx
=
value
},
handleSee
(
id
)
{
this
.
$router
.
push
({
path
:
'/supply/bid/joinProject/bidStage/clearManagement/see'
,
...
...
@@ -128,7 +131,7 @@
})
},
out
()
{
this
.
$router
.
go
(
-
1
)
this
.
$router
.
push
(
"/supply/bid/joinProject/bidStage/clearManagement/propose"
)
}
}
...
...
src/pages/supply/bid/joinProject/bidStage/clearManagement/propose.vue
View file @
2342a8c9
...
...
@@ -11,12 +11,17 @@
<el-form-item
label=
"澄清问题标题"
prop=
"title"
>
<el-input
v-model=
"ruleForm.title"
placeholder=
"请输入"
></el-input>
</el-form-item>
<el-form-item
label=
"澄清问题内容"
prop=
"content"
>
<el-input
type=
"textarea"
:rows=
"2"
placeholder=
"请输入内容"
v-model=
"ruleForm.content"
>
</el-input>
</el-form-item>
<el-form-item
label=
"澄清问题附件"
prop=
"file"
>
<singleUpload
:limit=
"5"
tip=
"最多上传5个文件,每个文件不超过100M。"
@
input=
"getfile"
></singleUpload>
</el-form-item>
<el-form-item
label=
"澄清问题内容"
prop=
"content"
>
<quill-editor
ref=
"text"
v-model=
"ruleForm.content"
:options=
"editorOption"
class=
"myQuillEditor"
/>
</el-form-item>
</el-form>
<div
class=
"button"
>
<el-button
@
click=
"cancle"
>
取消
</el-button>
...
...
@@ -32,17 +37,10 @@ import {
}
from
'@api/purchaser/bid'
import
dataBreadcrumb
from
'@components/dataBreadcrumb.vue'
import
singleUpload
from
'@components/Upload/Upload.vue'
import
{
quillEditor
}
from
'vue-quill-editor'
import
'quill/dist/quill.core.css'
import
'quill/dist/quill.snow.css'
import
'quill/dist/quill.bubble.css'
export
default
{
components
:
{
dataBreadcrumb
,
singleUpload
,
quillEditor
},
data
()
{
return
{
...
...
@@ -117,10 +115,15 @@ export default {
.content
{
padding
:
0
;
padding-bottom
:
100px
;
padding-top
:
50px
;
}
.button
{
width
:
200px
;
margin
:
150px
auto
0
margin
:
50px
auto
0
}
.form
{
width
:
60%
;
margin
:
0px
auto
;
}
</
style
>
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