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
d201bf88
Commit
d201bf88
authored
Jan 03, 2020
by
linxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
d6d99651
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
16 deletions
+63
-16
promise.png
src/assets/myInfo/promise.png
+0
-0
my-info.vue
src/pages/myInfo/my-info.vue
+13
-0
first-pay.vue
src/pages/pay/marginPay/first-pay.vue
+37
-3
baseInfo.vue
src/pages/userBindNew/org/baseInfo.vue
+13
-13
No files found.
src/assets/myInfo/promise.png
0 → 100644
View file @
d201bf88
4.58 KB
src/pages/myInfo/my-info.vue
View file @
d201bf88
...
@@ -41,6 +41,10 @@
...
@@ -41,6 +41,10 @@
<img
src=
"@/assets/myInfo/refund.png"
>
<img
src=
"@/assets/myInfo/refund.png"
>
<p>
租金还款
</p>
<p>
租金还款
</p>
</div>
</div>
<div
v-if=
"(user_bp_type==='AGENT')&&(user_bp_class==='ORG')&&(user_bp_status === 'APPROVED')"
@
click=
"changeCash"
>
<img
src=
"@/assets/myInfo/promise.png"
>
<p>
缴纳保证金
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -483,6 +487,15 @@ export default {
...
@@ -483,6 +487,15 @@ export default {
hlsPopup
.
showLongCenter
(
'请先进行用户绑定'
)
hlsPopup
.
showLongCenter
(
'请先进行用户绑定'
)
}
}
},
},
changeCash
()
{
if
(
window
.
localStorage
.
getItem
(
'bp_id'
)
!==
'undefined'
)
{
this
.
$router
.
push
({
name
:
'MarginFirstPay'
,
})
}
else
{
hlsPopup
.
showLongCenter
(
'请先进行用户绑定'
)
}
},
updateVersion
()
{
updateVersion
()
{
if
(
vum
.
Platform
.
isAndroid
())
{
if
(
vum
.
Platform
.
isAndroid
())
{
this
.
hote_update_version
(
this
.
hote_update_version
(
...
...
src/pages/pay/marginPay/first-pay.vue
View file @
d201bf88
...
@@ -18,7 +18,6 @@
...
@@ -18,7 +18,6 @@
</div>
</div>
</div>
</div>
</div>
</div>
<section
class=
"pay-content"
>
<section
class=
"pay-content"
>
<div
class=
"pos"
>
<div
class=
"pos"
>
<div
class=
"pay-money"
>
<div
class=
"pay-money"
>
...
@@ -34,6 +33,20 @@
...
@@ -34,6 +33,20 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"pos"
>
<div
class=
"pay-money"
>
<div
class=
"pay-icon"
>
<img
src=
"@/assets/payment/first-pay.png"
>
已还保证金
</div>
<div
class=
"pay-input"
>
<span>
已还保证金
</span>
<span
style=
"text-align:right;display:inline-block;margin-right:5px;"
>
¥
{{
Paied
|
currency
}}
</span>
<!--
<div
@
click=
"createOrder"
>
<img
src=
"@/assets/payment/into.png"
>
</div>
-->
</div>
</div>
</div>
<div
class=
"write"
>
<div
class=
"write"
>
<div
class=
"box"
>
<div
class=
"box"
>
<span>
备注
</span>
<span>
备注
</span>
...
@@ -67,17 +80,38 @@ export default {
...
@@ -67,17 +80,38 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
money
:
0
,
money
:
null
,
Paied
:
0
,
// 已缴纳金额
default
:
0
,
default
:
0
,
pay_note
:
''
,
// 备注
pay_note
:
''
,
// 备注
}
}
},
},
beforeRouteEnter
(
to
,
from
,
next
)
{
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{})
next
(
vm
=>
{
vm
.
getPaied
()
})
},
},
computed
:
{},
computed
:
{},
watch
:
{},
watch
:
{},
methods
:
{
methods
:
{
getPaied
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'bp_agent_query'
let
param
=
{
info
:
{
phone
:
window
.
localStorage
.
user_phone
,
},
}
vm
.
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
Paied
=
res
.
info
.
paid_deposit
}
else
{
vm
.
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
putOrder
(
money
)
{
putOrder
(
money
)
{
let
vm
=
this
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'create_order_agent_amt'
let
url
=
process
.
env
.
basePath
+
'create_order_agent_amt'
...
...
src/pages/userBindNew/org/baseInfo.vue
View file @
d201bf88
...
@@ -395,7 +395,7 @@
...
@@ -395,7 +395,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div
v-if=
"from&&isApproved&&isAGENT"
class=
"tax"
@
click=
"changeUndertake"
>
<div
v-if=
"from&&isApproved&&isAGENT"
class=
"tax"
@
click=
"changeUndertake"
>
<img
src=
"@/assets/userBind/tax.png"
class=
"left-img"
>
<img
src=
"@/assets/userBind/tax.png"
class=
"left-img"
>
<div>
<div>
...
@@ -404,8 +404,8 @@
...
@@ -404,8 +404,8 @@
</div>
</div>
<img
src=
"@/assets/userBind/arrow-right.png"
class=
"right-img"
>
<img
src=
"@/assets/userBind/arrow-right.png"
class=
"right-img"
>
</div>
</div>
</div>
</div>
-->
</h-content>
</
div></
h-content>
<bottom-tab
class=
"footer-button"
>
<bottom-tab
class=
"footer-button"
>
<!--
<tab-button
class=
"put"
@
click
.
native=
"handSubmit"
>
提交
</tab-button>
-->
<!--
<tab-button
class=
"put"
@
click
.
native=
"handSubmit"
>
提交
</tab-button>
-->
<tab-button
class=
"save"
@
click
.
native=
"verified"
>
下一步
</tab-button>
<tab-button
class=
"save"
@
click
.
native=
"verified"
>
下一步
</tab-button>
...
@@ -752,16 +752,16 @@ export default {
...
@@ -752,16 +752,16 @@ export default {
},
},
})
})
},
},
changeUndertake
()
{
//
changeUndertake () {
this
.
$router
.
push
({
//
this.$router.push({
name
:
'MarginFirstPay'
,
//
name: 'MarginFirstPay',
params
:
{
//
params: {
bp_id
:
this
.
$route
.
params
.
bp_id
,
//
bp_id: this.$route.params.bp_id,
status
:
this
.
$route
.
params
.
status
,
//
status: this.$route.params.status,
isAGENT
:
this
.
isAGENT
,
//
isAGENT: this.isAGENT,
},
//
},
})
//
})
},
//
},
addRows
(
e
)
{
addRows
(
e
)
{
let
addNum
=
parseInt
(
e
.
length
/
16
)
let
addNum
=
parseInt
(
e
.
length
/
16
)
if
(
addNum
===
0
)
{
if
(
addNum
===
0
)
{
...
...
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