Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
new_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
new_taobao
Commits
da233093
Commit
da233093
authored
Sep 24, 2020
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
57030a90
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
171 additions
and
18 deletions
+171
-18
app.json
taobao_mini/client/app.json
+1
-1
comlevelup.axml
taobao_mini/client/components/comlevelup/comlevelup.axml
+1
-1
comlevelup.js
taobao_mini/client/components/comlevelup/comlevelup.js
+3
-1
pagecanvas.axml
taobao_mini/client/pages/pagecanvas/pagecanvas.axml
+1
-1
pagecanvas.js
taobao_mini/client/pages/pagecanvas/pagecanvas.js
+26
-14
pageshop.acss
taobao_mini/client/pages/pageshop/pageshop.acss
+139
-0
No files found.
taobao_mini/client/app.json
View file @
da233093
{
"pages"
:
[
"pages/pageshop/pageshop"
,
"pages/pagecanvas/pagecanvas"
,
"pages/index/index"
,
"pages/pageshop/pageshop"
,
"pages/myprize/myprize"
],
"window"
:
{
...
...
taobao_mini/client/components/comlevelup/comlevelup.axml
View file @
da233093
...
...
@@ -4,7 +4,7 @@
<image class="levelup_light " src={{resList['a158cbff-9dcd-49df-bb91-16213d58036e'].url}} />
<image class="levelup_bg " src={{resList['b027d194-0fad-45ea-8b1c-3502f7869d2d'].url}} />
<image class="levelup_bg2 " src={{resList['f88dfc75-c9f1-4e9d-8826-8a1d0e513259'].url}} />
<label class="levelup_txt ">
精力上限1200 → 精力上限1500
</label>
<label class="levelup_txt ">
{{mydata.tips}}
</label>
<image class="levelup_title " src={{resList['69bff61a-b5a6-4979-ba8d-9e008aed737a'].url}} />
<image class="levelup_imgbg " src={{resList['f56872e2-5e79-4906-99a2-576231f153af'].url}} />
<image class="levelup_btn " onTap="onBtnClick" src={{resList['95520b55-9655-4988-a833-3907978dbffb'].url}} />
...
...
taobao_mini/client/components/comlevelup/comlevelup.js
View file @
da233093
...
...
@@ -2,7 +2,9 @@
import
resList
from
'../../resconfig/resList'
;
Component
({
props
:
{},
props
:
{
mydata
:{}
},
data
:
{
resList
:
resList
},
...
...
taobao_mini/client/pages/pagecanvas/pagecanvas.axml
View file @
da233093
...
...
@@ -5,7 +5,7 @@
</view>
<rule-modal a:if="{{ruleModalVisible}}" onModalClose="closeRuleModal"><text>{{rule}}</text></rule-modal>
<levelup-modal a:if="{{levelupModalVisible}}" onModalClose="closeLevelupModal"></levelup-modal>
<levelup-modal a:if="{{levelupModalVisible}}"
mydata="{{levelupModalData}}"
onModalClose="closeLevelupModal"></levelup-modal>
<message-modal a:if="{{messageModalVisible}}" mydata="{{messageModalData}}" onModalClose="closeMessageModal"></message-modal>
<view class="popcontainer" a:if="{{selectcatModalVisible}}"><selectcat-modal onModalClose="closeSelectcatModal" onSelectCat="selectCat"></selectcat-modal></view>
<view class="popcontainer" a:if="{{catnameModalVisible}}" ><catname-modal selectType="{{catType}}" onModalClose="closeCatnameModal" onSelectCatOk="selectCatOk" /></view>
...
...
taobao_mini/client/pages/pagecanvas/pagecanvas.js
View file @
da233093
...
...
@@ -31,11 +31,12 @@ Page({
messageModalVisible
:
false
,
messageModalData
:
{},
ruleModalVisible
:
false
,
levelupModalVisible
:
false
,
levelupModalVisible
:
0
,
levelupModalData
:
null
,
selectcatModalVisible
:
false
,
catnameModalVisible
:
false
,
recallcatModalVisible
:
false
,
getcatModalVisible
:
false
recallcatModalVisible
:
false
,
getcatModalVisible
:
false
},
onLoad
(
props
)
{
...
...
@@ -72,6 +73,17 @@ Page({
my
.
__onMessage__
=
(
e
)
=>
{
this
.
onMessage
(
e
)
}
my
.
__showModal__
=
(
key
,
data
)
=>
{
this
.
onMessage
({
data
:
{
netName
:
'mine.showModal'
,
parameter
:
{
name
:
key
+
'Modal'
,
data
:
data
}
}
});
}
},
init
()
{
...
...
@@ -272,21 +284,21 @@ Page({
selectCat
(
type
)
{
// this.catType = type;
this
.
setData
({
catType
:
type
,
catnameModalVisible
:
true
catType
:
type
,
catnameModalVisible
:
true
})
console
.
log
(
"选择了"
,
type
)
},
/**选择好猫咪后打开getCat弹窗 */
selectCatOk
(
name
){
selectCatOk
(
name
)
{
this
.
setData
({
catName
:
name
,
getcatModalVisible
:
true
catName
:
name
,
getcatModalVisible
:
true
})
},
/**领养完猫咪之后传输消息给主页 */
postSelectCat
(
r
){
this
.
main
.
dispatchGlobalEvent
(
"selectEnd"
,
r
);
postSelectCat
(
r
)
{
this
.
main
.
dispatchGlobalEvent
(
"selectEnd"
,
r
);
},
closeLevelupModal
()
{
this
.
setData
({
...
...
@@ -313,14 +325,14 @@ Page({
selectcatModalVisible
:
false
})
},
closeRecallcatModal
(){
closeRecallcatModal
()
{
this
.
setData
({
recallcatModalVisible
:
false
recallcatModalVisible
:
false
})
},
closeGetcatModal
(){
closeGetcatModal
()
{
this
.
setData
({
getcatModalVisible
:
false
getcatModalVisible
:
false
})
}
});
\ No newline at end of file
taobao_mini/client/pages/pageshop/pageshop.acss
View file @
da233093
.shop-page {
width: 100vw;
height: 100vh;
opacity: 1;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
/* background: url('') no-repeat center top/cover; */
}
.shop-wrap {
width: 100%;
position: absolute;
bottom: 0;
top: 254rpx;
padding-left: 54rpx;
right:0;
overflow-x: auto;
}
.shop-list {
width: 100%;
height: auto;
/* background-color: black; */
display: flex;
flex-flow: row wrap;
align-content: flex-start;
}
.shop .shopbg {
width: 750rpx;
height: 1624rpx;
opacity: 1;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
.shop .shopitem {
position: relative;
/* display: flex;
justify-content: center;
align-items: center; */
box-sizing: border-box;
width: 309rpx;
height: 324rpx;
opacity: 1;
margin: 0 30rpx 30rpx 0;
/* left: 54rpx;
top: 254rpx; */
}
.shop .shopitem .shopitem_bg2 {
width: 309rpx;
height: 324rpx;
opacity: 1;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
.shop .shopitem .shopitem_bg1 {
width: 224rpx;
height: 161rpx;
opacity: 1;
left: 45rpx;
top: 29rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
.shop .shopitem .shopitem_disabledbtn {
width: 209rpx;
height: 60rpx;
opacity: 1;
left: 49rpx;
top: 241rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
.shop .shopitem .shopitem_buybtn {
width: 217rpx;
height: 68rpx;
opacity: 1;
left: 45rpx;
top: 237rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
.shop .shopitem .shopitem_txt {
pointer-events: none;
width: 88rpx;
/* height: 20rpx; */
opacity: 1;
left: 136rpx;
top: 261rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
font-size: 21.79723rpx;
color: #474543;
}
.shop .shopitem .shopitem_name {
width: 209rpx;
/* height: 23rpx; */
opacity: 1;
left: 51rpx;
top: 203rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
font-size: 20.12052rpx;
color: #474543;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.shop .shop_gold {
width: 98rpx;
height: 21rpx;
opacity: 1;
left: 348rpx;
top: 151rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
font-size: 23.47394rpx;
color: #7b644e;
}
.shop .shop_backbtn {
width: 67rpx;
height: 67rpx;
opacity: 1;
left: 48rpx;
top: 41rpx;
position: absolute;
transform-origin: 0rpx 0rpx 0rpx;
}
\ 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