35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* order.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'list' => '订单列表',
|
|
|
|
'order_quantity' => '订单数量',
|
|
'order_amount' => '订单金额',
|
|
'orders_index' => '订单列表',
|
|
'orders_create' => '创建订单',
|
|
'orders_show' => '订单详情',
|
|
'orders_export' => '导出订单',
|
|
'orders_update' => '更新订单',
|
|
'orders_delete' => '删除订单',
|
|
'notify' => '是否提醒',
|
|
'orders_update_status' => '更新状态',
|
|
'error_status' => '请选择状态',
|
|
'payments_history' => '支付记录',
|
|
'text_response' => '返回数据',
|
|
'text_request' => '请求参数',
|
|
'text_callback' => '回调',
|
|
'text_receipt' => '凭据',
|
|
'order_id' => '订单ID',
|
|
'text_transaction_id' => '交易ID',
|
|
'text_click_view' => '点击查看',
|
|
];
|