Browse Source

feat: 充值订单管理 - 新增ADQ账号筛选

zhengxy 2 years ago
parent
commit
4127bb7e76
1 changed files with 8 additions and 3 deletions
  1. 8 3
      project/src/components/orderManage/charge.vue

+ 8 - 3
project/src/components/orderManage/charge.vue

6
         <self-channel style="margin-right: 10px;" title="" type='chargePay' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { chargePay_val = val; init_predata(); init(1) }" />
6
         <self-channel style="margin-right: 10px;" title="" type='chargePay' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { chargePay_val = val; init_predata(); init(1) }" />
7
         <self-channel style="margin-right: 10px;" title="" type='paySource' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { paySource_val = val; init_predata(); init(1) }" />
7
         <self-channel style="margin-right: 10px;" title="" type='paySource' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { paySource_val = val; init_predata(); init(1) }" />
8
         <self-input style="margin-right: 10px;" width="220px" :hasLabel="false" :reset="resetFlag" label_name="订单ID" @inputChange='(val) => { id_val = val; init(1) }' />
8
         <self-input style="margin-right: 10px;" width="220px" :hasLabel="false" :reset="resetFlag" label_name="订单ID" @inputChange='(val) => { id_val = val; init(1) }' />
9
-        <self-channel style="margin-right: 10px;" title="" type='thePublic' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { account_id = val; init(1); init_predata() }" />
9
+        <self-channel style="margin-right: 10px;" title="" type='thePublic' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { appid = val; init(1); init_predata() }" />
10
         <self-channel style="margin-right: 10px;" title="" type='launchType' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { order_type = val; init(1); init_predata() }" />
10
         <self-channel style="margin-right: 10px;" title="" type='launchType' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { order_type = val; init(1); init_predata() }" />
11
         <self-channel style="margin-right: 10px;" title="" type='promotionType' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { plat_order_type = val; init(1); init_predata() }" />
11
         <self-channel style="margin-right: 10px;" title="" type='promotionType' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { plat_order_type = val; init(1); init_predata() }" />
12
         <self-channel style="margin-right: 10px;" title="" type='incomeSource' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { is_ad_user = val; init(1); init_predata() }" />
12
         <self-channel style="margin-right: 10px;" title="" type='incomeSource' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { is_ad_user = val; init(1); init_predata() }" />
13
+        <self-channel style="margin-right: 10px;" title="" type='adqAccount' :reset="resetFlag" :labelWidth="true" @channelDefine="(val) => { account_id = val; init(1); init_predata() }" />
13
       </div>
14
       </div>
14
       <div class="reset" @click="resetEvent">重置</div>
15
       <div class="reset" @click="resetEvent">重置</div>
15
       <el-button class="export-btn" type="primary" size="mini" @click="init(1, 'export')">导出Excel</el-button>
16
       <el-button class="export-btn" type="primary" size="mini" @click="init(1, 'export')">导出Excel</el-button>
204
         zfje: []
205
         zfje: []
205
       },
206
       },
206
       resetFlag: false,
207
       resetFlag: false,
208
+      appid: '',
207
       account_id: '',
209
       account_id: '',
208
       order_type: '',
210
       order_type: '',
209
       plat_order_type: '',
211
       plat_order_type: '',
301
       this.time = [this.$getDay(-30, false), this.$getDay(0, false)]
303
       this.time = [this.$getDay(-30, false), this.$getDay(0, false)]
302
       this.chargePay_val = ''
304
       this.chargePay_val = ''
303
       this.paySource_val = ''
305
       this.paySource_val = ''
306
+      this.appid = ''
304
       this.account_id = ''
307
       this.account_id = ''
305
       this.id_val = ''
308
       this.id_val = ''
306
       this.order_type = ''
309
       this.order_type = ''
327
         order_source: this.paySource_val,
330
         order_source: this.paySource_val,
328
         start_date: this.time[0],
331
         start_date: this.time[0],
329
         end_date: this.time[1],
332
         end_date: this.time[1],
330
-        appid: this.account_id,
333
+        appid: this.appid,
334
+        account_id: this.account_id,
331
         order_type: this.order_type,
335
         order_type: this.order_type,
332
         plat_order_type: this.plat_order_type,
336
         plat_order_type: this.plat_order_type,
333
         is_ad_user: this.is_ad_user,
337
         is_ad_user: this.is_ad_user,
376
         order_type: this.order_type,
380
         order_type: this.order_type,
377
         plat_order_type: this.plat_order_type,
381
         plat_order_type: this.plat_order_type,
378
         is_ad_user: this.is_ad_user,
382
         is_ad_user: this.is_ad_user,
379
-        appid: this.account_id,
383
+        appid: this.appid,
384
+        account_id: this.account_id,
380
         order_source: this.paySource_val,
385
         order_source: this.paySource_val,
381
         order_id: this.id_val,
386
         order_id: this.id_val,
382
         start_date: this.time[0],
387
         start_date: this.time[0],