|
@@ -13,6 +13,7 @@
|
13
|
13
|
<self-channel style="margin-right: 10px;" title="" type='adqAccount' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { account_id = val; init(1); init_predata() }" />
|
14
|
14
|
<date-picker title="" :quickFlag="false" :clearFlag='true' :timeFlag="true" :reset="resetFlag" placeholder="用户注册时间" :defaultTime="['00:00:00', '23:59:59']" :pickerOptions="pickerOptions" @changeTime="changeTimeUserReg" style="margin-right: 10px;" />
|
15
|
15
|
<selfChannelV2 style="margin-right: 10px;" v-model="order_pay_type" type='orderPayType' title="" :labelWidth="true" @change="onChangeOrderPayType" />
|
|
16
|
+ <selfChannelV2 style="margin-right: 10px;" v-model="ad_report_action_type" type='adReportType' title="" :labelWidth="true" @change="onChangeAdReportActionType" />
|
16
|
17
|
</div>
|
17
|
18
|
<div class="reset" @click="resetEvent">重置</div>
|
18
|
19
|
<el-button class="export-btn" type="primary" size="mini" @click="init(1, 'export')">导出Excel</el-button>
|
|
@@ -232,6 +233,7 @@ export default {
|
232
|
233
|
plat_order_type: '',
|
233
|
234
|
is_ad_user: '',
|
234
|
235
|
order_pay_type: '',
|
|
236
|
+ ad_report_action_type: '',
|
235
|
237
|
}
|
236
|
238
|
},
|
237
|
239
|
created () {
|
|
@@ -333,6 +335,7 @@ export default {
|
333
|
335
|
this.plat_order_type = ''
|
334
|
336
|
this.is_ad_user = ''
|
335
|
337
|
this.order_pay_type = ''
|
|
338
|
+ this.ad_report_action_type = ''
|
336
|
339
|
this.init_predata()
|
337
|
340
|
this.init(1)
|
338
|
341
|
},
|
|
@@ -362,6 +365,11 @@ export default {
|
362
|
365
|
this.init_predata()
|
363
|
366
|
this.init(1)
|
364
|
367
|
},
|
|
368
|
+ onChangeAdReportActionType(val) {
|
|
369
|
+ this.ad_report_action_type = val || ''
|
|
370
|
+ this.init_predata()
|
|
371
|
+ this.init(1)
|
|
372
|
+ },
|
365
|
373
|
init_predata () {
|
366
|
374
|
this.dataLoading = true
|
367
|
375
|
this.$axios.post(this.URL.BASEURL + this.URL.charge_pre_data, {
|
|
@@ -376,6 +384,7 @@ export default {
|
376
|
384
|
plat_order_type: this.plat_order_type,
|
377
|
385
|
is_ad_user: this.is_ad_user,
|
378
|
386
|
order_pay_type: this.order_pay_type || 0, // 全部0
|
|
387
|
+ ad_report_action_type: this.ad_report_action_type || 0, // 全部0
|
379
|
388
|
type: 1, // "猎羽-充值订单管理"传1、"数据看板-订单数据统计"传2
|
380
|
389
|
})
|
381
|
390
|
.then((res) => {
|
|
@@ -425,6 +434,7 @@ export default {
|
425
|
434
|
plat_order_type: this.plat_order_type,
|
426
|
435
|
is_ad_user: this.is_ad_user,
|
427
|
436
|
order_pay_type: this.order_pay_type || 0, // 全部0
|
|
437
|
+ ad_report_action_type: this.ad_report_action_type || 0, // 全部0
|
428
|
438
|
appid: this.appid,
|
429
|
439
|
account_id: this.account_id,
|
430
|
440
|
order_source: this.paySource_val,
|