31 lines
915 B
PHP
31 lines
915 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' => '售后申请',
|
|
|
|
'rmas_index' => '售后服务列表',
|
|
'rmas_show' => '售后服务详情',
|
|
'rmas_update' => '更新售后服务',
|
|
'rmas_delete' => '删除售后服务',
|
|
|
|
'customers_name' => '客户姓名',
|
|
'quantity' => '数量',
|
|
'service_type' => '服务类型',
|
|
'rma_details' => '售后申请详情',
|
|
'reasons_return' => '退货原因',
|
|
'current_state' => '当前状态',
|
|
'modify_status' => '修改状态',
|
|
'remarks' => '备注信息',
|
|
'update_status' => '更新状态',
|
|
'operation_history' => '操作历史',
|
|
];
|