1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-07-01 22:54:56 +08:00

!13 修正退款项目空白以及弹窗自适应

* 修复退款项目空白,以及弹窗高度自适应
This commit is contained in:
koogua 2020-11-10 14:58:59 +08:00
parent 7c92b0315a
commit 8dd496ab2a
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ class OrderController extends Controller
$order = $service->handle($sn);
if ($order['status'] != OrderModel::STATUS_PENDING) {
$this->response->redirect(['for' => 'home.my.orders']);
$this->response->redirect(['for' => 'home.uc.orders']);
}
$this->view->setVar('order', $order);

View File

@ -45,7 +45,7 @@ class RefundController extends Controller
$service->handle();
$content = [
'location' => $this->url->get(['for' => 'home.my.refunds']),
'location' => $this->url->get(['for' => 'home.uc.refunds']),
'msg' => '申请退款成功',
];
@ -79,7 +79,7 @@ class RefundController extends Controller
$service->handle($sn);
$content = [
'location' => $this->url->get(['for' => 'home.my.refunds']),
'location' => $this->url->get(['for' => 'home.uc.refunds']),
'msg' => '取消退款成功',
];