1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

小程序:首页按钮功能完成;个人中心、生活物资页框架;体温上报定位权限获取失败提示信息;删除部分无用代码;

This commit is contained in:
2023-03-18 17:52:56 +08:00
parent 94a2dbf26d
commit ee7e2e9acb
33 changed files with 712 additions and 181 deletions

View File

@@ -0,0 +1,82 @@
/* pages/shop/components/good-list-card.wxss */
.good-card-container {
/* background-color: violet; */
overflow: hidden;
display: grid;
height: 200px;
grid-template-rows: auto 58px;
}
.good-card-image {
background-color: bisque;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
width: 100%;
height: 100%;
}
.good-card-info {
padding: 4.5px 6px;
}
/* 自动换行 */
.line-wrap {
width: 100%;
word-break: break-word;
display: block;
}
/* 商品标题 */
.good-title {
font-size: 28rpx;
color: #333;
font-weight: 400;
height: 36rpx;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
word-break: break-word;
line-height: 36rpx;
margin: 4rpx 0;
}
/* 商品价格 */
.good-price {
white-space: nowrap;
font-weight: 700;
margin: 0;
display: inline;
position: relative;
}
.good-price-counter {
color: #fa4126;
font-size: 36rpx;
}
.good-price-retail {
color: #bbbbbb;
font-size: 24rpx;
margin: 0 0 0 8rpx;
}
.good-price .good-price-symbol {
font-size: 24rpx;
display: inline;
}
.good-price .good-price-number {
display: inline;
}
.good-price .good-price-line {
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
margin: 0;
background-color: currentColor;
}