mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改代码
This commit is contained in:
parent
52d11305a2
commit
6f2d88e27a
@ -41,7 +41,7 @@ class Menu extends Controller
|
||||
public function index()
|
||||
{
|
||||
$this->title = '系统菜单管理';
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
SystemMenu::mQuery()->layTable();
|
||||
}
|
||||
|
||||
|
@ -41,8 +41,7 @@ class User extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
// 创建快捷查询工具
|
||||
SystemUser::mQuery()->layTable(function () {
|
||||
$this->title = '系统用户管理';
|
||||
|
@ -25,7 +25,7 @@ class Discount extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BaseUserDiscount::mQuery()->layTable(function () {
|
||||
$this->title = '折扣方案管理';
|
||||
}, function (QueryHelper $query) {
|
||||
|
@ -53,7 +53,7 @@ class Pager extends Controller
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->skey = input('get.type', '');
|
||||
$this->skey = $this->get['type'] ?? '';
|
||||
$this->base = $this->types[$this->skey] ?? [];
|
||||
if (empty($this->base)) $this->error('未配置基础数据!');
|
||||
$this->title = "编辑{$this->base['name']}";
|
||||
|
@ -32,7 +32,7 @@ class Payment extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BaseUserPayment::mQuery()->layTable(function () {
|
||||
$this->title = '支付通道管理';
|
||||
}, function (QueryHelper $query) {
|
||||
|
@ -72,7 +72,7 @@ class Slider extends Controller
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$this->skey = input('get.type', '');
|
||||
$this->skey = $this->get['type'] ?? '';
|
||||
$this->base = $this->types[$this->skey] ?? [];
|
||||
if (empty($this->base)) $this->error('未配置基础数据!');
|
||||
$this->number = $this->base['number'];
|
||||
|
@ -25,7 +25,7 @@ class Company extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BasePostageCompany::mQuery()->layTable(function () {
|
||||
$this->title = '快递公司管理';
|
||||
}, function (QueryHelper $query) {
|
||||
|
@ -26,7 +26,7 @@ class Template extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
BasePostageTemplate::mQuery()->layTable(function () {
|
||||
$this->title = '快递邮费模板';
|
||||
}, function (QueryHelper $query) {
|
||||
|
@ -26,7 +26,7 @@ class Item extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
DataNewsItem::mQuery($this->get)->layTable(function () {
|
||||
$this->title = '文章内容管理';
|
||||
$this->marks = DataNewsMark::items();
|
||||
|
@ -49,7 +49,7 @@ class Auto extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
WechatAuto::mQuery()->layTable(function () {
|
||||
$this->title = '关注自动回复';
|
||||
}, function (QueryHelper $query) {
|
||||
|
@ -60,7 +60,7 @@ class Keys extends Controller
|
||||
$this->error("生成二维码失败,请稍候再试!<br> {$exception->getMessage()}");
|
||||
}
|
||||
// 数据列表分页处理
|
||||
$this->type = input('get.type', 'index');
|
||||
$this->type = $this->get['type'] ?? 'index';
|
||||
WechatKeys::mQuery()->layTable(function () {
|
||||
$this->title = '回复规则管理';
|
||||
}, function (QueryHelper $query) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user