|
@@ -137,6 +137,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { commonMixin } from '@/utils/mixin'
|
|
|
import getDate from '@/libs/getDate.js'
|
|
|
import { STable, VSelect } from '@/components'
|
|
|
import rangeDate from '@/views/common/rangeDate.vue'
|
|
@@ -148,13 +149,15 @@ import { hdExportExcel } from '@/libs/exportExcel'
|
|
|
import { salesBillRealAmountQueryPageList, salesBillRealReportCount } from '@/api/salesBillReport'
|
|
|
import { actualSalesExport } from '@/api/reportData'
|
|
|
export default {
|
|
|
- components: { STable, VSelect, rangeDate, subarea, custList,reportModal },
|
|
|
+ name: 'ActualSalesReportList',
|
|
|
+ mixins: [commonMixin],
|
|
|
+ components: { STable, VSelect, rangeDate, subarea, custList, reportModal },
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
|
advanced: true, // 高级搜索 展开/关闭
|
|
|
tableHeight: 0,
|
|
|
- showExport:false,// 导出弹窗初始值
|
|
|
+ showExport: false, // 导出弹窗初始值
|
|
|
queryParam: { // 查询条件
|
|
|
time: [
|
|
|
getDate.getCurrMonthDays().starttime,
|
|
@@ -395,7 +398,7 @@ export default {
|
|
|
const _this = this
|
|
|
this.$refs.ruleForm.validate(valid => {
|
|
|
if (valid) {
|
|
|
- _this.showExport=true
|
|
|
+ _this.showExport = true
|
|
|
const params = _this.queryParam
|
|
|
_this.exportLoading = true
|
|
|
_this.spinning = true
|