Browse Source

推广链接列表中增加充值模板id

liuzejian 1 year ago
parent
commit
81fe912242
1 changed files with 2 additions and 1 deletions
  1. 2 1
      modules/Tuiguang/Http/Controllers/PromotionController.php

+ 2 - 1
modules/Tuiguang/Http/Controllers/PromotionController.php

@@ -53,7 +53,8 @@ class PromotionController extends CatchController
             })->orderBy('created_at', 'desc')
             ->select('promotions.id', 'promotions.name', 'promotions.created_at',
             'videos.name as video_name', 'promotions.series_sequence', 'promotions.callback_type',
-                'promotions.callback_config_id', 'promotions.video_id', 'promotions.remark', 'promotions.status')
+                'promotions.callback_config_id', 'promotions.video_id', 'promotions.remark', 'promotions.status',
+            'promotions.first_charge_template_id', 'promotions.not_first_charge_template_id')
             ->paginate($request->input('limit', 15));
         foreach ($result as $item) {
             $item->status_str = $item->status ? '启用':'禁用';