调整项目框架

This commit is contained in:
2024-04-23 11:48:55 +08:00
parent 01ea333978
commit 2b8797a1ac
26 changed files with 962 additions and 352 deletions

BIN
static/.DS_Store vendored Normal file

Binary file not shown.

78
static/css/app.css Normal file
View File

@ -0,0 +1,78 @@
/* 检索部分 */
.columnFlex{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.headerView{
padding: 10px 0;
flex-basis: 40px;
}
.searchBox .searchView{
position: relative;
}
.searchBox .searchInput{
display: flex;
flex-direction: row;
}
.searchBox .searchInput .input{
border-radius: 20px;
padding: 7px 13px 7px 13px;
flex: 1;
}
.searchBox .searchInput .filter{
flex-basis: 32px;
display: flex;
align-items: center;
justify-content: flex-end;
}
.headerViewFixed{
position: fixed;
left: 14px;
top: 0;
z-index: 100;
width: calc(100% - 28px);
}
.flexBox{
flex: 1;
}
.scrollView{
height: 100%;
}
/* 加载更多部分 */
.noData{
margin: 50% auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.noData .imgView .img{
width: 180px;
height: 138px;
}
.noData .text{
margin-top: 10px;
}
.loadBox{
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.loadBox .text{
margin-left: 8px;
}
.loadBox .icon{
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}

BIN
static/iconfont/.DS_Store vendored Normal file

Binary file not shown.

BIN
static/iconfont/iconfont-weapp/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -1,8 +1,8 @@
@font-face {
font-family: "iconfont"; /* Project id 4403683 */
src: url('//at.alicdn.com/t/c/font_4403683_5b5i159cydc.woff2?t=1709604278213') format('woff2'),
url('//at.alicdn.com/t/c/font_4403683_5b5i159cydc.woff?t=1709604278213') format('woff'),
url('//at.alicdn.com/t/c/font_4403683_5b5i159cydc.ttf?t=1709604278213') format('truetype');
src: url('//at.alicdn.com/t/c/font_4403683_4mp9v07pqat.woff2?t=1713756401049') format('woff2'),
url('//at.alicdn.com/t/c/font_4403683_4mp9v07pqat.woff?t=1713756401049') format('woff'),
url('//at.alicdn.com/t/c/font_4403683_4mp9v07pqat.ttf?t=1713756401049') format('truetype');
}
.iconfont {
@ -13,6 +13,46 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-meiyougengduo:before {
content: "\e638";
}
.icon-loading:before {
content: "\e891";
}
.icon-bianji1:before {
content: "\e601";
}
.icon-bangding1:before {
content: "\e602";
}
.icon-a-shaixuan2:before {
content: "\e636";
}
.icon-a-Vector6:before {
content: "\e637";
}
.icon-a-Vector6-copy:before {
content: "\e655";
}
.icon-saoyisao:before {
content: "\e600";
}
.icon-a-shengchanshijian1:before {
content: "\e63b";
}
.icon-weixuanzhong:before {
content: "\e635";
}
.icon-paizhao:before {
content: "\e633";
}

BIN
static/sweep.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB