Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
X
XiTianSenMall
Project
Project
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
leiqingsong
XiTianSenMall
Commits
2742a920
Commit
2742a920
authored
Mar 17, 2021
by
leiqingsong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_lqs' into 'master'
修改 See merge request
!89
parents
bb608855
4bf6f10d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
191 additions
and
16 deletions
+191
-16
instructions.vue
H5/src/views/instructions.vue
+176
-12
invite.vue
H5/src/views/invite.vue
+9
-1
settings.vue
H5/src/views/settings.vue
+6
-3
No files found.
H5/src/views/instructions.vue
View file @
2742a920
This diff is collapsed.
Click to expand it.
H5/src/views/invite.vue
View file @
2742a920
...
...
@@ -6,7 +6,7 @@
size=
"20"
class=
"nav-left"
color=
"#ffffff"
@
click=
"
$router.go(-1)
"
@
click=
"
handlerBack
"
/>
<img
:src=
"imgSrc"
alt=
""
class=
"imgCode"
/>
</div>
...
...
@@ -25,6 +25,14 @@ export default {
this
.
inviteCode
();
},
methods
:
{
handlerBack
()
{
try
{
this
.
$bridgeToAppFun
.
navigateBack
();
}
catch
{
console
.
log
(
"不能和App交互"
);
this
.
$router
.
go
(
-
1
);
}
},
inviteCode
()
{
const
_this
=
this
;
let
loading
=
_this
.
$toast
.
loading
({
...
...
H5/src/views/settings.vue
View file @
2742a920
...
...
@@ -84,11 +84,14 @@ export default {
});
},
logout
()
{
logout
().
then
().
catch
(
err
=>
{
console
.
log
(
'后台退出err'
,
err
);
logout
().
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
localStorage
.
clear
()
}
}).
catch
(
err
=>
{
console
.
log
(
err
);
});
this
.
$bridgeToAppFun
.
logoutToApp
();
localStorage
.
removeItem
(
"token"
);
},
jumpToInstructions
()
{
this
.
$router
.
push
(
"/instructions"
);
...
...
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