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
d1e45ca7
Commit
d1e45ca7
authored
Sep 29, 2019
by
linxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
1bc766fc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
11 deletions
+22
-11
base.vue
src/pages/intoApproval/intoApproval/base.vue
+12
-7
refund.vue
src/pages/intoApproval/intoApproval/refund.vue
+8
-2
rentInfo.vue
src/pages/intoApproval/intoApproval/rentInfo.vue
+1
-1
intoList.vue
src/pages/intoApproval/intoList.vue
+1
-1
No files found.
src/pages/intoApproval/intoApproval/base.vue
View file @
d1e45ca7
...
...
@@ -17,7 +17,7 @@
<input
type=
"checkbox"
@
click=
"select"
>
<span>
我本人已阅读本协议,并同意授权xxxx
</span>
</div>
<button
:class=
"[ischecked?'check1':'uncheck']
"
@
click=
"confirm"
>
同意
</button>
<button
class=
"appro
"
@
click=
"confirm"
>
同意
</button>
</div>
</div>
<div
v-if=
"downNum"
class=
"modal-show"
>
...
...
@@ -321,6 +321,17 @@ export default {
},
}
},
watch
:
{
'ischecked'
:
function
(
newVal
,
oldVal
)
{
let
appro
=
document
.
querySelector
(
'.appro'
)
console
.
log
(
oldVal
,
newVal
)
if
(
newVal
)
{
appro
.
style
.
backgroundColor
=
'#00469c'
}
else
{
appro
.
style
.
backgroundColor
=
'rgba(56, 63, 69, 0.5)'
}
},
},
created
()
{
if
(
this
.
bp_class
===
'NP'
)
{
this
.
getNPBase
()
...
...
@@ -329,7 +340,6 @@ export default {
}
},
mounted
()
{
// this.getRent()
this
.
getBonds
()
this
.
popProtocol
()
},
...
...
@@ -597,11 +607,6 @@ export default {
color: #fff;
bottom: 16px;
left: 30.5px;
}
.check1 {
background-color: #00469c;
}
.uncheck {
background-color: rgba(56, 63, 69, 0.5);
}
.title-box {
...
...
src/pages/intoApproval/intoApproval/refund.vue
View file @
d1e45ca7
...
...
@@ -76,7 +76,13 @@ export default {
},
data
()
{
return
{
info
:
{},
info
:
{
finance_amount
:
''
,
lease_charge
:
''
,
down_payment
:
''
,
lease_times
:
''
,
deposit
:
''
,
},
lists
:
[],
}
},
...
...
@@ -94,7 +100,7 @@ export default {
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
lists
=
res
.
lists
vm
.
info
=
res
.
info
Object
.
assign
(
vm
.
info
,
res
.
info
)
}
})
},
...
...
src/pages/intoApproval/intoApproval/rentInfo.vue
View file @
d1e45ca7
...
...
@@ -149,7 +149,7 @@ export default {
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
rentInfo
=
res
.
info
Object
.
assign
(
vm
.
rentInfo
,
res
.
info
)
}
})
},
...
...
src/pages/intoApproval/intoList.vue
View file @
d1e45ca7
...
...
@@ -61,7 +61,7 @@ export default {
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'prj_confirm_list_query'
let
param
=
{
user_phone
:
'18507155349'
,
user_phone
:
window
.
localStorage
.
user_phone
,
}
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
...
...
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