lilei 5 天之前
父节点
当前提交
ead6ee2948
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      src/views/reportData/newCustomSales/list.vue

+ 1 - 3
src/views/reportData/newCustomSales/list.vue

@@ -190,7 +190,6 @@ export default {
           this.queryParam.endDate = undefined
         }
         const params = Object.assign(parameter, this.queryParam)
-        params.removeReportFlag = 1
         // 获取列表数据  有分页
         return reportDealerNewLogList(params).then(res => {
           let data
@@ -343,10 +342,9 @@ export default {
     exportList () {
       const _this = this
       const params = JSON.parse(JSON.stringify(_this.queryParam))
-      params.removeReportFlag = this.removeReportFlag
       _this.exportLoading = true
       _this.spinning = true
-      hdExportExcel(reportDealerNewLogExport, params, this.removeReportFlag == 0 ? '开单统计报表(客户)' : '未统计销售退货(客户)', function () {
+      hdExportExcel(reportDealerNewLogExport, params, '新客户查询', function () {
         _this.exportLoading = false
         _this.spinning = false
       })