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
8b8a3477
Commit
8b8a3477
authored
Oct 23, 2019
by
linxin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'liuxin' into develop
parents
08676f2a
39c0fe31
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
9 deletions
+12
-9
contract-record.vue
src/pages/pay/payment/contract-record.vue
+3
-6
first-pay.vue
src/pages/pay/payment/first-pay.vue
+1
-1
pay-entry.vue
src/pages/pay/payment/pay-entry.vue
+8
-2
No files found.
src/pages/pay/payment/contract-record.vue
View file @
8b8a3477
...
...
@@ -12,10 +12,7 @@
<div><span>
¥
</span>
{{
sumMoney
|
currency
}}
</div>
</div>
</div>
<h-content
v-if=
"info.length===0"
class=
"none"
>
<p>
暂无数据
</p>
</h-content>
<h-content
v-if=
"info.length!==0"
class=
"pay-content"
>
<h-content
class=
"pay-content"
>
<div
class=
"search"
>
<img
src=
"@/assets/payment/search.png"
alt=
""
>
<input
type=
"text"
placeholder=
"请输入合同号/车架号/承租人名称"
>
...
...
@@ -53,7 +50,7 @@
<span
slot=
"content"
>
{{
money
|
currency
}}
</span>
</item>
</list-item></h-content>
<div
v-if=
"info.length!==0"
class=
"prompt"
>
<div
class=
"prompt"
>
<div><img
src=
"@/assets/payment/prompt.png"
alt=
""
></div>
<div>
<p>
温馨提示
</p>
...
...
@@ -61,7 +58,7 @@
<p>
由于存在款项到账时差性,“已还金额”字段可能XXX,给您造成的不便,请谅解,谢谢!
</p>
</div>
</div>
<bottom-tab
v-if=
"info.length!==0"
>
<bottom-tab>
<tab-button
class=
"footer"
@
click
.
native=
"payDetail()"
>
支
付
</tab-button>
...
...
src/pages/pay/payment/first-pay.vue
View file @
8b8a3477
...
...
@@ -72,7 +72,7 @@ export default {
},
},
activated
()
{
this
.
money
=
this
.
pay_rent
//
this.money = this.pay_rent
},
methods
:
{
getRent
()
{
...
...
src/pages/pay/payment/pay-entry.vue
View file @
8b8a3477
...
...
@@ -68,8 +68,14 @@ export default {
},
computed
:
{},
watch
:
{},
activated
()
{
this
.
money
=
this
.
$route
.
params
.
sumMoney
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
if
(
from
.
name
===
'PaymentFirstPay'
)
{
vm
.
money
=
vm
.
$route
.
params
.
money
}
else
if
(
from
.
name
===
'PaymentContractRecord'
)
{
vm
.
money
=
vm
.
$route
.
params
.
sumMoney
}
})
},
methods
:
{
isSelect
(
way
)
{
...
...
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