common.php 378 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. // 接口公共方法
  3. use think\Db;
  4. function get_goods_spec($goods_id,$goods_no)
  5. {
  6. $ret_val = ['error_code'=>0,'detail'=>[]];
  7. $goods_info = Db::table('store_goods')
  8. ->field()
  9. ->where(['id'=>$goods_id,'is_deleted'=>0,'status'=>1])
  10. ->find();
  11. if(!empty($goods_info)) return $ret_val = ['error_code'=>1,'detail'=>[]];
  12. }