| 12345678910111213141516171819202122232425 |
- <?php
- namespace app\modules\client\controllers\v1\alipay;
- use app\modules\client\models\v1\alipay\OrderForm;
- class OrderController extends BaseController
- {
- //获取运费
- public function actionGetFreight() {
- $from = new OrderForm();
- $from->attributes = get_params();
- $from->store_id = get_store_id();
- return $this->asJson($from->getFreight());
- }
- //创建订单
- public function actionCreateOrder() {
- $from = new OrderForm();
- $from->attributes = all_params();
- $from->store_id = get_store_id();
- return $this->asJson($from->createOrder());
- }
- }
|