26 lines
821 B
PHP
26 lines
821 B
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 [
|
|
'index' => '客戶組',
|
|
'consumption_limit' => '消費額度',
|
|
'discount_rate' => '折扣率',
|
|
'reward_points_factor' => '獎勵積分係數',
|
|
'integral_factor' => '使用積分係數',
|
|
|
|
'customer_groups_index' => '客戶組列表',
|
|
'customer_groups_create' => '創建客戶組',
|
|
'customer_groups_show' => '客戶組詳情',
|
|
'customer_groups_update' => '更新客戶組',
|
|
'customer_groups_delete' => '刪除客戶組',
|
|
'default_cannot_delete' => '默認客戶組不能刪除',
|
|
];
|