nidapeng
2024-04-09 16c34dd4aab509f301714b04e546e9c3e7da0367
company/src/components/enterprise/additionSubtractionApplication.vue
@@ -328,12 +328,12 @@
            this.form.addDetailList.forEach(item => {
              total += item.fee
            })
            sums[index] = total
            sums[index] = total.toFixed(2)
          } else {
            this.form.delDetailList.forEach(item => {
              total += item.fee
            })
            sums[index] = '-' + total
            sums[index] = '-' + total.toFixed(2)
          }
        }
      })