dataLists(new ShopAccountLogLists()); } /** * @notes 变动类型列表 * @return array|\think\response\Json * @author ljj * @date 2022/5/31 5:06 下午 */ public function changeTypeLists() { $params = $this->request->get('type',ShopAccountLogEnum::MONEY); if ($params == ShopAccountLogEnum::MONEY) { return $this->data(ShopAccountLogEnum::getCommissionTypeDesc()); } if ($params == ShopAccountLogEnum::DEPOSIT) { return $this->data(ShopAccountLogEnum::getDepositTypeDesc()); } return []; } }