- 新增 components.d.json 文件,包含所有组件的属性配置 - 添加 card-item-plugin 组件及其相关文件(json、ts、wxml、wxss) - 在 app.json 中添加新的生产流程管理页面路径 - 添加多个SVG图标文件用于菜单项 - 重构 popup-plugin 组件样式和关闭逻辑 - 更新 tab-bar-plugin 的激活状态逻辑 - 优化 search-popup 使用全局样式类 - 在首页添加菜单配置和页面跳转功能 - 调整组件样式细节和间距
50 lines
1006 B
Plaintext
50 lines
1006 B
Plaintext
.log-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 8px 12px;
|
|
border: 1rpx solid #ddd;
|
|
align-items: center;
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.log-box {
|
|
flex: 1;
|
|
min-height: 0;
|
|
overflow: auto;
|
|
padding: 12px 12px 12px 12px;
|
|
border: 1rpx solid #ddd;
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
/* margin-bottom: calc(constant(safe-area-inset-bottom) + 12px); */
|
|
/*兼容 IOS<11.2*/
|
|
/* margin-bottom: calc(env(safe-area-inset-bottom) + 12px); */
|
|
margin-bottom: 12px;
|
|
border-top: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100vh - var(--td-tab-bar-height, 80rpx) - env(safe-area-inset-bottom));
|
|
}
|
|
|
|
.process-item {
|
|
height: 34px;
|
|
padding: 0 8px;
|
|
border: 1rpx solid #ddd;
|
|
border-radius: 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 8px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.process-item.active {
|
|
background: #1989fa;
|
|
border-color: #1989fa;
|
|
color: #fff;
|
|
}
|