|
@@ -14,7 +14,7 @@
|
|
|
<a-row :gutter="15">
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-model-item label="退货完成日期" prop="time">
|
|
|
- <rangeDateTime ref="rangeDate" :value="queryParam.time" @change="dateChange" />
|
|
|
+ <rangeDate ref="rangeDate" :value="queryParam.time" @change="dateChange" />
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
@@ -147,7 +147,7 @@
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
import getDate from '@/libs/getDate.js'
|
|
|
import { STable, VSelect } from '@/components'
|
|
|
-import rangeDateTime from '@/views/common/rangeDateTime.vue'
|
|
|
+import rangeDate from '@/views/common/rangeDate.vue'
|
|
|
import subarea from '@/views/common/subarea.js'
|
|
|
import reportModal from '@/views/common/reportModal.vue'
|
|
|
import AllocateType from '@/views/common/allocateType.js'
|
|
@@ -155,11 +155,11 @@ import { getArea } from '@/api/data'
|
|
|
import { productTypeQuery } from '@/api/productType'
|
|
|
import ProductBrand from '@/views/common/productBrand.js'
|
|
|
import { hdExportExcel } from '@/libs/exportExcel'
|
|
|
-import { allocateReturnReportDetailQueryPage, allocateReturnReportDetailQueryCount, reportSalesReturnDetailExport } from '@/api/reportData'
|
|
|
+import { allocateReturnReportDetailQueryPage, allocateReturnReportDetailQueryCount, allocateReturnReportDetailExport } from '@/api/reportData'
|
|
|
export default {
|
|
|
name: 'TransferReturnDetailReportList',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { STable, VSelect, rangeDateTime, subarea, ProductBrand, reportModal, AllocateType },
|
|
|
+ components: { STable, VSelect, rangeDate, subarea, ProductBrand, reportModal, AllocateType },
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
@@ -324,7 +324,7 @@ export default {
|
|
|
_this.showExport = true
|
|
|
_this.exportLoading = true
|
|
|
_this.spinning = true
|
|
|
- hdExportExcel(reportSalesReturnDetailExport, params, '销售退货明细报表', function () {
|
|
|
+ hdExportExcel(allocateReturnReportDetailExport, params, '调拨退货明细报表', function () {
|
|
|
_this.exportLoading = false
|
|
|
_this.spinning = false
|
|
|
})
|