- 新增 components.d.json 文件,包含所有组件的属性配置 - 添加 card-item-plugin 组件及其相关文件(json、ts、wxml、wxss) - 在 app.json 中添加新的生产流程管理页面路径 - 添加多个SVG图标文件用于菜单项 - 重构 popup-plugin 组件样式和关闭逻辑 - 更新 tab-bar-plugin 的激活状态逻辑 - 优化 search-popup 使用全局样式类 - 在首页添加菜单配置和页面跳转功能 - 调整组件样式细节和间距
36 lines
590 B
Plaintext
36 lines
590 B
Plaintext
.process-child-box {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
column-gap: 32rpx;
|
|
row-gap: 32rpx;
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.p_process_name {
|
|
font-size: 1.125em;
|
|
font-weight: bold;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.process-child-item-box {
|
|
position: relative;
|
|
border: 1rpx solid #ddd;
|
|
padding: 16rpx;
|
|
border-radius: 8rpx;
|
|
|
|
}
|
|
|
|
.process-child-item-num {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
transform: translate(50%, -50%);
|
|
background-color: #2ba471;
|
|
color: #fff;
|
|
border-radius: 100%;
|
|
line-height: 1.1;
|
|
padding: 2rpx 8rpx;
|
|
font-size: 28rpx;
|
|
}
|