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
5a3e2af3
Commit
5a3e2af3
authored
Oct 25, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'修改页面变黑'
parent
f742bf9e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
8 deletions
+30
-8
contract-details.vue
src/pages/distributorSign/contract-details.vue
+6
-3
base.vue
src/pages/intoApproval/intoApproval/base.vue
+1
-1
my-info.vue
src/pages/myInfo/my-info.vue
+23
-4
No files found.
src/pages/distributorSign/contract-details.vue
View file @
5a3e2af3
...
...
@@ -537,7 +537,8 @@ export default {
.repay-plan {
height: 44px;
width: 100%;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
p {
font-family: PingFangSC-Semibold;
font-size: 14px;
...
...
@@ -592,7 +593,8 @@ export default {
.left {
width: 16%;
height: 60px;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
display: flex;
justify-content: center;
align-items: center
...
...
@@ -601,7 +603,8 @@ export default {
height: 100%;
width: 66%;
margin-left: 2px;
background: rgba(0,70,156,0.03);
// background: rgba(0,70,156,0.03);
background: #F2F2F2;
p {
height: 30px;
line-height: 30px;
...
...
src/pages/intoApproval/intoApproval/base.vue
View file @
5a3e2af3
...
...
@@ -465,7 +465,7 @@ export default {
if
(
this
.
confirm_status
!==
'APPROVED'
)
{
this
.
popProtocol
()
}
this
.
getList
()
//
this.getList()
this
.
isConfirm
=
this
.
$route
.
params
.
isConfirm
},
methods
:
{
...
...
src/pages/myInfo/my-info.vue
View file @
5a3e2af3
...
...
@@ -98,10 +98,10 @@ export default {
user_phone
:
''
,
user_bp_name
:
''
,
user_bp_type
:
''
,
signCount
:
10
,
confirmCount
:
100
,
vedioCount
:
0
,
productCount
:
11
,
signCount
:
'0'
,
confirmCount
:
'0'
,
vedioCount
:
'0'
,
productCount
:
'0'
,
}
},
watch
:
{
...
...
@@ -135,6 +135,7 @@ export default {
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
userQuery
()
vm
.
numQuery
()
})
next
()
},
...
...
@@ -340,6 +341,24 @@ export default {
}
})
},
numQuery
()
{
let
vm
=
this
let
url
=
$config
.
basePath
+
'number_display_query'
let
param
=
{
phone
:
window
.
localStorage
.
getItem
(
'user_phone'
),
}
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
if
(
res
.
result
===
'S'
)
{
if
(
'info'
in
res
){
vm
.
signCount
=
res
.
info
.
con_sign_num
vm
.
confirmCount
=
res
.
info
.
con_confirm_num
vm
.
productCount
=
res
.
info
.
collect_num
}
}
else
{
this
.
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
},
}
</
script
>
...
...
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