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
8b2d4402
Commit
8b2d4402
authored
Oct 24, 2019
by
linxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
c27bf028
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
106 additions
and
77 deletions
+106
-77
contract-details.vue
src/pages/distributorSign/contract-details.vue
+2
-2
infoList.vue
src/pages/infoCenter/infoList.vue
+34
-27
my-info.vue
src/pages/myInfo/my-info.vue
+1
-1
contract-record.vue
src/pages/pay/firstPay/contract-record.vue
+0
-2
pay-entry.vue
src/pages/pay/firstPay/pay-entry.vue
+1
-1
pay-entry.vue
src/pages/pay/payment/pay-entry.vue
+1
-1
naturePerson.vue
src/pages/userBind/np/naturePerson.vue
+67
-43
No files found.
src/pages/distributorSign/contract-details.vue
View file @
8b2d4402
...
...
@@ -63,7 +63,7 @@
</div>
<div
class=
"center"
>
<p>
业务经办:
{{
baseInfo
.
bp_user_id_n
}}
</p>
<p>
联系电话:
{{
baseInfo
.
phone
}}
</p>
<p>
联系电话:
{{
baseInfo
.
cell_
phone
}}
</p>
</div>
<div
class=
"right1"
@
click=
"callUp(baseInfo.phone)"
>
<img
src=
"@/assets/distributorSign/calls.png"
alt=
""
>
...
...
@@ -385,7 +385,7 @@ export default {
params
:
{
project_id
:
window
.
sessionStorage
.
getItem
(
'project_id'
),
confirm_status
:
this
.
confirm_status
,
product_num
:
this
.
info
.
product_num
product_num
:
this
.
info
.
product_num
,
},
})
},
...
...
src/pages/infoCenter/infoList.vue
View file @
8b2d4402
...
...
@@ -4,44 +4,51 @@
<div
slot=
"center"
class=
"top-word"
>
消息通知
</div>
</h-header>
<h-content
class=
"content"
>
<div
class=
"card-info"
>
<div
v-for=
"(item,index) in list"
:key=
"index"
class=
"card-info"
>
<div
class=
"card-position"
>
<div
class=
"card-top"
>
<img
src=
"@/assets/infoCenter/info.png"
class=
"icon"
>
<span
class=
"title"
>
进件确认
</span>
<span
class=
"time"
>
2019-07-28
</span>
<span
class=
"title"
>
{{
item
.
notice_title
}}
</span>
<span
class=
"time"
>
{{
item
.
notice_time
}}
</span>
</div>
<img
src=
"@/assets/infoCenter/arrow.png"
class=
"arrow"
>
<div
class=
"message"
>
进件号:201903022001待您确认,请确认
</div>
</div>
</div>
<div
class=
"card-info"
>
<div
class=
"card-position"
>
<div
class=
"card-top"
>
<img
src=
"@/assets/infoCenter/info.png"
class=
"icon"
>
<span
class=
"title"
>
视屏面签
</span>
<span
class=
"time"
>
2019-07-28
</span>
</div>
<img
src=
"@/assets/infoCenter/arrow.png"
class=
"arrow"
>
<div
class=
"message"
>
进件号:201903022001于2019-08-29进行视频面签,届时请注意接收视频消息!
</div>
</div>
</div>
<div
class=
"card-info"
>
<div
class=
"card-position"
>
<div
class=
"card-top"
>
<img
src=
"@/assets/infoCenter/info.png"
class=
"icon"
>
<span
class=
"title"
>
保证金确认
</span>
<span
class=
"time"
>
2019-07-28
</span>
</div>
<img
src=
"@/assets/infoCenter/arrow.png"
class=
"arrow"
>
<div
class=
"message"
>
您有一条保证金缴纳确认信息待确认,请确认!
</div>
<div
class=
"message"
>
{{
item
.
notice_body
}}
</div>
</div>
</div>
</h-content>
</h-view>
</
template
>
<
script
>
export
default
{}
export
default
{
data
()
{
return
{
list
:
[],
}
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
getInfo
()
})
},
methods
:
{
getInfo
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'hls_app_notice_query'
let
param
=
{
phone
:
window
.
sessionStorage
.
getItem
(
'user_phone'
),
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
list
=
res
.
lists
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
},
}
</
script
>
<
style
lang=
"less"
scoped
>
#info-center {
...
...
src/pages/myInfo/my-info.vue
View file @
8b2d4402
...
...
@@ -323,7 +323,7 @@ export default {
vm
.
user_bp_status
=
res
.
info
.
user_bp_status
vm
.
user_bp_class
=
res
.
info
.
user_bp_class
vm
.
bp_id
=
res
.
info
.
user_bp_id
window
.
sessionStorage
.
setItem
(
'bp_id'
,
res
.
info
.
user_bp_id
)
window
.
sessionStorage
.
setItem
(
'bp_id'
,
7850
)
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
...
...
src/pages/pay/firstPay/contract-record.vue
View file @
8b2d4402
...
...
@@ -333,8 +333,6 @@ export default {
background: rgba(142,195,30,0.10);
height: 111px;
display: flex;
position: fixed;
bottom: 37px;
div:first-child {
flex: 1;
padding: 16px 0 0 16px;
...
...
src/pages/pay/firstPay/pay-entry.vue
View file @
8b2d4402
...
...
@@ -9,7 +9,7 @@
<h-content
class=
"entry-content"
>
<div
class=
"amount"
>
<p>
首付还款
</p>
<p>
交易金额
</p>
<div>
¥
{{
money
|
currency
}}
</div>
</div>
<list-item
:item-height=
"56"
class=
"pay-way"
>
...
...
src/pages/pay/payment/pay-entry.vue
View file @
8b2d4402
...
...
@@ -9,7 +9,7 @@
<h-content
class=
"entry-content"
>
<div
class=
"amount"
>
<p>
首付还款
</p>
<p>
交易金额
</p>
<div>
¥
{{
money
|
currency
}}
</div>
</div>
<list-item
:item-height=
"56"
class=
"pay-way"
>
...
...
src/pages/userBind/np/naturePerson.vue
View file @
8b2d4402
...
...
@@ -54,7 +54,12 @@
<img
:src=
"idCardFront"
style=
"width: 100%;height: 100%;margin: 0"
>
</div>
<div
v-if=
"isApproved && idCardFront"
>
<img
v-if=
"idCardFront"
:src=
"idCardFront"
style=
"width: 100%;height: 100%;margin: 0"
@
click=
"showBigPicture(idCardFront)"
>
<img
v-if=
"idCardFront"
:src=
"idCardFront"
style=
"width: 100%;height: 100%;margin: 0"
@
click=
"showBigPicture(idCardFront)"
>
</div>
<div
v-if=
"!idCardBack"
@
click=
"ocrShow('idCard', 'back')"
>
<img
src=
"@/assets/userBind/back.png"
>
...
...
@@ -64,7 +69,12 @@
<img
:src=
"idCardBack"
style=
"width: 100%;height: 100%;margin: 0"
>
</div>
<div
v-if=
"isApproved && idCardBack"
>
<img
v-if=
"idCardBack"
:src=
"idCardBack"
style=
"width: 100%;height: 100%;margin: 0"
@
click=
"showBigPicture(idCardBack)"
>
<img
v-if=
"idCardBack"
:src=
"idCardBack"
style=
"width: 100%;height: 100%;margin: 0"
@
click=
"showBigPicture(idCardBack)"
>
</div>
</div>
</div>
...
...
@@ -204,23 +214,33 @@
<span>
{{
list
.
description
}}
</span>
<div
class=
"img-content"
>
<!--待上传图片列表-->
<div
v-for=
"(item, index) in upload_list"
v-if=
"item.check_id==list.check_id"
:key=
"index"
class=
"card-upload"
>
<img
:src=
"item.picture"
@
click=
"showBigPicture(item.picture)"
>
<div
v-for=
"(item, index) in upload_list"
v-if=
"item.check_id==list.check_id"
:key=
"index"
class=
"card-upload"
>
<img
:src=
"item.picture"
@
click=
"showBigPicture(item.picture)"
>
<div
class=
"close"
@
click=
"remove_pic(item.attachment_id,index)"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
</div>
</div>
<!--从服务器上下载的图片-->
<div
v-for=
"item in dowload_list"
>
<div
v-for=
"(pic, index) in item"
v-if=
"pic.check_id==list.check_id"
:key=
"index"
class=
"card-upload"
>
<img
:src=
"pic.url"
@
click=
"showBigPicture(pic.url)"
>
<div
v-for=
"(pic, index) in item"
v-if=
"pic.check_id==list.check_id"
:key=
"index"
class=
"card-upload"
>
<img
:src=
"pic.url"
@
click=
"showBigPicture(pic.url)"
>
<div
class=
"close"
@
click=
"delete_pic(pic.attachment_id)"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
</div>
</div>
</div>
<div
class=
"card-upload"
@
click=
"imgUploadShow(list.check_id)"
>
<img
src=
"@/assets/userBind/camera.png"
class=
"upload-btn"
>
<img
src=
"@/assets/userBind/camera.png"
class=
"upload-btn"
>
</div>
</div>
</div>
...
...
@@ -231,10 +251,15 @@
<p>
已缴纳:500000
</p>
</div>
<img
src=
"@/assets/userBind/arrow-right.png"
class=
"right-img"
>
</div>
-->
</div>
-->
</div>
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
@
getList=
"getList"
/>
<BankInfo
v-show=
"tabNum==1"
:getBankList=
"getBankList"
@
getInfo=
"getInfo"
@
getList=
"getList"
/>
<InvoiceInfo
v-show=
"tabNum==2"
:baseInfo=
"baseInfo"
...
...
@@ -266,11 +291,7 @@
style=
"height: 38%;"
@
click=
"ocrShow('bankCard', '')"
>
<img
v-if=
"!bankImg && isApproved"
src=
"@/assets/userBind/addBack.png"
class=
"addBack"
>
<img
v-if=
"!bankImg && isApproved"
src=
"@/assets/userBind/addBack.png"
class=
"addBack"
>
<list-item
:item-height=
"44"
class=
"card-Info"
>
<item>
<div
slot=
"name"
>
银行卡卡号
</div>
...
...
@@ -900,7 +921,6 @@ export default {
},
addRowsLive
(
e
)
{
let
addNum
=
parseInt
(
e
.
length
/
16
)
// console.log(this.$refs.myTestareaLive.offsetHeight)
if
(
addNum
===
0
)
{
this
.
$refs
.
myTestareaLive
.
rows
=
1
}
else
if
(
addNum
>=
addNum
-
1
&&
addNum
<
addNum
+
1
)
{
...
...
@@ -1001,7 +1021,7 @@ export default {
this
.
showModalValue
=
false
},
getInfo
(
i
,
isClear
)
{
if
(
isClear
)
{
if
(
isClear
)
{
this
.
bank
=
{}
}
this
.
showModalValue
=
i
...
...
@@ -1263,43 +1283,47 @@ export default {
textarea {
text-align: right;
}
.tax{
width:351px;
// .compute{
// display:block;
// font-size: 14px;
// }
.tax {
width: 351px;
height: 78px;
background:#fff;
margin:0 auto;
background:
#fff;
margin:
0 auto;
margin-bottom: 30px;
display:flex;
display:
flex;
align-items: center;
.left-img{
width:24px;
height:28px;
flex:2.5;
padding-left:24px;
.left-img
{
width:
24px;
height:
28px;
flex:
2.5;
padding-left:
24px;
}
div{
flex:25;
padding-left:24px;
span{
div
{
flex:
25;
padding-left:
24px;
span
{
font-family: PingFangSC-Regular;
font-size: 14px;
color: #383
F
45;
color: #383
f
45;
letter-spacing: 0;
line-height: 22px;
}
p{
p
{
font-family: PingFangSC-Regular;
font-size: 12px;
color: rgba(56,
63,69,0.50
);
color: rgba(56,
63, 69, 0.5
);
letter-spacing: 0;
line-height: 22px;
}
}
.right-img{
width:10px;
height:16px;
flex:1;
padding-right:21px;
.right-img
{
width:
10px;
height:
16px;
flex:
1;
padding-right:
21px;
}
}
.header {
...
...
@@ -1420,10 +1444,10 @@ export default {
float: left;
.close {
position: relative;
color: #
F96F
68;
color: #
f96f
68;
margin-top: -100%;
margin-left: -10%;
img{
img
{
width: 14px;
height: 14px;
}
...
...
@@ -1432,7 +1456,7 @@ export default {
width: 88px;
height: 88px;
}
.upload-btn{
.upload-btn
{
width: 24px;
height: 24px;
}
...
...
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