refactor(ui): 优化表格显示和对话框布局

- 修改发货单打印对话框宽度为固定值
- 订单列表显示供应商名称替代ID
- 收货单和退货单显示订单编号替代ID
- 调整发货单明细查询逻辑
- 退货单新增订单选择功能
- 发货单组件添加负责人信息输入
- 调整发货单打印样式和布局
This commit is contained in:
砂糖
2025-11-28 14:27:55 +08:00
parent 507a44c161
commit 346aba6f31
7 changed files with 47 additions and 25 deletions

View File

@@ -116,9 +116,9 @@ export default {
watch: {
waybillId: {
handler(newVal, oldVal) {
if (newVal) {
// if (newVal) {
this.getList();
}
// }
},
immediate: true
}
@@ -176,7 +176,7 @@ export default {
/** 查询发货单明细列表 */
getList() {
this.loading = true;
listDeliveryWaybillDetail(this.queryParams).then(response => {
listDeliveryWaybillDetail({ ...this.queryParams, waybillId: this.waybillId }).then(response => {
this.deliveryWaybillDetailList = response.rows;
this.total = response.total;
this.loading = false;