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
84abb85b
Commit
84abb85b
authored
Nov 05, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'message'
parent
665708b5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
5 deletions
+46
-5
iframTest.vue
src/pages/myInfo/iframTest.vue
+31
-0
my-info.vue
src/pages/myInfo/my-info.vue
+13
-5
index.js
src/router/index.js
+2
-0
No files found.
src/pages/myInfo/iframTest.vue
0 → 100644
View file @
84abb85b
<
template
>
<h-view
id=
"iframTest"
>
<h-header
class=
"header"
>
<div
slot=
"center"
class=
"top-word"
>
iframTest
</div>
</h-header>
<h-content>
<iframe
:src=
"url"
frameborder=
"0"
scrolling=
"no"
width=
"100%"
height=
"100%"
></iframe>
</h-content>
</h-view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
url
:
'http://221.6.10.202:10404/app/auth/h5/index?token=5BFD2AC183F446DA881B816C2E2C8AAB'
}
},
created
()
{
},
activated
()
{
},
methods
:
{},
}
</
script
>
<
style
lang=
"less"
scoped
>
</
style
>
src/pages/myInfo/my-info.vue
View file @
84abb85b
...
...
@@ -35,11 +35,11 @@
<img
src=
"@/assets/myInfo/unSign.png"
>
<p>
待签约
</p>
</div>
<!--
<div
class=
"content-wrap"
@
click=
"goConfirm"
>
<div
class=
"content-wrap"
@
click=
"goConfirm"
>
<span
:class=
"
{'content-wrap-class-width':confirmCount>99, 'content-wrap-class':confirmCount
<99
}"
>
{{
confirmCount
>
99
?
'99+'
:
confirmCount
}}
</span>
<img
src=
"@/assets/myInfo/unConfirm.png"
>
<p>
待确认
</p>
</div>
-->
</div>
<div
class=
"content-wrap"
>
<span
:class=
"
{'content-wrap-class-width':vedioCount>99, 'content-wrap-class':vedioCount
<99
}"
>
{{
vedioCount
>
99
?
'99+'
:
vedioCount
}}
</span>
<img
src=
"@/assets/myInfo/unFace.png"
>
...
...
@@ -136,7 +136,7 @@ export default {
},
},
created
()
{
if
(
this
.
user_bp_status
===
'APPROVED'
)
{
/*
if (this.user_bp_status === 'APPROVED') {
this.flag = false
} else {
this.flag = true
...
...
@@ -145,12 +145,17 @@ export default {
this.isAGENT = true
} else {
this.isAGENT = false
}
}
*/
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
userQuery
()
vm
.
numQuery
()
if
(
vm
.
user_bp_type
===
'AGENT'
)
{
vm
.
isAGENT
=
true
}
else
{
vm
.
isAGENT
=
false
}
})
next
()
},
...
...
@@ -170,8 +175,11 @@ export default {
},
// 进入待确认,(进件确认)
goConfirm
()
{
this
.
$router
.
push
({
/*
this.$router.push({
name: 'IntoList',
})*/
this
.
$router
.
push
({
name
:
'IframTest'
,
})
},
// 进入我的还款
...
...
src/router/index.js
View file @
84abb85b
...
...
@@ -21,6 +21,7 @@ import Location from '@/pages/home/location'
// 我的
import
MyInfo
from
'@/pages/myInfo/my-info'
import
IframTest
from
'@/pages/myInfo/iframTest'
// 我的收藏
import
MyProductList
from
'@/pages/myProductCollection/my-product-list'
...
...
@@ -237,6 +238,7 @@ export default new Router({
{
path
:
'/contract-records'
,
component
:
ContractRecords
,
name
:
'ContractRecords'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/repay-detail'
,
component
:
RepayDetail
,
name
:
'RepayDetail'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/repay-plans'
,
component
:
RepayPlans
,
name
:
'RepayPlans'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/ifram-test'
,
component
:
IframTest
,
name
:
'IframTest'
,
meta
:
{
keepAlive
:
false
}},
],
scrollBehavior
(
to
,
from
,
savedPosition
)
{
if
(
to
.
hash
)
{
...
...
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