فهرست منبع

子组件赠品修改

cgp 1 هفته پیش
والد
کامیت
d84f920ebe
1فایلهای تغییر یافته به همراه6 افزوده شده و 4 حذف شده
  1. 6 4
      src/views/hisStore/components/erpProductSelect.vue

+ 6 - 4
src/views/hisStore/components/erpProductSelect.vue

@@ -83,10 +83,12 @@ export default {
       this.queryParams.pageNum = 1;
       this.getList();
     },
-    getDetails(erpType,isGift){
-      this.queryParams.erpType=erpType;
-      if(isGift){
-        this.queryParams.isGift=isGift;
+    getDetails(erpType, isGift) {
+      this.queryParams.erpType = erpType;
+      if (isGift !== undefined && isGift !== null) {
+        this.queryParams.isGift = isGift;
+      } else {
+        delete this.queryParams.isGift;
       }
       this.getList();
     },