|
|
@@ -30,7 +30,7 @@ class Shops extends Base
|
|
|
if(empty($platform_id)){
|
|
|
$this->error('参数有误');
|
|
|
}
|
|
|
- return $this->success('ok', [$shopList->where('platform', $platform_id)->column('name', 'id')]);
|
|
|
+ return $this->success('ok', $shopList->where('platform', $platform_id)->column('name', 'id'));
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -46,6 +46,12 @@ class Shops extends Base
|
|
|
return $this->success('ok', $shopList);
|
|
|
}
|
|
|
|
|
|
+ //发货记录
|
|
|
+ public function delivery(UserEnterLog $userEnterLog){
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
//添加记录
|
|
|
public function create(UserEnterLog $userEnterLog)
|