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
faf4b7c8
Commit
faf4b7c8
authored
Oct 19, 2020
by
张冬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应收账款
parent
489d79c0
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
32 additions
and
16 deletions
+32
-16
bidOpenhal.vue
src/pages/purchaser/bid/bidOpen/bidOpenhal.vue
+1
-1
buyoutList.vue
src/pages/purchaser/buyOut/buyoutList.vue
+17
-5
contractSign.vue
src/pages/purchaser/buyOut/contractSign.vue
+8
-5
bidOpenhal.vue
src/pages/supply/bid/joinProject/bidOpen/bidOpenhal.vue
+1
-1
seePrice.vue
src/pages/supply/bid/signupOnline/seePrice.vue
+3
-3
buyoutList.vue
src/pages/supply/buyOut/buyoutList.vue
+1
-1
jurisdictionSee.vue
src/pages/supply/organization/jurisdictionSee.vue
+0
-0
index.js
src/router/index.js
+1
-0
No files found.
src/pages/purchaser/bid/bidOpen/bidOpenhal.vue
View file @
faf4b7c8
...
...
@@ -48,7 +48,7 @@
</div>
<!-- 在线对话 -->
<div
class=
"dialogue"
style=
"margin-top: 30px;"
v-show=
"dialogue"
>
<JwChat
:taleList=
"dialogueList"
scrollType
@
enter=
"bindEnter"
v-model=
"content"
:toolConfig=
"tool"
>
<JwChat
:taleList=
"dialogueList"
scrollType
=
"scroll"
@
enter=
"bindEnter"
v-model=
"content"
:toolConfig=
"tool"
>
</JwChat>
</div>
<!--
...
...
src/pages/purchaser/buyOut/buyoutList.vue
View file @
faf4b7c8
...
...
@@ -19,8 +19,8 @@
<
template
slot-scope=
"scope"
>
<div
class=
"flex"
>
<div>
<el-button
type=
"text"
size=
"small"
@
click=
"contractSign(scope.row
.projectId
)"
v-if=
"scope.row.constractOperation==1"
>
合同签署
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"contractS
ign(scope.row.projectId
)"
v-else-if=
"scope.row.constractOperation==2"
>
合同查看
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"contractSign(scope.row)"
v-if=
"scope.row.constractOperation==1"
>
合同签署
</el-button>
<el-button
type=
"text"
size=
"small"
@
click=
"contractS
ee(scope.row
)"
v-else-if=
"scope.row.constractOperation==2"
>
合同查看
</el-button>
<el-button
type=
"text"
size=
"small"
v-else
disabled
>
合同查看
</el-button>
</div>
<div>
...
...
@@ -84,11 +84,23 @@
this
.
sendData
.
tenderCompanyId
=
localStorage
.
getItem
(
"companyId"
)
},
methods
:
{
contractSign
(
id
)
{
this
.
$router
.
push
(
`/purchaser/buyOut/contractSign?id=
${
id
}
`
)
contractSign
(
row
)
{
this
.
$router
.
push
({
name
:
"/purchaser/buyOut/contractSign"
,
params
:{
id
:
row
.
projectId
,
url
:
row
.
tenderIframeUrl
}
})
},
contractSee
(
id
)
{
this
.
$router
.
push
(
`/purchaser/buyOut/contractSee?id=
${
id
}
`
)
this
.
$router
.
push
({
name
:
"/purchaser/buyOut/contractSign"
,
params
:{
id
:
row
.
projectId
,
url
:
row
.
contractUrl
}
})
},
voucherSee
(
id
)
{
this
.
$router
.
push
(
`/purchaser/buyOut/voucherSee?id=
${
id
}
`
)
...
...
src/pages/purchaser/buyOut/contractSign.vue
View file @
faf4b7c8
...
...
@@ -6,7 +6,8 @@
<h5>
签署合同
</h5>
</div>
<div
class=
"content"
>
<div
class=
"flex"
>
<iframe
:src=
"url"
frameborder=
"0"
style=
"width:100%;height:600px"
></iframe>
<!--
<div
class=
"flex"
>
<div>
下载合同:
</div>
<ul>
<li
class=
"flex-item"
>
...
...
@@ -21,12 +22,12 @@
<div
class=
"button flex-center"
>
<el-button
@
click=
"revoke"
>
撤销签章
</el-button>
<el-button>
电子签章
</el-button>
</div>
-->
</div>
</div>
<div
class=
"bottomButton"
>
<!--
<div
class=
"bottomButton"
>
<el-button
@
click=
"back"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"submitData"
>
提交
</el-button>
</div>
</div>
-->
</div>
</
template
>
...
...
@@ -42,13 +43,15 @@
},
data
()
{
return
{
url
:
""
,
breads
:
[
'应收账款买断管理'
,
'应收账款买断列表'
],
detail
:
""
,
id
:
""
}
},
created
()
{
this
.
id
=
this
.
$route
.
query
.
id
this
.
id
=
this
.
$route
.
params
.
id
this
.
url
=
this
.
$route
.
params
.
url
this
.
getcontract
()
},
methods
:
{
...
...
src/pages/supply/bid/joinProject/bidOpen/bidOpenhal.vue
View file @
faf4b7c8
...
...
@@ -44,7 +44,7 @@
</div>
<!-- 在线对话 -->
<div
class=
"dialogue"
style=
"margin-top: 30px;"
v-show=
"dialogue"
>
<JwChat
:taleList=
"dialogueList"
scrollType
@
enter=
"bindEnter"
v-model=
"content"
:toolConfig=
"tool"
>
<JwChat
:taleList=
"dialogueList"
scrollType
=
"scroll"
@
enter=
"bindEnter"
v-model=
"content"
:toolConfig=
"tool"
>
</JwChat>
</div>
<!--
<div
class=
"dialogue"
style=
"margin-top: 30px;"
v-show=
"dialogue"
>
...
...
src/pages/supply/bid/signupOnline/seePrice.vue
View file @
faf4b7c8
...
...
@@ -9,7 +9,7 @@
</div>
<div
class=
"centerButton"
>
<el-button
type=
"primary"
@
click=
"dialogFormVisible = true"
>
我要报价
</el-button>
<el-button
type=
"primary"
@
click=
"see"
>
查看
报价供应商情况
</el-button>
<el-button
type=
"primary"
@
click=
"see"
>
查看
其它供应商报价
</el-button>
</div>
</slot>
</priceDetail>
...
...
@@ -28,8 +28,8 @@
</div>
</el-dialog>
<!-- 报价供应商情况 -->
<el-dialog
:visible
.
sync=
"offerBidder"
title=
"
报价供应商情况
"
>
<dataTable
:table-data=
"offerBidderlist"
:columns=
"
查看其它供应商报价
"
:is-index=
"true"
>
<el-dialog
:visible
.
sync=
"offerBidder"
title=
"
查看其它供应商报价
"
>
<dataTable
:table-data=
"offerBidderlist"
:columns=
"
offerBiddercolumns
"
:is-index=
"true"
>
</dataTable>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"offerBidder = false"
>
取 消
</el-button>
...
...
src/pages/supply/buyOut/buyoutList.vue
View file @
faf4b7c8
...
...
@@ -81,7 +81,7 @@
},
created
()
{
this
.
getDropList
();
this
.
sendData
.
tender
CompanyId
=
localStorage
.
getItem
(
"companyId"
)
this
.
sendData
.
bid
CompanyId
=
localStorage
.
getItem
(
"companyId"
)
},
methods
:
{
contractSign
(
id
)
{
...
...
src/pages/supply/organization/jurisdictionSee.vue
View file @
faf4b7c8
src/router/index.js
View file @
faf4b7c8
...
...
@@ -514,6 +514,7 @@ export default new Router({
},
{
path
:
'/purchaser/buyOut/contractSign'
,
name
:
"/purchaser/buyOut/contractSign"
,
show
:
true
,
component
:
()
=>
import
(
'../pages/purchaser/buyOut/contractSign.vue'
)
},
...
...
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