gaoluyang
2026-01-12 02e9c39e8ec8d4a57e874b62907934bc9b605ccf
src/views/procurementManagement/invoiceEntry/index.vue
@@ -199,11 +199,11 @@
};
const handleAdd = (type) => {
  if (selectedRows.value.length !== 1) {
    proxy.$modal.msgWarning("请先选中一条数据");
  if (selectedRows.value.length < 1) {
    proxy.$modal.msgWarning("请至少选中一条数据");
    return;
  }
  modalRef.value.open(type, selectedRows.value[0].id);
  modalRef.value.open(type, selectedRows.value);
};
const handleEdit = (type, id) => {