FreightTemplate.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. namespace app\mall\controller;
  3. use library\Controller;
  4. use think\Db;
  5. use think\view\driver\Think;
  6. /**
  7. * 运费模板
  8. * Class FreightTemplate
  9. * @package app\mall\controller
  10. */
  11. class FreightTemplate extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. protected $table = 'FreightTemplate';
  18. /**
  19. * 运费模板管理
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $this->title = '运费模板';
  31. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  32. $query->order('status desc , sort desc , id desc')->page();
  33. }
  34. /**
  35. * 数据列表处理
  36. * @auth true
  37. * @menu true
  38. * @param array $data
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. */
  43. protected function _index_page_filter(&$data)
  44. {
  45. }
  46. /**
  47. * 添加运费模板
  48. * @auth true
  49. * @menu true
  50. * @throws \think\Exception
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\ModelNotFoundException
  53. * @throws \think\exception\DbException
  54. * @throws \think\exception\PDOException
  55. */
  56. public function add()
  57. {
  58. $this->title = '添加运费模板';
  59. $this->city_area = get_city_area();
  60. $this->_form($this->table, 'form');
  61. }
  62. /**
  63. * 编辑运费模板
  64. * @auth true
  65. * @menu true
  66. * @throws \think\Exception
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @throws \think\exception\DbException
  70. * @throws \think\exception\PDOException
  71. */
  72. public function edit()
  73. {
  74. $this->title = '编辑运费模板';
  75. $this->city_area = get_city_area();
  76. $this->_form($this->table, 'form');
  77. }
  78. /**
  79. * 禁用
  80. * @auth true
  81. * @menu true
  82. * @throws \think\Exception
  83. * @throws \think\exception\PDOException
  84. */
  85. public function forbidden()
  86. {
  87. $this->_save($this->table, ['status' => '0']);
  88. }
  89. /**
  90. * 启用
  91. * @auth true
  92. * @menu true
  93. * @throws \think\Exception
  94. * @throws \think\exception\PDOException
  95. */
  96. public function enable()
  97. {
  98. $this->_save($this->table, ['status' => 1]);
  99. }
  100. /**
  101. * 删除
  102. * @auth true
  103. * @menu true
  104. * @throws \think\Exception
  105. * @throws \think\exception\PDOException
  106. */
  107. public function del()
  108. {
  109. $this->_save($this->table, ['is_deleted' => 1]);
  110. }
  111. /* 表单数据处理
  112. * @auth true
  113. * @menu true
  114. * @param array $data
  115. */
  116. protected function _form_filter(&$data)
  117. {
  118. // 添加或编辑模板
  119. if ($this->request->isPost()) {
  120. $custom_num = count($data['first_num']);
  121. $custom_data = [];
  122. for ($i= 0;$i < $custom_num;$i++) {
  123. $custom_data[$i]['express'] = $data['express'][$i];
  124. $custom_data[$i]['first_num'] = $data['first_num'][$i] > 0 ? intval($data['first_num'][$i]):0;
  125. $custom_data[$i]['first_price'] = $data['first_price'][$i]> 0 ? number_format($data['first_price'][$i],2) :0 ;
  126. $custom_data[$i]['keep_price'] = $data['keep_price'][$i] > 0 ? number_format($data['keep_price'][$i],2) :0 ;
  127. }
  128. $data['custom'] = json_encode($custom_data);
  129. }
  130. }
  131. protected function _form_result($id)
  132. {
  133. $this->success('操作成功', 'javascript:history.back()');
  134. }
  135. }