|
@@ -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']);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|