|
|
|
@ -181,15 +181,32 @@ class Goods extends GoodsService |
|
|
|
|
public function cityInfo(): array |
|
|
|
|
{ |
|
|
|
|
$model = new ShopModel; |
|
|
|
|
$list = $model->where([ |
|
|
|
|
$info = $model->where([ |
|
|
|
|
'is_delete' => 0, |
|
|
|
|
'status' => 1, |
|
|
|
|
'store_id' => $_GET['store_id'], |
|
|
|
|
'is_main' => 1, |
|
|
|
|
])->field('shop_name,star,shop_hours, |
|
|
|
|
])->field('shop_name,star,shop_hours,summary,phone, |
|
|
|
|
province_id,city_id,region_id,shop_id,address,latitude,longitude')->find()->toArray(); |
|
|
|
|
|
|
|
|
|
return $list; |
|
|
|
|
$info['remark'] = ['手机选购', '电脑选购']; |
|
|
|
|
$info['star'] = 5; |
|
|
|
|
$info['fuwu_hours'] = 5; |
|
|
|
|
$info['fuwu_num'] = 15; |
|
|
|
|
$info['star'] = 5; |
|
|
|
|
$info['wechat'] = 'https://www.saas.njrenzhou.com/uploads/10001/20240127/12bb1b1747e652d258443247a5c4777c.png'; |
|
|
|
|
$info['history'] = ['time' => '2022-01-01', 'contenmt' => 'yml与2000年成立']; |
|
|
|
|
$info['evaluate'] = [ |
|
|
|
|
'image' => 'https://www.saas.njrenzhou.com/uploads/10001/20240116/18adc22ad9ea021ab2586878fe1035b0.png', |
|
|
|
|
'nickname' => 'wmc', |
|
|
|
|
'content' => '很好', |
|
|
|
|
]; |
|
|
|
|
$info['imageList'] = [ |
|
|
|
|
'https://www.saas.njrenzhou.com/uploads/10001/20240116/18adc22ad9ea021ab2586878fe1035b0.png', |
|
|
|
|
'https://www.saas.njrenzhou.com/uploads/10001/20240116/18adc22ad9ea021ab2586878fe1035b0.png' |
|
|
|
|
|
|
|
|
|
]; |
|
|
|
|
return $info; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// //抢购会场列表 |
|
|
|
|