songxingwei 3 years ago
parent
commit
85de570f11
1 changed files with 12 additions and 0 deletions
  1. 12 0
      application/store/controller/Order.php

+ 12 - 0
application/store/controller/Order.php

@@ -252,4 +252,16 @@ class Order extends Controller
         $this->_save($this->table, ['status' => '5','cancel_reason'=>'后台取消订单']);
     }
 
+    /**
+     * 软删除
+     * @auth true
+     * @throws \think\Exception
+     * @throws \think\exception\PDOException
+     */
+    public function del()
+    {
+        $this->_save($this->table, ['is_del' => '0']);
+    }
+
+
 }