Spec.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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 Spec extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 规格列表
  20. * @access public
  21. * @author csdeshang
  22. * @param type $condition 条件
  23. * @param type $pagesize 分页
  24. * @param type $order 排序
  25. * @return type
  26. */
  27. public function getSpecList($condition, $pagesize = '', $order = 'sp_id desc') {
  28. if($pagesize){
  29. $result= Db::name('spec')->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  30. $this->page_info=$result;
  31. return $result->items();
  32. }else{
  33. return Db::name('spec')->where($condition)->order($order)->select()->toArray();
  34. }
  35. }
  36. /**
  37. * 单条规格信息
  38. * @access public
  39. * @author csdeshang
  40. * @param type $sp_id 规格ID
  41. * @param type $field 字段
  42. * @return type
  43. */
  44. public function getSpecInfo($sp_id, $field = '*') {
  45. return Db::name('spec')->where('sp_id',$sp_id)->field($field)->find();
  46. }
  47. /**
  48. * 规格值列表
  49. * @access public
  50. * @author csdeshang
  51. * @param type $where 条件
  52. * @param type $field 字段
  53. * @param type $order 排序
  54. * @return type
  55. */
  56. public function getSpecvalueList($where, $field = '*', $order = 'spvalue_sort asc,spvalue_id asc') {
  57. $result = Db::name('specvalue')->field($field)->where($where)->order($order)->select()->toArray();
  58. return empty($result) ? array() : $result;
  59. }
  60. /**
  61. * 更新规格值
  62. * @access public
  63. * @author csdeshang
  64. * @param array $update 更新数据
  65. * @param array $where 条件
  66. * @return boolean
  67. */
  68. public function editSpecvalue($update, $where) {
  69. $result = Db::name('specvalue')->where($where)->update($update);
  70. return $result;
  71. }
  72. /**
  73. * 增加规格值
  74. * @access public
  75. * @author csdeshang
  76. * @param array $data 数据
  77. * @return boolean
  78. */
  79. public function addSpecvalue($data) {
  80. $result = Db::name('specvalue')->insertGetId($data);
  81. return $result;
  82. }
  83. /**
  84. * 添加规格 多条
  85. * @access public
  86. * @author csdeshang
  87. * @param array $data 数据
  88. * @return boolean
  89. */
  90. public function addSpecvalueALL($data) {
  91. $result = Db::name('specvalue')->insertAll($data);
  92. return $result;
  93. }
  94. /**
  95. * 删除规格值
  96. * @access public
  97. * @author csdeshang
  98. * @param array $where 条件
  99. * @return boolean
  100. */
  101. public function delSpecvalue($where) {
  102. $result = Db::name('specvalue')->where($where)->delete();
  103. return $result;
  104. }
  105. /**
  106. * 更新规格信息
  107. * @access public
  108. * @author csdeshang
  109. * @param type $update 更新数据
  110. * @param type $condition 条件
  111. * @return boolean
  112. */
  113. public function editSpec($update, $condition) {
  114. if (empty($update)) {
  115. return false;
  116. }
  117. return Db::name('spec')->where($condition)->update($update);
  118. }
  119. /**
  120. * 添加规格信息
  121. * @access public
  122. * @author csdeshang
  123. * @param type $data 数据
  124. * @return type
  125. */
  126. public function addSpec($data) {
  127. // 规格表插入数据
  128. $result = Db::name('spec')->insertGetId($data);
  129. return $result;
  130. }
  131. /**
  132. * 删除规格
  133. * @access public
  134. * @author csdeshang
  135. * @param type $condition 条件
  136. * @return type
  137. */
  138. public function delSpec($condition) {
  139. return Db::name('spec')->where($condition)->delete();
  140. }
  141. }
  142. ?>