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,71 @@
/* pages/shop/shop.wxss */
.container {
/* background-color: aqua; */
height: 100vh;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 98px 1fr;
overflow-y: hidden;
}
.sidebar {
background-color: #e7e7e7;
display: grid;
grid-template-rows: repeat(auto-fill, 50px);
grid-auto-flow: row dense;
overflow-y: auto;
}
.sidebar-item {
background-color: #F5F5F5;
/* border-bottom: 1px solid rgb(121, 121, 121); */
height: 100%;
display: table;
}
.sidebar-item:last-child {
border-bottom: none;
}
.sidebar-item-text {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.sidebar-item.active {
background-color: white;
font-weight: bold;
color: #FF764E;
border-left: 4px solid #FF764E;
}
.tabbar {
overflow-y: auto;
}
.tabbar-group {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: repeat(auto-fill, 210px);
grid-auto-flow: row dense;
place-items: center;
gap: 3px 10px;
margin: 6px;
}
.tabbar-item {
width: 100%;
display: inline-block;
overflow: hidden;
border-radius: 6px;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
}
.no-more {
text-align: center;
color:grey;
margin: 20px;
}