wupengfei 2 年 前
コミット
605757ef26
1 ファイル変更18 行追加0 行削除
  1. 18 0
      application/order/controller/AppOrder.php

+ 18 - 0
application/order/controller/AppOrder.php

@@ -59,6 +59,24 @@ class AppOrder extends Controller
         }
         $this->_save($this->table, ['status' => 1]);
     }
+
+
+    /**
+     * 订单详情
+     * @auth true
+     * @menu true
+     * @throws \think\Exception
+     * @throws \think\db\exception\DataNotFoundException
+     * @throws \think\db\exception\ModelNotFoundException
+     * @throws \think\exception\DbException
+     * @throws \think\exception\PDOException
+     */
+    public function detail()
+    {
+        $this->title = '订单详情';
+        $this->_form($this->table);
+    }
+
     /**
      * 表单数据处理
      * @auth true