XMLWAN il y a 3 ans
Parent
révision
9cc2fae20d

+ 0 - 1
src/xt_pages/data/components/project.vue Voir le fichier

@@ -228,7 +228,6 @@ export default {
228 228
               label: '未备案'
229 229
           }],
230 230
           is_mark:"",
231
-          limit:100,
232 231
           page:1,
233 232
           departMentList:[],
234 233
            dialogVisible:false,

+ 6 - 1
src/xt_pages/stock/stockInOrderEdit.vue Voir le fichier

@@ -610,10 +610,13 @@ export default {
610 610
               return;
611 611
             }
612 612
           }
613
-
613
+          for(let i=0;i<this.recordInfo.recordData.length;i++){
614
+            this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
615
+          }
614 616
           const params = {
615 617
             stockIn: this.recordInfo.recordData
616 618
           };
619
+          console.log("params2222",params)
617 620
           EditWarehouse(
618 621
             params,
619 622
             this.warehousing_time,
@@ -660,7 +663,9 @@ export default {
660 663
             response.data.data.info[i].good_name = response.data.data.info[i].GoodInfo.good_name
661 664
             response.data.data.info[i].name = response.data.data.info[i].GoodInfo.specification_name + "*" + response.data.data.info[i].GoodInfo.min_number+response.data.data.info[i].GoodInfo.min_unit
662 665
             response.data.data.info[i].min_unit = response.data.data.info[i].GoodInfo.min_unit
666
+           
663 667
             this.recordInfo.recordData.push(response.data.data.info[i]);
668
+           
664 669
             console.log("列表",this.recordInfo.recordData)
665 670
           }
666 671