lilei 2 سال پیش
والد
کامیت
3100a0e106
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/views/salesReturnManagement/custConfirm/list.vue

+ 3 - 3
src/views/salesReturnManagement/custConfirm/list.vue

@@ -47,13 +47,13 @@
             <a-input-number
               v-if="record.isEdit"
               size="small"
-              v-model="record.qty"
+              v-model="record.initialQty"
               :precision="0"
               :min="0"
               placeholder="请输入"
               style="width: 100%;" />
             <span v-else>
-              {{ record.qty }}
+              {{ record.initialQty }}
             </span>
           </template>
           <!-- 仓库实收数量 -->
@@ -256,7 +256,7 @@ export default {
         { title: '产品编码', dataIndex: 'productEntity.code', align: 'center', width: '13%', customRender: function (text) { return text || '--' } },
         { title: '产品名称', dataIndex: 'productEntity.name', width: '25%', align: 'left', customRender: function (text) { return text || '--' } },
         { title: '单位', dataIndex: 'productEntity.unit', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '申请退货数量', dataIndex: 'qty', align: 'center', width: '10%', scopedSlots: { customRender: 'qty' } },
+        { title: '申请退货数量', dataIndex: 'initialQty', align: 'center', width: '10%', scopedSlots: { customRender: 'qty' } },
         { title: '仓库实收数量', dataIndex: 'receiveQty', align: 'center', width: '10%', scopedSlots: { customRender: 'receiveQty' } },
         { title: '坏件数量', dataIndex: 'badQty', align: 'center', width: '10%', scopedSlots: { customRender: 'badQty' } },
         { title: '良品数量', dataIndex: 'goodQty', align: 'center', width: '10%', scopedSlots: { customRender: 'goodQty' } },