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
93f9ae9d
Commit
93f9ae9d
authored
Oct 17, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://hel.hand-china.com/xugong/hls-xcmg-vue-app
into develop
parents
0624cf6c
9b6aae93
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
122 additions
and
3 deletions
+122
-3
arrow-right.png
src/assets/userBind/arrow-right.png
+0
-0
tax.png
src/assets/userBind/tax.png
+0
-0
my-info.vue
src/pages/myInfo/my-info.vue
+18
-1
naturePerson.vue
src/pages/userBind/np/naturePerson.vue
+51
-2
enterprise.vue
src/pages/userBind/org/enterprise.vue
+53
-0
No files found.
src/assets/userBind/arrow-right.png
0 → 100644
View file @
93f9ae9d
370 Bytes
src/assets/userBind/tax.png
0 → 100644
View file @
93f9ae9d
2.28 KB
src/pages/myInfo/my-info.vue
View file @
93f9ae9d
...
...
@@ -87,21 +87,30 @@ export default {
data
()
{
return
{
flag
:
true
,
isAGENT
:
false
,
user_bp_status
:
''
,
user_bp_class
:
''
,
bp_id
:
''
,
user_phone
:
''
,
user_bp_name
:
''
,
user_bp_type
:
''
,
}
},
watch
:
{
'user_bp_status'
(
newVal
,
o
ul
Val
)
{
'user_bp_status'
(
newVal
,
o
ld
Val
)
{
if
(
newVal
===
'APPROVED'
)
{
this
.
flag
=
false
}
else
{
this
.
flag
=
true
}
},
'user_bp_type'
(
newVal
,
oldVal
)
{
if
(
newVal
===
'AGENT'
)
{
this
.
isAGENT
=
true
}
else
{
this
.
isAGENT
=
false
}
},
},
created
()
{
if
(
this
.
user_bp_status
===
'APPROVED'
)
{
...
...
@@ -109,6 +118,11 @@ export default {
}
else
{
this
.
flag
=
true
}
if
(
this
.
user_bp_type
===
'AGENT'
)
{
this
.
isAGENT
=
true
}
else
{
this
.
isAGENT
=
false
}
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
...
...
@@ -239,6 +253,7 @@ export default {
params
:
{
bp_id
:
this
.
bp_id
,
user_bp_name
:
this
.
user_bp_name
,
isAGENT
:
this
.
isAGENT
,
status
:
'APPROVED'
,
},
})
...
...
@@ -248,6 +263,7 @@ export default {
params
:
{
bp_id
:
this
.
bp_id
,
user_bp_name
:
this
.
user_bp_name
,
isAGENT
:
this
.
isAGENT
,
status
:
'APPROVED'
,
},
})
...
...
@@ -279,6 +295,7 @@ export default {
vm
.
user_bp_class
=
res
.
info
.
user_bp_class
vm
.
bp_id
=
res
.
info
.
user_bp_id
vm
.
user_bp_name
=
res
.
info
.
user_bp_name
vm
.
user_bp_type
=
res
.
info
.
user_bp_type
vm
.
user_phone
=
res
.
info
.
user_phone
}
else
{
this
.
hlsPopup
.
showLongCenter
(
res
.
message
)
...
...
src/pages/userBind/np/naturePerson.vue
View file @
93f9ae9d
...
...
@@ -212,7 +212,16 @@
</div>
</div>
</div>
<div
v-if=
"from&&isApproved&&isAGENT"
class=
"tax"
@
click=
"changeUndertake"
>
<img
src=
"@/assets/userBind/tax.png"
class=
"left-img"
>
<div>
<span>
缴纳保证金
</span>
<p>
已缴纳:500000
</p>
</div>
<img
src=
"@/assets/userBind/arrow-right.png"
class=
"right-img"
>
</div>
</div>
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
@
getList=
"getList"
/>
<InvoiceInfo
v-show=
"tabNum==2"
...
...
@@ -296,6 +305,7 @@ export default {
showModalValue
:
false
,
isApproved
:
false
,
isSave
:
false
,
isAGENT
:
this
.
$route
.
params
.
isAGENT
,
isSelected
:
false
,
tabNum
:
0
,
from
:
false
,
...
...
@@ -746,7 +756,7 @@ export default {
}
else
{
if
(
ocrType
===
'idCard'
)
{
vm
.
idCardEditFlag
=
true
// 身份证图片状态已修改
type
===
'front'
?
(
vm
.
idCardFront
=
imgdata
,
vm
.
idCardIdentify
(
imgdata
),
vm
.
idCardImgList
.
push
({
'url'
:
imgdata
,
'fileName'
:
'front'
}))
:
(
vm
.
idCardBack
=
imgdata
,
vm
.
idCardImgList
.
push
({
'url'
:
imgdata
,
'fileName'
:
'back'
}))
type
===
'front'
?
(
vm
.
idCardFront
=
imgdata
,
vm
.
idCardIdentify
(
imgdata
),
vm
.
idCardImgList
.
push
({
'url'
:
imgdata
,
'fileName'
:
'front'
}))
:
(
vm
.
idCardBack
=
imgdata
,
vm
.
idCardImgList
.
push
({
'url'
:
imgdata
,
'fileName'
:
'back'
}))
}
else
if
(
ocrType
===
'bankCard'
)
{
vm
.
bankImg
=
imgdata
vm
.
bankCardIdentify
(
imgdata
)
...
...
@@ -772,7 +782,7 @@ export default {
}
else
{
if
(
ocrType
===
'idCard'
)
{
vm
.
idCardEditFlag
=
true
// 身份证图片状态已修改
type
===
'front'
?
(
vm
.
idCardFront
=
imgUrl
[
0
],
vm
.
idCardIdentify
(
imgUrl
[
0
]),
vm
.
idCardImgList
.
push
({
'url'
:
imgUrl
[
0
],
'fileName'
:
'front'
}))
:
(
vm
.
idCardBack
=
imgUrl
[
0
],
vm
.
idCardImgList
.
push
({
'url'
:
imgUrl
[
0
],
'fileName'
:
'back'
}))
type
===
'front'
?
(
vm
.
idCardFront
=
imgUrl
[
0
],
vm
.
idCardIdentify
(
imgUrl
[
0
]),
vm
.
idCardImgList
.
push
({
'url'
:
imgUrl
[
0
],
'fileName'
:
'front'
}))
:
(
vm
.
idCardBack
=
imgUrl
[
0
],
vm
.
idCardImgList
.
push
({
'url'
:
imgUrl
[
0
],
'fileName'
:
'back'
}))
}
else
if
(
ocrType
===
'bankCard'
)
{
vm
.
bankImg
=
imgUrl
[
0
]
vm
.
bankCardIdentify
(
imgUrl
[
0
])
...
...
@@ -1172,6 +1182,45 @@ export default {
textarea {
text-align: right;
}
.tax{
width:351px;
height: 78px;
background:#fff;
margin:0 auto;
margin-bottom: 30px;
display:flex;
align-items: center;
.left-img{
width:24px;
height:28px;
flex:2.5;
padding-left:24px;
}
div{
flex:25;
padding-left:24px;
span{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #383F45;
letter-spacing: 0;
line-height: 22px;
}
p{
font-family: PingFangSC-Regular;
font-size: 12px;
color: rgba(56,63,69,0.50);
letter-spacing: 0;
line-height: 22px;
}
}
.right-img{
width:10px;
height:16px;
flex:1;
padding-right:21px;
}
}
.header {
background-color: #00469c;
color: #fff;
...
...
src/pages/userBind/org/enterprise.vue
View file @
93f9ae9d
...
...
@@ -316,6 +316,14 @@
</div>
</div>
</div>
<div
v-if=
"from&&isApproved&&isAGENT"
class=
"tax"
@
click=
"changeUndertake"
>
<img
src=
"@/assets/userBind/tax.png"
class=
"left-img"
>
<div>
<span>
缴纳保证金
</span>
<p>
已缴纳:500000
</p>
</div>
<img
src=
"@/assets/userBind/arrow-right.png"
class=
"right-img"
>
</div>
</div>
<!--
<BankInfo
v-show=
"tabNum==1"
:bp_id=
"bp_id"
@
getInfo=
"getInfo"
/>
-->
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
@
getList=
"getList"
/>
...
...
@@ -408,6 +416,7 @@ export default {
bpClass
:
''
,
from
:
false
,
isApproved
:
false
,
isAGENT
:
this
.
$route
.
params
.
isAGENT
,
img_url
:
{},
typeList
:
[],
backList
:
[],
...
...
@@ -567,6 +576,11 @@ export default {
}
})
},
changeUndertake
()
{
this
.
$router
.
push
({
name
:
'MarginFirstPay'
,
})
},
addRows
(
e
)
{
let
addNum
=
parseInt
(
e
.
length
/
16
)
if
(
addNum
===
0
)
{
...
...
@@ -1426,6 +1440,45 @@ export default {
text-align: right;
// padding-top:16px;
}
.tax{
width:351px;
height: 78px;
background:#fff;
margin:0 auto;
margin-bottom: 15px;
display:flex;
align-items: center;
.left-img{
width:24px;
height:28px;
flex:2.5;
padding-left:24px;
}
div{
flex:25;
padding-left:24px;
span{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #383F45;
letter-spacing: 0;
line-height: 22px;
}
p{
font-family: PingFangSC-Regular;
font-size: 12px;
color: rgba(56,63,69,0.50);
letter-spacing: 0;
line-height: 22px;
}
}
.right-img{
width:10px;
height:16px;
flex:1;
padding-right:21px;
}
}
.header {
background-color: #00469c;
color: #fff;
...
...
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