lilei 3 주 전
부모
커밋
025e170bab
2개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 3
      src/views/financialManagement/accountStatementBill/detail.vue
  2. 1 3
      src/views/financialManagement/accountStatementBill/list.vue

+ 1 - 3
src/views/financialManagement/accountStatementBill/detail.vue

@@ -120,7 +120,6 @@
 
 <script>
 import { commonMixin } from '@/utils/mixin'
-import moment from 'moment'
 import { hdExportExcel } from '@/libs/exportExcel'
 import { STable, VSelect } from '@/components'
 import rangeDate from '@/views/common/rangeDate.vue'
@@ -229,8 +228,7 @@ export default {
     handleExport () {
       const _this = this
       _this.exportLoading = true
-      const timeStr = moment().format('YYYYMMDDHHmmss')
-      hdExportExcel(verifyAccountBalanceDetailExport, { dealerSn: this.dealerSn, ..._this.queryParam }, '(' + _this.$route.params.name + ')余额-' + timeStr, function () {
+      hdExportExcel(verifyAccountBalanceDetailExport, { dealerSn: this.dealerSn, ..._this.queryParam }, '(' + _this.$route.params.name + ')余额-', function () {
         _this.exportLoading = false
       })
     },

+ 1 - 3
src/views/financialManagement/accountStatementBill/list.vue

@@ -96,7 +96,6 @@
 
 <script>
 import { commonMixin } from '@/utils/mixin'
-import moment from 'moment'
 import { STable, VSelect } from '@/components'
 import { hdExportExcel } from '@/libs/exportExcel'
 import subarea from '@/views/common/subarea.js'
@@ -200,8 +199,7 @@ export default {
     handleExport () {
       const _this = this
       _this.exportLoading = true
-      const timeStr = moment().format('YYYYMMDDHHmmss')
-      hdExportExcel(verifyAccountBalanceExport, _this.queryParam, '经销商对账单据余额-' + timeStr, function () {
+      hdExportExcel(verifyAccountBalanceExport, _this.queryParam, '经销商对账单据余额-', function () {
         _this.exportLoading = false
       })
     },