Tang 3 vuotta sitten
vanhempi
commit
4f9b384364

+ 8 - 1
src/views/Marketing/order/offlineOrder/batchRecord/thirdStep/index.vue

@@ -25,7 +25,11 @@
             >;总价<strong style="color: red"
               >¥{{ compay(tableData, 5).toFixed(2) }}</strong
             ></span
-          ><el-button size="mini" v-if="newActive === 'error'" type="success"
+          ><el-button
+            size="mini"
+            v-if="newActive === 'error'"
+            type="success"
+            @click="downErrorData"
             >下载失败数据</el-button
           ><el-button
             size="mini"
@@ -263,6 +267,9 @@ export default {
     },
   },
   methods: {
+    downErrorData() {
+      console.log(this.errorobj);
+    },
     backSearch() {
       const jump = () => {
         this.$router.push({

+ 3 - 3
src/views/Marketing/order/offlineOrder/billingBillCharges/index.vue

@@ -137,7 +137,7 @@
                   :controls="false"
                   :min="0.01"
                   :precision="2"
-                  :max="itList['payPrice'] - itList['goodsReceived']"
+                  :max="itList['goodsRealPrice'] - itList['goodsReceived']"
                 ></el-input-number>
               </div>
               <span v-else>
@@ -242,12 +242,12 @@ export default {
         },
         {
           label: "商品标价",
-          prop: "orderPrice",
+          prop: "goodsPrice",
           ch: "¥",
         },
         {
           label: "商品成交价",
-          prop: "payPrice",
+          prop: "goodsRealPrice",
           ch: "¥",
         },
         {