From e57e7052e9ca61900b7f73f637abef28af6ad43d Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Mon, 18 Dec 2023 18:05:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=AE=89=E6=8E=92-=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E4=BB=BB=E5=8A=A1=E6=97=B6=E9=80=89=E6=8B=A9=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=88=9B=E5=BB=BA=E6=A8=A1=E6=9D=BF=EF=BC=8C=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=A1=AB=E5=85=85=E8=A1=A8=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lists/create_task_template/CreateTaskTemplateLists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/adminapi/lists/create_task_template/CreateTaskTemplateLists.php b/app/adminapi/lists/create_task_template/CreateTaskTemplateLists.php index 906e0447f..ee8db8f7b 100644 --- a/app/adminapi/lists/create_task_template/CreateTaskTemplateLists.php +++ b/app/adminapi/lists/create_task_template/CreateTaskTemplateLists.php @@ -56,7 +56,7 @@ class CreateTaskTemplateLists extends BaseAdminDataLists implements ListsSearchI public function lists(): array { return CreateTaskTemplate::where($this->searchWhere) - ->field(['id', 'title', 'admin_id', 'task_role_id', 'type', 'stage_day_one', 'money', 'proportion_one', 'stage_day_two', 'proportion_two', 'money_two', 'stage_day_three', 'new_money_three', 'money_longtime', 'types', 'extend', 'recharge', 'content']) + ->field(['id', 'title', 'admin_id', 'task_role_id', 'type', 'stage_day_one', 'money', 'proportion_one', 'stage_day_two', 'proportion_two', 'money_two', 'stage_day_three', 'new_money_three', 'money_longtime', 'types', 'recharge', 'content']) ->append(['admin_name']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc'])