feat(wms): 添加未打印选项并调整布局间距

在发货单和运单页面添加"未打印"状态选项
调整线圈录入页面的布局间距以优化显示效果
This commit is contained in:
砂糖
2026-02-10 09:23:41 +08:00
parent ca6ad9319a
commit 0488f6606d
3 changed files with 5 additions and 3 deletions

View File

@@ -855,8 +855,8 @@ export default {
/* 主内容区 */
.content-wrapper {
display: grid;
grid-template-columns: 400px 1fr;
gap: 20px;
grid-template-columns: 350px 1fr;
gap: 10px;
align-items: stretch; // 改为stretch让子元素高度一致
}
@@ -871,7 +871,7 @@ export default {
.right-panel {
min-width: 0;
display: flex;
gap: 20px; // 添加间距
gap: 10px; // 添加间距
}
/* 确保两侧卡片高度一致 */

View File

@@ -39,6 +39,7 @@
<el-option label="已发货" :value="1" />
<el-option label="未发货" :value="0" />
<el-option label="已打印" :value="2" />
<el-option label="未打印" :value="3" />
</el-select>
</template>
</el-table-column>

View File

@@ -46,6 +46,7 @@
<el-option label="已发货" :value="1" />
<el-option label="未发货" :value="0" />
<el-option label="已打印" :value="2" />
<el-option label="未打印" :value="3" />
</el-select>
</template>
</el-table-column>