31 lines
821 B
PHP
31 lines
821 B
PHP
<?php
|
|
/**
|
|
* rma.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-08-16 17:22:41
|
|
* @modified 2022-08-16 17:22:41
|
|
*/
|
|
|
|
return [
|
|
'index' => 'A/S 신청',
|
|
|
|
'rmas_index' => 'A/S 목록',
|
|
'rmas_show' => 'A/S 상세정보',
|
|
'rmas_update' => '업데이트 A/S',
|
|
'rmas_delete' => 'A/S 삭제',
|
|
|
|
'customers_name' => '고객 이름',
|
|
'quantity' => '수량',
|
|
'service_type' => '서비스 유형',
|
|
'rma_details' => 'A/S 신청내역',
|
|
'reasons_return' => '반품 사유',
|
|
'current_state' => '현재 상태',
|
|
'modify_status' => '상태 수정',
|
|
'remarks' => '메모 정보',
|
|
'update_status' => '업데이트 상태',
|
|
'operation_history' => '조작 이력',
|
|
];
|