Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
Project
Project
Details
Activity
Releases
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
xugong
hls-xcmg-vue-app
Commits
ae60dc78
Commit
ae60dc78
authored
Oct 25, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改合同签约还款计划获取项目id'
parent
3d308eae
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
45 deletions
+30
-45
financ-details.vue
src/pages/distributorSign/financ-details.vue
+1
-1
reimburse-detail.vue
src/pages/reimburseMyself/reimburse-detail.vue
+28
-43
reimburse-myself-list.Vue
src/pages/reimburseMyself/reimburse-myself-list.Vue
+1
-1
No files found.
src/pages/distributorSign/financ-details.vue
View file @
ae60dc78
...
...
@@ -105,7 +105,7 @@ export default {
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'prj_cashflow_query'
let
param
=
{
project_id
:
window
.
sessionStorage
.
getItem
(
'project_id'
)
,
project_id
:
this
.
$route
.
params
.
project_id
,
}
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
...
...
src/pages/reimburseMyself/reimburse-detail.vue
View file @
ae60dc78
...
...
@@ -45,67 +45,34 @@
<div
slot=
"content"
>
{{
'暂无字段'
}}
</div>
</item>
</list-item>
<div
class=
"contract"
>
<div
class=
"contract"
v-for=
"(list,index) in conList"
:key=
"index"
>
<div>
<div
class=
"top"
>
<img
src=
"@/assets/reimburseMyself/q.png"
>
<span
class=
"number"
>
合同号
</span>
<span>
CON201903022001
</span>
<span>
{{
list
.
project_number
}}
</span>
</div>
<div
class=
"bottom"
>
<list-item
:item-height=
"30"
>
<div
class=
"bottom"
v-for=
"(item,indexTwo) in list.con_lists"
:key=
"indexTwo"
>
<list-item
>
<item>
<div
slot=
"name"
>
首付款
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
<div
slot=
"content"
>
{{
item
.
down_payment
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
保证金
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
<div
slot=
"content"
>
{{
item
.
deposit
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
手续费
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
<div
slot=
"content"
>
{{
item
.
lease_charge
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
GPS费用
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
<div
slot=
"content"
>
{{
item
.
gps_fee
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
保险押金
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
</item>
</list-item>
</div>
</div>
</div>
<div
class=
"contract"
>
<div>
<div
class=
"top"
>
<img
src=
"@/assets/reimburseMyself/q.png"
>
<span
class=
"number"
>
合同号
</span>
<span>
CON201903022001
</span>
</div>
<div
class=
"bottom"
>
<list-item
:item-height=
"30"
>
<item>
<div
slot=
"name"
>
首付款
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
保证金
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
手续费
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
GPS费用
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
保险押金
</div>
<div
slot=
"content"
>
{{
'20000'
|
currency
}}
</div>
<div
slot=
"content"
>
{{
item
.
insurance_fee
|
currency
}}
</div>
</item>
</list-item>
</div>
...
...
@@ -120,11 +87,13 @@ export default {
data
()
{
return
{
detail
:
{},
conList
:
[],
}
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
getDetail
()
vm
.
getConList
()
})
},
created
:
function
()
{},
...
...
@@ -148,6 +117,22 @@ export default {
}
})
},
getConList
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'my_con_list_query'
let
param
=
{
order_id
:
vm
.
$route
.
params
.
order_id
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
conList
=
res
.
prj_lists
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
},
}
</
script
>
...
...
@@ -199,7 +184,7 @@ export default {
}
.contract {
width: 359px;
height: 194.5px;
//
height: 194.5px;
background-color: #fff;
margin: 0 auto;
margin-top: 8px;
...
...
src/pages/reimburseMyself/reimburse-myself-list.Vue
View file @
ae60dc78
...
...
@@ -29,7 +29,7 @@
<div
slot=
"content"
class=
"money-font"
>
{{
list
.
orderamount
|
currency
}}
</div>
</item>
<item>
<
img
slot=
"left-icon"
src=
""
class=
"left-icon"
>
<
div
slot=
"left-icon"
class=
"left-icon"
></div
>
<div
slot=
"name"
class=
"time-font"
>
还款时间
</div>
<div
slot=
"content"
class=
"time-font"
>
{{
list
.
order_date
}}
</div>
</item>
...
...
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