lilei 3 settimane fa
parent
commit
025e170bab

+ 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
       })
     },