Brand.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Brand extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 添加品牌
  20. * @access public
  21. * @author csdeshang
  22. * @param array $data 参数内容
  23. * @return boolean
  24. */
  25. public function addBrand($data) {
  26. return Db::name('brand')->insertGetId($data);
  27. }
  28. /**
  29. * 编辑品牌
  30. * @access public
  31. * @author csdeshang
  32. * @param array $condition 检索条件
  33. * @param array $update 更新数据
  34. * @return boolean
  35. */
  36. public function editBrand($condition, $update) {
  37. return Db::name('brand')->where($condition)->update($update);
  38. }
  39. /**
  40. * 删除品牌
  41. * @access public
  42. * @author csdeshang
  43. * @param array $condition 检索条件
  44. * @return boolean
  45. */
  46. public function delBrand($condition) {
  47. $brand_array = $this->getBrandList($condition, 'brand_id,brand_pic');
  48. $brandid_array = array();
  49. foreach ($brand_array as $value) {
  50. $brandid_array[] = $value['brand_id'];
  51. @unlink(BASE_UPLOAD_PATH. DIRECTORY_SEPARATOR .ATTACH_BRAND. DIRECTORY_SEPARATOR .$value['brand_pic']);
  52. }
  53. return Db::name('brand')->where('brand_id','in',$brandid_array)->delete();
  54. }
  55. /**
  56. * 查询品牌数量
  57. * @access public
  58. * @author csdeshang
  59. * @param array $condition 检索条件
  60. * @return array
  61. */
  62. public function getBrandCount($condition) {
  63. return Db::name('brand')->where($condition)->count();
  64. }
  65. /**
  66. * 品牌列表
  67. * @access public
  68. * @author csdeshang
  69. * @param array $condition 检索条件
  70. * @param str $field 字段
  71. * @param int $pagesize 分页信息
  72. * @param str $order 排序
  73. * @return array
  74. */
  75. public function getBrandList($condition, $field = '*', $pagesize = 0, $order = 'brand_sort asc, brand_id desc') {
  76. if($pagesize) {
  77. $res= Db::name('brand')->where($condition)->field($field)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  78. $this->page_info=$res;
  79. return $res->items();
  80. }else{
  81. return Db::name('brand')->where($condition)->field($field)->order($order)->select()->toArray();
  82. }
  83. }
  84. /**
  85. * 通过的品牌列表
  86. * @access public
  87. * @author csdeshang
  88. * @param array $condition 检索条件
  89. * @param str $field 字段
  90. * @param int $pagesize 分页信息
  91. * @param str $order 排序
  92. * @return array
  93. */
  94. public function getBrandPassedList($condition, $field = '*', $pagesize = 0, $order = 'brand_sort asc, brand_id desc') {
  95. $condition[] = array('brand_apply','=',1);
  96. return $this->getBrandList($condition, $field, $pagesize, $order);
  97. }
  98. /**
  99. * 未通过的品牌列表
  100. * @access public
  101. * @author csdeshang
  102. * @param array $condition 检索条件
  103. * @param string $field 字段
  104. * @param string $pagesize 分页信息
  105. * @return array
  106. */
  107. public function getBrandNoPassedList($condition, $field = '*', $pagesize = 0) {
  108. $condition[] = array('brand_apply','=',0);
  109. return $this->getBrandList($condition, $field, $pagesize);
  110. }
  111. /**
  112. * 取单个品牌内容
  113. * @access public
  114. * @author csdeshang
  115. * @param array $condition 检索条件
  116. * @param string $field 字段
  117. * @return array
  118. */
  119. public function getBrandInfo($condition, $field = '*') {
  120. return Db::name('brand')->field($field)->where($condition)->find();
  121. }
  122. }
  123. ?>