123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace app\index\controller;
- use app\index\model\OrderModel;
- use think\Controller;
- class Order extends Controller
- {
- public function check_rcode(){
- $order_sn = input('param.order_sn');
- $ret = ['check' => true,'order_sn' => $order_sn];
- json_success($ret);
- }
- public function order_bind_code(){
- $order_sn = input('param.order_sn');
- $OrderModel = new OrderModel();
- $order = $OrderModel->getOne($order_sn);
- if(empty($order)){
- return json(json_error_exception(1008));
- }
- $code = $this->createRandCode($order_sn);
- }
- public function createRandCode($order_sn){
- }
- }
- application/index/controller/Base.php application/index/controller/Box.php application/index/controller/Cabinet.php application/index/controller/Index.php application/index/controller/Node.php application/index/controller/Order.php
- application/index/controller/Role.php
- application/index/model/BoxModel.php
- application/index/model/CabinetModel.php
- application/index/model/NodeModel.php
- application/index/model/OrderModel.php
- application/index/model/RoleModel.php
- application/index/validate/CabinetValidate.php
- application/index/validate/RoleValidate.php
- application/index/validate/UserValidate.php
- conf/php-fpm/docker-php-fpm-start
- config/errorCode.php
- docker-compose-windows.yml
- route/route.php
|