修复错误
This commit is contained in:
parent
a377c02a43
commit
09c407bacd
@ -21,6 +21,7 @@ use app\common\repositories\user\UserMerchantRepository;
|
||||
use think\App;
|
||||
use crmeb\basic\BaseController;
|
||||
use app\common\repositories\store\product\ProductRepository as repository;
|
||||
use think\facade\Db;
|
||||
use think\facade\Cache;
|
||||
|
||||
class StoreProduct extends BaseController
|
||||
@ -172,6 +173,8 @@ class StoreProduct extends BaseController
|
||||
$data = Cache::get($param['key']);
|
||||
Cache::delete($param['key']);
|
||||
}elseif($param['id']){
|
||||
$a=Db::name('store_product')->where('product_id',$param['id'])->value('product_type');
|
||||
$param['product_type']=$a;
|
||||
$data = $this->repository->getPreview($param);
|
||||
}
|
||||
if(!$data) return app('json')->fail('数据不存在');
|
||||
|
Loading…
x
Reference in New Issue
Block a user