23 lines
541 B
PHP
23 lines
541 B
PHP
<?php
|
|
/**
|
|
* page.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' => '信息页面',
|
|
'info_title' => '信息标题',
|
|
'info_content' => '内容',
|
|
|
|
'pages_index' => '单页列表',
|
|
'pages_create' => '创建单页',
|
|
'pages_show' => '单页详情',
|
|
'pages_update' => '单页编辑',
|
|
'pages_delete' => '删除单页'
|
|
];
|