24 lines
644 B
PHP
24 lines
644 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' => '区域组',
|
|
'regions_index' => '区域组列表',
|
|
'regions_create' => '创建区域组',
|
|
'regions_show' => '区域组详情',
|
|
'regions_update' => '更新区域组',
|
|
'regions_delete' => '删除区域组',
|
|
'name' => '名称',
|
|
'describe' => '描述',
|
|
'country' => '国家',
|
|
'zone' => '省份',
|
|
];
|