修复错误

This commit is contained in:
mkm 2023-05-11 10:29:05 +08:00
parent a377c02a43
commit 09c407bacd

View File

@ -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('数据不存在');