diff --git a/beike/Shop/Http/Controllers/Account/RmaController.php b/beike/Shop/Http/Controllers/Account/RmaController.php index e6222d0c..20b9ae1b 100644 --- a/beike/Shop/Http/Controllers/Account/RmaController.php +++ b/beike/Shop/Http/Controllers/Account/RmaController.php @@ -26,7 +26,7 @@ class RmaController extends Controller public function index() { $rmas = RmaRepo::listByCustomer(current_customer()); - + dd($rmas); $data = [ 'rmas' => $rmas, ]; @@ -45,7 +45,8 @@ class RmaController extends Controller 'statuses' => RmaRepo::getStatuses(), 'types' => RmaRepo::getTypes(), ]; - return view('rms/info', $data); + + return view('account/rmas/info', $data); } public function create(int $orderProductId) diff --git a/themes/default/account/rmas/form.blade.php b/themes/default/account/rmas/form.blade.php index f1baaf9a..54dd8392 100644 --- a/themes/default/account/rmas/form.blade.php +++ b/themes/default/account/rmas/form.blade.php @@ -23,7 +23,7 @@
提交售后信息
-
+
diff --git a/themes/default/account/rmas/index.blade.php b/themes/default/account/rmas/index.blade.php index 93be643b..a370372c 100644 --- a/themes/default/account/rmas/index.blade.php +++ b/themes/default/account/rmas/index.blade.php @@ -1 +1,53 @@ -{{-- {{ dd($rmas) }} --}} \ No newline at end of file +@extends('layout.master') + +@section('body-class', 'page-account-rmas') + +@section('content') +
+ + + +
+ + +
+ +
+
+
+@endsection diff --git a/themes/default/account/rmas/info.blade.php b/themes/default/account/rmas/info.blade.php new file mode 100644 index 00000000..b8a9d600 --- /dev/null +++ b/themes/default/account/rmas/info.blade.php @@ -0,0 +1,37 @@ +@extends('layout.master') + +@section('body-class', 'page-account-rmas') + +@push('header') + {{-- --}} +@endpush + +@section('content') +
+ + +
+ + +
+
+
+
售后详情
+
+
+ +
+
+
+
+
+@endsection + +@push('add-scripts') + +@endpush