Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
FuLiMini
Project
Overview
Details
Activity
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
wangjian
FuLiMini
Commits
bf462c4a
Commit
bf462c4a
authored
Apr 27, 2022
by
wangjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
0d16903a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
3 deletions
+38
-3
pages.json
pages.json
+9
-0
mine.vue
pages/mine/mine.vue
+1
-1
goods.vue
pagesA/goods/goods.vue
+1
-1
webView.vue
pagesA/webView/webView.vue
+25
-0
router.js
router/router.js
+2
-1
No files found.
pages.json
View file @
bf462c4a
...
...
@@ -145,6 +145,15 @@
}
}
,{
"path"
:
"webView/webView"
,
"style"
:
{
"navigationBarTitleText"
:
""
,
"enablePullDownRefresh"
:
false
}
}
]
}],
"preloadRule"
:{
...
...
pages/mine/mine.vue
View file @
bf462c4a
...
...
@@ -170,7 +170,7 @@
}
else
if
(
index
===
2
)
{
this
.
$router
.
push
(
'IntegralDetail'
)
}
else
if
(
index
===
3
)
{
this
.
$router
.
push
(
'WebView'
)
}
},
setting
()
{
...
...
pagesA/goods/goods.vue
View file @
bf462c4a
...
...
@@ -168,7 +168,7 @@
return
newContent
;
},
clickCustomer
()
{
this
.
$
wxCustomer
(
)
this
.
$
router
.
push
(
'WebView'
)
},
goSubmit
(
e
)
{
if
(
!
this
.
$store
.
state
.
isLogin
)
{
...
...
pagesA/webView/webView.vue
0 → 100644
View file @
bf462c4a
<
template
>
<view>
<web-view
:src=
"url"
></web-view>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
url
:
'https://qyflpt.sobot.com/chat/h5/v2/index.html?sysnum=dabbf814ab064e4ba9fe1f7e729db6ab&channelid=196'
};
},
onLoad
(
options
)
{
let
openUrl
=
options
.
url
;
if
(
openUrl
)
{
this
.
url
=
decodeURIComponent
(
openUrl
)
}
}
}
</
script
>
<
style
lang=
"scss"
>
</
style
>
router/router.js
View file @
bf462c4a
...
...
@@ -16,7 +16,8 @@ const routers = {
'OrderDetail'
:
'/pagesA/orderDetail/orderDetail'
,
'Coupon'
:
'/pagesA/coupon/coupon'
,
'AlertToLogin'
:
'/pagesA/AlertToLogin/AlertToLogin'
,
'Agreement'
:
'/pagesA/agreement/agreement'
'Agreement'
:
'/pagesA/agreement/agreement'
,
'WebView'
:
'/pagesA/webView/webView'
}
export
function
push
(
routerName
,
params
,
events
)
{
...
...
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