Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-luck
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
QC-L
2018-12-14 17:44:28 +0800
Commit
c240f25dd9ae32e0e9eb1850dac4929fbfc9a412
1 parent
c97f7321
添加uid判断,修改样式 reivew by 黄敬囿
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
9 deletions
app.js
pages/zeroSell/components/product-detail-header.wxss
pages/zeroSell/components/product-item-header.wxss
pages/zeroSell/components/timeCountDown/time-countdown.wxml
pages/zeroSell/components/timeCountDown/time-countdown.wxss
pages/zeroSell/index.js
app.js
View file @
c240f25
...
...
@@ -397,6 +397,7 @@ App({
获取用户相关union_type
*/
getUnionTypeWithUid
:
function
(
uid
)
{
if
(
!
uid
)
return
;
let
param
=
{
method
:
'app.union.shareOrder.queryUnionTypeByUid'
,
uid
,
...
...
pages/zeroSell/components/product-detail-header.wxss
View file @
c240f25
...
...
@@ -27,7 +27,7 @@
.product_price {
color: #B0B0B0;
font-size:
36
rpx;
font-size:
24
rpx;
font-weight: bold;
margin-left: 20rpx;
text-decoration: line-through;
...
...
@@ -81,7 +81,7 @@
margin-right: 16rpx;
vertical-align: text-top;
position: relative;
top: -
2
rpx;
top: -
4
rpx;
}
.countdown_labeltext {
...
...
pages/zeroSell/components/product-item-header.wxss
View file @
c240f25
...
...
@@ -18,7 +18,7 @@
.product_price {
color: #B0B0B0;
font-size:
36
rpx;
font-size:
24
rpx;
font-weight: bold;
margin-left: 30rpx;
}
...
...
pages/zeroSell/components/timeCountDown/time-countdown.wxml
View file @
c240f25
...
...
@@ -6,7 +6,5 @@
<view class="mask-left"></view>
<view class="mask-right"></view>
</view>
<view class="number-seprator" wx:if="{{index !== 3}}">
:
</view>
<view class="number-seprator" wx:if="{{index !== 3}}">:</view>
</block>
...
...
pages/zeroSell/components/timeCountDown/time-countdown.wxss
View file @
c240f25
...
...
@@ -47,8 +47,12 @@
}
.number-seprator {
font-size:
5
0rpx;
font-size:
6
0rpx;
line-height: 84rpx;
height: 84rpx;
margin-left: 10rpx;
margin-right: 10rpx;
box-sizing: border-box;
color: black;
display: inline;
display: inline
-block
;
}
\ No newline at end of file
...
...
pages/zeroSell/index.js
View file @
c240f25
...
...
@@ -338,7 +338,8 @@ Page(Object.assign({
if
(
this
.
data
.
bannerUrl
==
null
)
{
return
;
}
jumpByUrl
(
that
.
data
.
bannerUrl
);
jumpByUrl
(
this
.
data
.
bannerUrl
);
},
onTabChange
({
detail
})
{
...
...
Please
register
or
login
to post a comment