wupengfei 2 лет назад
Родитель
Сommit
8282d77ff3

+ 4 - 4
application/mall/controller/GoodsCate.php

@@ -96,7 +96,7 @@ class GoodsCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function resume()
+    public function enable()
     {
         $this->_save($this->table, ['status' => '1']);
     }
@@ -107,7 +107,7 @@ class GoodsCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function forbid()
+    public function forbidden()
     {
         $this->_save($this->table, ['status' => '0']);
     }
@@ -118,9 +118,9 @@ class GoodsCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function remove()
+    public function del()
     {
-        $this->_delete($this->table);
+        $this->_save($this->table, ['is_deleted' => 1]);
     }
 
 }

+ 4 - 4
application/mall/controller/WashCate.php

@@ -101,7 +101,7 @@ class WashCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function resume()
+    public function enable()
     {
         $this->_save($this->table, ['status' => '1']);
     }
@@ -112,7 +112,7 @@ class WashCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function forbid()
+    public function forbidden()
     {
         $this->_save($this->table, ['status' => '0']);
     }
@@ -123,9 +123,9 @@ class WashCate extends Controller
      * @throws \think\Exception
      * @throws \think\exception\PDOException
      */
-    public function remove()
+    public function del()
     {
-        $this->_delete($this->table);
+        $this->_save($this->table, ['is_deleted' => 1]);
     }
 
 }