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
9a0e606a
Commit
9a0e606a
authored
Oct 14, 2020
by
张冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
投标保证金缴纳
parent
186d6dc4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
28 deletions
+36
-28
bondList.vue
src/pages/purchaser/bid/bidStage/bondList/bondList.vue
+33
-16
detail.vue
src/pages/purchaser/bid/bidStage/bondList/detail.vue
+0
-0
detail.vue
src/pages/purchaser/bid/bidStage/tenderFeelist/detail.vue
+3
-12
No files found.
src/pages/purchaser/bid/bidStage/bondList/bondList.vue
View file @
9a0e606a
...
@@ -8,19 +8,19 @@
...
@@ -8,19 +8,19 @@
<div>
{{
scope
.
row
.
createTime
?
scope
.
row
.
createTime
:
"无"
}}
</div>
<div>
{{
scope
.
row
.
createTime
?
scope
.
row
.
createTime
:
"无"
}}
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
slot=
"operate"
label=
"操作"
align=
"center"
fixed=
"right"
width=
"100"
>
<el-table-column
slot=
"operate"
label=
"操作"
align=
"center"
fixed=
"right"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.operation=='4'||scope.row.operation=='5'
"
>
<div
v-if=
"scope.row.operation==4||scope.row.operation==5
"
>
<el-button
type=
"text"
size=
"small
"
>
查看
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"handleSee(scope.row)
"
>
查看
</el-button>
</div>
</div>
<div
v-else-if=
"scope.row.condition=='3'"
>
<div
v-else-if=
"scope.row.operation==3"
>
<el-button
type=
"text"
size=
"small
"
>
审核
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"handleExamine(scope.row)
"
>
审核
</el-button>
</div>
</div>
<div
v-else
>
<div
v-else
>
<el-button
type=
"text"
size=
"small"
>
空
</el-button>
<el-button
type=
"text"
size=
"small"
>
空
</el-button>
</div>
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</dataTable>
</dataTable>
</div>
</div>
</div>
</div>
...
@@ -67,9 +67,26 @@
...
@@ -67,9 +67,26 @@
this
.
pageObj
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
this
.
pageObj
.
projectId
=
localStorage
.
getItem
(
"projectId"
)
},
},
methods
:
{
methods
:
{
examine
()
{
handleExamine
(
row
)
{
this
.
$router
.
push
(
'/admin/bid/bidingDetail'
)
this
.
$router
.
push
({
}
path
:
"/purchaser/bid/bidStage/bondList/detail"
,
query
:
{
type
:
"examine"
,
feeId
:
row
.
feeId
,
state
:
row
.
feeStatus
}
})
},
handleSee
(
row
)
{
this
.
$router
.
push
({
path
:
"/purchaser/bid/bidStage/bondList/detail"
,
query
:
{
type
:
"see"
,
feeId
:
row
.
feeId
,
state
:
row
.
feeStatus
}
})
},
}
}
}
}
</
script
>
</
script
>
...
...
src/pages/purchaser/bid/bidStage/bondList/detail.vue
View file @
9a0e606a
This diff is collapsed.
Click to expand it.
src/pages/purchaser/bid/bidStage/tenderFeelist/detail.vue
View file @
9a0e606a
...
@@ -113,7 +113,7 @@
...
@@ -113,7 +113,7 @@
<el-input
:rows=
"5"
v-model=
"ruleForm.remark"
type=
"textarea"
disabled
>
<el-input
:rows=
"5"
v-model=
"ruleForm.remark"
type=
"textarea"
disabled
>
</el-input>
</el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"上传缴费凭证:"
prop=
"
voucherUrl"
>
<el-form-item
label=
"上传缴费凭证:"
v-if=
"ruleForm.
voucherUrl"
>
<ul>
<ul>
<li
v-for=
"(item,index) in ruleForm.voucherList"
:key=
"index"
>
<li
v-for=
"(item,index) in ruleForm.voucherList"
:key=
"index"
>
<a
:href=
"item.fileUrl"
>
{{
item
.
fileName
}}
</a>
<a
:href=
"item.fileUrl"
>
{{
item
.
fileName
}}
</a>
...
@@ -155,28 +155,19 @@
...
@@ -155,28 +155,19 @@
operationAduit
operationAduit
}
from
'@api/purchaser/bid'
}
from
'@api/purchaser/bid'
import
dataBreadcrumb
from
'@components/dataBreadcrumb.vue'
import
dataBreadcrumb
from
'@components/dataBreadcrumb.vue'
import
Upload
from
'@components/Upload/Upload.vue'
export
default
{
export
default
{
components
:
{
components
:
{
dataBreadcrumb
,
dataBreadcrumb
,
Upload
},
},
data
()
{
data
()
{
// 测试图片
let
checkimg
=
(
rule
,
value
,
callback
)
=>
{
if
(
this
.
ruleForm
.
voucherUrl
.
length
===
0
)
{
callback
(
new
Error
(
'请上传凭证'
));
}
else
{
callback
();
}
};
return
{
return
{
state
:
""
,
state
:
""
,
dialogFormVisible
:
false
,
dialogFormVisible
:
false
,
breads
:
[
'招标管理'
,
'招标项目管理'
,
'工作台'
],
breads
:
[
'招标管理'
,
'招标项目管理'
,
'工作台'
],
ruleForm
:
{},
ruleForm
:
{},
form
:
{
form
:
{
reson
:
""
re
a
son
:
""
},
},
rules
:
{
rules
:
{
reason
:
[{
reason
:
[{
...
...
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