Quellcode durchsuchen

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

zhengxy vor 2 Jahren
Ursprung
Commit
4127bb7e76
1 geänderte Dateien mit 8 neuen und 3 gelöschten Zeilen
  1. 8 3
      project/src/components/orderManage/charge.vue

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

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