任务明细页面

This commit is contained in:
limqhz
2022-11-24 17:07:38 +08:00
parent 0a8e99c94c
commit ec41ce736d
106 changed files with 4892 additions and 48 deletions

50
pages/task/index.wxss Normal file
View File

@@ -0,0 +1,50 @@
/* pages/task/index.wxss */
.top-wrap {
position: fixed;
left: 0;
top: 0;
width: 100%;
background-color: #ffffff;
z-index: 99;
box-shadow: 0 0 20rpx -5rpx rgba(0, 0, 0, 0.1);
}
swiper {
height: 100vh;
}
.cells {
background: #ffffff;
margin-top: 20rpx;
}
.cell {
padding: 20rpx;
}
.cell:not(:last-child) {
border-bottom: 1rpx solid #ebedf0;
}
.cell .name {
overflow: hidden; /* 超出部分不显示 */
height: 50rpx;
margin-bottom: 12rpx;
}
checkbox {
width: 50rpx;
height: 50rpx;
box-sizing: border-box;
}
.cell .remark {
display: flex;
align-items:center;
color: #999999;
}
.checkedBox .t-checkbox__content {
text-decoration:line-through;
}