chenrui hace 3 años
padre
commit
a65e2cef9e
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      src/views/reportData/chainStockReport/detailModal.vue

+ 0 - 2
src/views/reportData/chainStockReport/detailModal.vue

@@ -77,7 +77,6 @@ export default {
       ],
       // 加载数据方法 必须为 Promise 对象
       loadData: parameter => {
-        this.disabled = true
         const params = Object.assign(parameter, { productSn: this.productSn })
         return reportStockDetailList(params).then(res => {
           const data = res.data
@@ -85,7 +84,6 @@ export default {
           for (var i = 0; i < data.list.length; i++) {
             data.list[i].no = no + i + 1
           }
-          this.disabled = false
           // 总计
           this.getCount(params)
           return data