修改日志名称
This commit is contained in:
@@ -47,7 +47,7 @@ class IndexController extends AdminController
|
||||
$filter->equal('thirdPartyGoodsId', '优惠政策')->select(ActivityRule::pluck('title', 'code'));
|
||||
});
|
||||
$filter->column(1 / 2, function ($filter) {
|
||||
$filter->like('redemptionCode', '平安券编号');
|
||||
$filter->like('redemptionCode', '卡券编号');
|
||||
$filter->where(function ($query) {
|
||||
$query->whereHas('outlet', function ($query) {
|
||||
$query->whereHas('info', function ($query) {
|
||||
@@ -75,7 +75,7 @@ class IndexController extends AdminController
|
||||
return $this->outlet ? $this->outlet->nickname : $this->outletId;
|
||||
});
|
||||
|
||||
$grid->column('redemptionCode', '平安券编号');
|
||||
$grid->column('redemptionCode', '卡券编号');
|
||||
$grid->column('couponName', '优惠政策');
|
||||
$grid->column('price', '核销金额');
|
||||
$grid->column('资金通道结算')->display(function () {
|
||||
|
||||
@@ -10,7 +10,7 @@ use Encore\Admin\Widgets\Table;
|
||||
class IndexController extends AdminController
|
||||
{
|
||||
|
||||
protected $title = 'api 日志22';
|
||||
protected $title = 'api接口日志';
|
||||
|
||||
/**
|
||||
* Notes:
|
||||
@@ -26,10 +26,7 @@ class IndexController extends AdminController
|
||||
$grid->disableActions();
|
||||
|
||||
$grid->filter(function ($filter) {
|
||||
$filter->equal('type', '接口类型')->select([
|
||||
'pingan' => '平安',
|
||||
'self' => '自己',
|
||||
]);
|
||||
$filter->equal('type', '接口类型')->select(Log::TYPES);
|
||||
$filter->where(function ($query) {
|
||||
$query->where("out_source->data->profitOfferItemVersion", $this->input);
|
||||
}, '券类型')->select([
|
||||
|
||||
Reference in New Issue
Block a user