You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// card样式
. card {
. cardItem {
margin : 26 rpx ;
background : #FFFFFF ;
box-shadow : 0 rpx 4 rpx 9 rpx 0 rpx rgba ( 0 , 0 , 0 , 0 .05 ) ;
border-radius : 18 rpx 18 rpx 18 rpx 18 rpx ;
. cardItemHead {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
@include flexBox ( between , center , column ) ;
}
. cardItemBody {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
}
. cardItemBottom {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
}
}
}
// list样式
. list {
. listItem {
margin : 26 rpx ;
background : #FFFFFF ;
box-shadow : 0 rpx 4 rpx 9 rpx 0 rpx rgba ( 0 , 0 , 0 , 0 .05 ) ;
border-radius : 18 rpx 18 rpx 18 rpx 18 rpx ;
. listItemHead {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
@include flexBox ( between , center , column ) ;
}
. listItemBody {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
}
. listItemBottom {
width : 100 % ;
box-sizing : border-box ;
padding : 26 rpx ;
}
}
}
// 通用样式--
< view class = " itemBox " >
< view class = " " >
< text class = " label " > 经 销 商 < / text >
< text > : < / text >
< / view >
< text class = " itemBoxRight " > 132222312 < / text >
< / view >
. itemBox {
@include flexBox ( start , start ) ;
& > view {
@include flexBox () ;
@include fontStyle ( 28 rpx , #333333 , left , 500 , 48 rpx ) ;
}
. label {
min-width : 120 rpx ;
text-align-last : justify ;
}
. itemBoxRight {
flex : 1 ;
word-break : break-all ;
@include fontStyle ( 28 rpx , #333333 , left , 500 , 48 rpx ) ;
}
}
// button 样式
< view class = " bottom " >
< view class = " " style = " height: 216rpx; " > < / view >
< view class = " btnBox " >
< button @ click = " $util.redirectTo('./add') " > 新 增 收 货 地 址 < / button >
< / view >
< / view >
. bottom {
width : 100 % ;
. btnBox {
width : 100 % ;
height : 200 rpx ;
background : #FFFFFF ;
position : fixed ;
bottom : 0 ;
left : 0 ;
button {
width : 544 rpx ;
height : 92 rpx ;
background : $uni-btn-bg ;
border-radius : 9 rpx 9 rpx 9 rpx 9 rpx ;
font-weight : 500 ;
font-size : 32 rpx ;
color : $uni-btn-color ;
@include flexBox () ;
margin-top : 40 rpx ;
}
}
}