1234567891011121314151617181920212223242526272829303132 |
- <?php
- // 接口公共方法
- use think\Db;
- function get_goods_spec($goods_id,$goods_no)
- {
- $ret_val = ['error_code'=>0,'detail'=>[]];
- $goods_info = Db::table('store_goods')
- ->field()
- ->where(['id'=>$goods_id,'is_deleted'=>0,'status'=>1])
- ->find();
- if(!empty($goods_info)) return $ret_val = ['error_code'=>1,'detail'=>[]];
- }
|