Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
hello_taobao
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
wildfirecode13
hello_taobao
Commits
2eec2c09
Commit
2eec2c09
authored
Sep 14, 2020
by
汪欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
39cb93ba
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
3 deletions
+43
-3
pagehuo_dong_ye.js
dist/pages/pagehuo_dong_ye/pagehuo_dong_ye.js
+5
-1
pagejie_shu_ye.acss
dist/pages/pagejie_shu_ye/pagejie_shu_ye.acss
+10
-0
pagejie_shu_ye.axml
dist/pages/pagejie_shu_ye/pagejie_shu_ye.axml
+2
-0
pagejie_shu_ye.js
dist/pages/pagejie_shu_ye/pagejie_shu_ye.js
+26
-2
No files found.
dist/pages/pagehuo_dong_ye/pagehuo_dong_ye.js
View file @
2eec2c09
...
...
@@ -69,8 +69,12 @@ Page({
this
.
getOrderList
();
// this.screenAdapt();
this
.
onmusicSwitch
();
},
onReady
(){
this
.
onmusicSwitch
();
},
onmusicSwitch
(){
...
...
dist/pages/pagejie_shu_ye/pagejie_shu_ye.acss
View file @
2eec2c09
...
...
@@ -17,6 +17,16 @@
opacity: 0.7;
}
.jie_shu_ye .music {
z-index: 90;
width: 56rpx;
height: 56rpx;
opacity: 1;
left: 224rpx;
top: 242rpx;
position: absolute;
}
.jie_shu_ye .logo {
width: 160rpx;
height: 58rpx;
...
...
dist/pages/pagejie_shu_ye/pagejie_shu_ye.axml
View file @
2eec2c09
<view class="jie_shu_ye">
<view class="{{maskVisible ? 'mask' : ''}}"></view>
<image class="music" a:if="{{musicSwitch}}" onTap="onmusicSwitch" src={{resList['0c115480-d22e-4902-a745-e55eadf7bf91'].url}} />
<image class="music" a:if="{{!musicSwitch}}" onTap="onmusicSwitch" src={{resList['ddd2f68b-0059-4eb1-8667-4b7471b11ddd'].url}} />
<image class="di_kao_bei3" src={{resList['66f2b76f-7265-4cb2-9b4d-7e8207ab1d74'].url}} />
<image class="logo" src={{resList['dd7d3a3b-6fcb-427d-8353-da169708bbab'].url}} />
<image onTap="onPrizeBtnClick" class="jiang_pinicon" src={{resList['b7517eae-3bc2-4456-935a-e6e3e1fe995e'].url}} />
...
...
dist/pages/pagejie_shu_ye/pagejie_shu_ye.js
View file @
2eec2c09
...
...
@@ -3,7 +3,8 @@
import
resList
from
'../../resconfig/resList'
;
import
API
from
'../../api'
;
import
{
SHARE_CONFIG
}
from
'/tbcc-sdk/lib/constants'
;
import
playBgMusic
from
'/utils/playBgMusic'
;
const
app
=
getApp
();
Page
({
data
:
{
prizeVisible
:
false
,
...
...
@@ -23,7 +24,8 @@ Page({
maskVisible
:
false
,
list
:
''
,
totalFloor
:
''
,
listlength
:
''
listlength
:
''
,
musicSwitch
:
true
},
onLoad
(
props
)
{
...
...
@@ -82,10 +84,21 @@ Page({
// }
this
.
getOrderList
();
this
.
getPrizeMenu
();
this
.
onmusicSwitch
();
},
onShareAppMessage
()
{
return
SHARE_CONFIG
;
},
onmusicSwitch
(){
let
{
musicSwitch
}
=
this
.
data
;
this
.
addMusic
(
musicSwitch
);
this
.
setData
({
musicSwitch
:
!
musicSwitch
})
console
.
log
(
'music点击后'
,
musicSwitch
);
},
onPrizeBtnClick
()
{
my
.
navigateTo
({
...
...
@@ -332,6 +345,17 @@ Page({
noprizeVisible
:
false
,
maskVisible
:
false
})
},
async
addMusic
(
musicSwitch
){
const
resultSrc
=
await
app
.
cloud
.
file
.
getTempFileURL
({
fileId
:
'cloud://C7A066C702682E94326284DF8A2975CC//FILA_building_loop.mp3'
});
let
musicUrl
=
null
;
if
(
resultSrc
[
0
])
musicUrl
=
resultSrc
[
0
].
url
;
// let {musicSwitch} = this.data;
// playBgMusic(true,musicUrl)
playBgMusic
(
musicSwitch
,
musicUrl
);
console
.
log
(
'fuck music'
)
}
});
\ No newline at end of file
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