chenrui 3 yıl önce
ebeveyn
işleme
785fc58a22

+ 3 - 3
src/views/numsGoodsShelves/shelfSet/chooseImportModal.vue

@@ -108,8 +108,8 @@ export default {
       shelfProductParseProducts(this.paramsData).then(res => {
         this.loading = false
         if (res.status == 200) {
-          if (res.data.okList && res.data.okList.length > 0) {
-            res.data.okList.map((item, index) => {
+          if (res.data.successList && res.data.successList.length > 0) {
+            res.data.successList.map((item, index) => {
               item.no = index + 1
             })
           }
@@ -118,7 +118,7 @@ export default {
               item.no = index + 1
             })
           }
-          _this.loadData = res.data.okList || []
+          _this.loadData = res.data.successList || []
           _this.unLoadData = res.data.failList || []
         }
       })