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
1b630862
Commit
1b630862
authored
Nov 11, 2019
by
linxin
Browse files
Options
Browse Files
Download
Plain Diff
解决冲突
parents
536aa9bb
1b27ffe1
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
612 additions
and
194 deletions
+612
-194
refund.vue
src/pages/contractRepayment/refund.vue
+1
-0
repay-details.vue
src/pages/contractRepayment/repay-details.vue
+1
-1
repay-plan.vue
src/pages/contractRepayment/repay-plan.vue
+0
-1
contract-record.vue
src/pages/pay/firstPay/contract-record.vue
+4
-3
first-pay.vue
src/pages/pay/firstPay/first-pay.vue
+7
-3
pay-entry.vue
src/pages/pay/firstPay/pay-entry.vue
+213
-125
new-list.vue
src/pages/pay/payment/new-list.vue
+2
-2
pay-entry.vue
src/pages/pay/payment/pay-entry.vue
+382
-57
video-list.vue
src/pages/videoSign/video-list.vue
+2
-2
No files found.
src/pages/contractRepayment/refund.vue
View file @
1b630862
...
...
@@ -107,6 +107,7 @@ export default {
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
show
=
false
vm
.
getRefund
()
})
},
...
...
src/pages/contractRepayment/repay-details.vue
View file @
1b630862
...
...
@@ -28,7 +28,7 @@
</item>
<item>
<div
slot=
"name"
>
合同金额
</div>
<div
slot=
"content"
>
{{
detailInfo
.
total_price
}}
</div>
<div
slot=
"content"
>
{{
detailInfo
.
total_price
|
currency
}}
</div>
</item>
<item>
<div
slot=
"name"
>
商务政策
</div>
...
...
src/pages/contractRepayment/repay-plan.vue
View file @
1b630862
...
...
@@ -27,7 +27,6 @@
</div>
</div>
</h-content>
</h-view>
</
template
>
...
...
src/pages/pay/firstPay/contract-record.vue
View file @
1b630862
...
...
@@ -34,7 +34,7 @@
<p>
本次还款
</p>
</div>
<div
class=
"item-right"
>
<p>
{{
e
.
due_amount
|
currency
}}
</p>
<p>
{{
parseFloat
(
e
.
due_amount
).
toFixed
(
2
)
|
currency
}}
</p>
<p>
{{
e
.
received_amount
|
currency
}}
</p>
<input
v-model=
"e.amount"
type=
"text"
placeholder=
"请输入还款金额"
>
</div>
...
...
@@ -102,7 +102,7 @@ export default {
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
//
vm.getDetail()
vm
.
getDetail
()
})
},
...
...
@@ -312,7 +312,8 @@ export default {
border: none;
border-bottom: 1px solid #1d3fff;
font-size: 13px;
text-align: center;
text-align: right;
float: right;
}
input::placeholder {
font-family: PingFangSC-Regular;
...
...
src/pages/pay/firstPay/first-pay.vue
View file @
1b630862
...
...
@@ -13,7 +13,7 @@
<div
class=
"title"
>
当前应付
</div>
<div
class=
"data"
>
<span>
¥
</span>
{{
money
|
currency
}}
{{
money
ToFix
|
currency
}}
</div>
</div>
</div>
...
...
@@ -27,7 +27,7 @@
</div>
<div
class=
"pay-input"
>
<span>
应还首付款
</span>
<input
v-model=
"money"
type=
"text"
placeholder=
"请输入支付金额"
>
<input
v-model=
"money
ToFix
"
type=
"text"
placeholder=
"请输入支付金额"
>
<div
@
click=
"createOrder"
>
<img
src=
"@/assets/payment/into.png"
>
</div>
...
...
@@ -73,7 +73,11 @@ export default {
}
})
},
computed
:
{},
computed
:
{
moneyToFix
()
{
return
parseFloat
(
this
.
money
).
toFixed
(
2
)
},
},
watch
:
{},
methods
:
{
getDownPayment
()
{
...
...
src/pages/pay/firstPay/pay-entry.vue
View file @
1b630862
This diff is collapsed.
Click to expand it.
src/pages/pay/payment/new-list.vue
View file @
1b630862
...
...
@@ -39,7 +39,7 @@
<img
src=
"@/assets/payment/first-pay.png"
>
逾期利息
</div>
<div
class=
"pay-input"
>
<span>
应还
利息
</span>
<span>
逾期
利息
</span>
<input
v-model=
"liquidated_damages"
readonly
type=
"text"
placeholder=
"请输入支付金额"
>
</div>
</div>
...
...
@@ -86,7 +86,7 @@ export default {
},
computed
:
{},
watch
:
{
'
pay_rent
'
:
{
'
liquidated_damages
'
:
{
handler
()
{
this
.
money
=
parseFloat
(
parseFloat
(
this
.
pay_rent
)
+
parseFloat
(
this
.
liquidated_damages
))
},
...
...
src/pages/pay/payment/pay-entry.vue
View file @
1b630862
This diff is collapsed.
Click to expand it.
src/pages/videoSign/video-list.vue
View file @
1b630862
...
...
@@ -20,7 +20,7 @@
</div>
<div
class=
"right"
>
<div
class=
"right-top"
>
<span>
进件
号
</span>
<span>
合同
号
</span>
<span>
{{
item
.
project_number
}}
</span>
</div>
<div
class=
"right-bottom"
>
...
...
@@ -30,7 +30,7 @@
<span>
{{
item
.
bp_name
}}
</span>
</li>
<li>
已还租金
产品线
<span>
{{
item
.
division_n
}}
</span>
</li>
<li>
...
...
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