...
|
...
|
@@ -66,8 +66,8 @@ class Goods extends Model |
|
|
->join('sto_goodstype t','t.id = g.goodstype_id')
|
|
|
->join('sto_store s','s.id = g.store_id')
|
|
|
->where($where)
|
|
|
->find();
|
|
|
dump($data);
|
|
|
->find(false);
|
|
|
dump($data);exit;
|
|
|
$storeModel = new Store();
|
|
|
$store = $storeModel->findData(['id'=>$data['store_id']]);
|
|
|
$data['store_is_vip'] = $store['is_vip'];
|
...
|
...
|
|