|
@@ -18,7 +18,7 @@ class JuliangAccountController extends CatchController
|
|
|
|
|
|
public function list(Request $request) {
|
|
|
$advAccountId = $request->input('account_id');
|
|
|
- $advAccountName = $request->input('account_name');
|
|
|
+ $advAccountName = $request->input('name');
|
|
|
$unBind = $request->input('unbind', 0);
|
|
|
$id = $request->input('id', 0);
|
|
|
$alreadyBindConfigIds = null;
|
|
@@ -83,6 +83,7 @@ class JuliangAccountController extends CatchController
|
|
|
foreach ($list as $item) {
|
|
|
$item->promotion_name = $promotions->get($item->id)->name ?? '';
|
|
|
$item->promotion_id = $promotions->get($item->id)->id ?? '';
|
|
|
+ $item->name = $item->adv_account_name;
|
|
|
}
|
|
|
|
|
|
return $list;
|