Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mayi-mp-shop
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
程默
mayi-mp-shop
Commits
4b433665
Commit
4b433665
authored
Mar 20, 2020
by
李嘉林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
开播提醒
parent
e3c4e087
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
16 deletions
+47
-16
src/components/livedModel/notStarted.vue
+47
-16
No files found.
src/components/livedModel/notStarted.vue
View file @
4b433665
...
...
@@ -15,8 +15,8 @@ export default {
name
:
""
,
data
()
{
return
{
liveId
:
0
,
startTime
:
null
,
liveId
:
0
,
startTime
:
null
};
},
components
:
{
...
...
@@ -24,35 +24,66 @@ export default {
},
computed
:
{},
created
()
{},
onLoad
(
options
){
onLoad
(
options
)
{
let
params
=
JSON
.
parse
(
options
.
params
);
this
.
liveId
=
params
.
liveId
;
console
.
log
(
this
.
info
,
'--------------------126'
)
this
.
startTime
=
this
.
info
.
startTime
;
this
.
liveId
=
params
.
liveId
;
console
.
log
(
this
.
info
,
"--------------------126"
);
this
.
startTime
=
this
.
info
.
startTime
;
},
mounted
()
{},
methods
:
{
// 开播提醒
remind
()
{
console
.
log
(
"点击开播,'------------34"
)
console
.
log
(
"点击开播,'------------34"
);
try
{
const
subscribeMessageObj
=
this
.
$store
.
state
.
subscribeMessageObj
;
if
(
subscribeMessageObj
&&
Object
.
keys
(
subscribeMessageObj
).
length
>
0
)
{
// TODO 开播订阅
const
tmplIds
=
[];
for
(
var
key
in
subscribeMessageObj
)
{
// 改成开播key
if
(
key
==
"gift_be_expire"
)
{
tmplIds
.
push
(
subscribeMessageObj
[
key
]);
}
}
if
(
tmplIds
.
length
>
0
)
{
wx
.
requestSubscribeMessage
({
tmplIds
:
tmplIds
,
success
(
res
)
{
console
.
log
(
"message success response: "
,
res
);
},
fail
(
res
)
{
console
.
log
(
"message fail response: "
,
res
);
}
});
}
}
}
catch
(
err
)
{
console
.
error
(
"subscribeMessage-err"
,
err
);
}
},
// 是否登录
isLogin
(){
let
_this
=
this
;
isLogin
()
{
let
_this
=
this
;
wx
.
getStorage
({
key
:
"sessionid"
,
success
(
res
)
{
_this
.
remind
();
},
fail
(
res
)
{
console
.
log
(
"未登录------150"
)
console
.
log
(
"未登录------150"
)
;
// 跳转登录页
let
backUrl
=
'/lived/main'
;
let
query
=
{
liveId
:
_this
.
liveId
,
fromType
:
"mini"
,
}
let
url
=
`/pages/login/main?back=
${
backUrl
}
¶ms=
${
JSON
.
stringify
(
query
)}
`
;
let
backUrl
=
"/lived/main"
;
let
query
=
{
liveId
:
_this
.
liveId
,
fromType
:
"mini"
};
let
url
=
`/pages/login/main?back=
${
backUrl
}
¶ms=
${
JSON
.
stringify
(
query
)}
`
;
wx
.
navigateTo
({
url
:
url
});
...
...
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