郭嘉 6 months ago
parent 1bae2d5dc6
commit d454e6ef86
  1. 7
      app/store/controller/Merchant.php

@ -55,10 +55,9 @@ class Merchant extends Controller
continue;
}
if (!empty($l['user_id']) && !empty($l['user_name'])) {
if (!empty($l['store_user_id']) && !empty($l['user_name'])) {
$tmp = [
$l['user_id'] => $l['user_name']
$l['store_user_id'] => $l['user_name']
];
array_push($list, $tmp);
}
@ -66,7 +65,7 @@ class Merchant extends Controller
$model2 = new MerchantModel;
$list2 = $model2->getList($this->request->param())->toArray();
$userIds = array_column($list2['data'], "user_id");
$userIds = array_column($list2['data'], "user_name");
foreach ($list as $kd => $d) {

Loading…
Cancel
Save