src/pages/sales/salesAccount/index.vue
@@ -152,9 +152,7 @@
      const statusStr = (p.shippingStatus ?? "").toString();
      // 包含“发货”或有发货日期/车牌号视为已发货
      return (
        statusStr.includes("发货") ||
        !!p.shippingDate ||
        !!p.shippingCarNumber
        statusStr.includes("发货") || !!p.shippingDate || !!p.shippingCarNumber
      );
    });
  };
@@ -240,6 +238,7 @@
    try {
      // 设置操作类型
      uni.setStorageSync("operationType", type);
      uni.removeStorageSync("editData");
      // 如果是查看或编辑操作
      if (type !== "add") {