Browse Source

供应商订单列表

dev
李可松 4 years ago
parent
commit
9a6e403b13
  1. 8
      app/Admin/Controllers/OrderController.php
  2. 139
      app/AdminSupplier/Controllers/OrderController.php
  3. 16
      app/AdminSupplier/Repositories/Order.php
  4. 1
      app/AdminSupplier/routes.php
  5. 296
      dcat_admin_ide_helper.php

8
app/Admin/Controllers/OrderController.php

@ -55,7 +55,6 @@ class OrderController extends AdminController
$grid->column('status', '订单状态')->using(OrderStatus::array()); $grid->column('status', '订单状态')->using(OrderStatus::array());
$grid->column('paid_at'); $grid->column('paid_at');
$grid->column('created_at'); $grid->column('created_at');
$grid->column('updated_at');
$grid->filter(function (Grid\Filter $filter) { $grid->filter(function (Grid\Filter $filter) {
$filter->panel(); $filter->panel();
@ -85,9 +84,10 @@ class OrderController extends AdminController
*/ */
protected function detail($id) protected function detail($id)
{ {
return Show::make($id, new Order(), function (Show $show) {
return Show::make($id, new Order(['agent:id,name']), function (Show $show) {
$show->disableDeleteButton(); $show->disableDeleteButton();
$show->disableQuickEdit(); $show->disableQuickEdit();
$show->disableEditButton();
$show->field('id'); $show->field('id');
$show->field('agent.name'); $show->field('agent.name');
@ -119,8 +119,12 @@ class OrderController extends AdminController
{ {
return Form::make(new Order(), function (Form $form) { return Form::make(new Order(), function (Form $form) {
$form->disableDeleteButton(); $form->disableDeleteButton();
$form->disableFooter();
$form->disableHeader();
$form->display('id')->width(2); $form->display('id')->width(2);
})->saving(function (Form $form) {
return $form->response()->error('操作禁止');
})->deleting(function (Form $form) { })->deleting(function (Form $form) {
return $form->response()->error('禁止删除'); return $form->response()->error('禁止删除');
}); });

139
app/AdminSupplier/Controllers/OrderController.php

@ -0,0 +1,139 @@
<?php
namespace App\AdminSupplier\Controllers;
use App\AdminSupplier\Repositories\Order;
use App\Common\OrderStatus;
use App\Common\PayType;
use App\Models\Agent;
use App\Models\Supplier;
use Dcat\Admin\Admin;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;
use Dcat\Admin\Show;
use Dcat\Admin\Http\Controllers\AdminController;
use Dcat\Admin\Widgets\Table;
class OrderController extends AdminController
{
/**
* Make a grid builder.
*
* @return Grid
*/
protected function grid()
{
return Grid::make(new Order([
'agent:id,name',
'agentProduct.product:id,title,price,pictures',
'product'
]), function (Grid $grid) {
$grid->disableCreateButton();
$grid->disableDeleteButton();
$grid->disableEditButton();
$grid->model()->where('supplier_id', Admin::user()->id);
$grid->column('id')->sortable();
$grid->column('agent.name', '代理商');
$grid->column('title');
$grid->column('picture')->image(60, 60);
$grid->column('product', '订单信息')
->display('查看')
->modal('订单信息', function ($modal) {
return Table::make(['订单号', '姓名', '手机号', '订单总价', '购买数量'],
[[
$this->order_no,
$this->name,
$this->mobile,
$this->price,
$this->num,
]]);
})->xl();
$grid->column('paid_money');
$grid->column('price');
// $grid->column('refund_info');
$grid->column('pay_type')->using(PayType::array());
$grid->column('status', '订单状态')->using(OrderStatus::array());
$grid->column('paid_at');
$grid->column('created_at');
$grid->filter(function (Grid\Filter $filter) {
$filter->panel();
$filter->equal('id')->width(2);
$filter->equal('mobile')->width(2);
$filter->equal('order_no')->width(3);
$filter->equal('status')->select(OrderStatus::array())->width(2);
$option = Agent::query()->pluck('name', 'id');
$filter->equal('agent_id', '代理商')->select($option)->width(3);
$option = Supplier::query()->pluck('name', 'id');
$filter->equal('product.supplier_id', '供应商')->select($option)->width(3);
$filter->between('created_at')->datetime()->width(4);
});
});
}
/**
* Make a show builder.
*
* @param mixed $id
*
* @return Show
*/
protected function detail($id)
{
return Show::make($id, new Order(['agent:id,name']), function (Show $show) {
$show->disableDeleteButton();
$show->disableQuickEdit();
$show->disableEditButton();
//不允许查看非自己的数据
if ($show->model()->supplier_id != Admin::user()->id) {
Admin::exit('数据不存在');
}
$show->field('id');
$show->field('agent.name');
$show->field('mobile');
$show->field('name');
$show->field('num');
$show->field('order_no');
$show->field('paid_at');
$show->field('paid_money');
$show->field('pay_type')->using(PayType::array());
$show->field('title');
$show->field('picture')->image(80, 80);
$show->field('price');
$show->field('product_id');
$show->field('status')->using(OrderStatus::array());
$show->field('title');
$show->field('user_id');
$show->field('created_at');
$show->field('updated_at');
});
}
/**
* Make a form builder.
*
* @return Form
*/
protected function form()
{
return Form::make(new Order(), function (Form $form) {
$form->disableDeleteButton();
$form->disableFooter();
$form->disableHeader();
$form->display('id')->width(2);
})->saving(function (Form $form) {
return $form->response()->error('操作禁止');
})->deleting(function (Form $form) {
return $form->response()->error('禁止删除');
});
}
}

16
app/AdminSupplier/Repositories/Order.php

@ -0,0 +1,16 @@
<?php
namespace App\AdminSupplier\Repositories;
use App\Models\Order as Model;
use Dcat\Admin\Repositories\EloquentRepository;
class Order extends EloquentRepository
{
/**
* Model.
*
* @var string
*/
protected $eloquentClass = Model::class;
}

1
app/AdminSupplier/routes.php

@ -15,4 +15,5 @@ Route::group([
$router->get('/', 'HomeController@index'); $router->get('/', 'HomeController@index');
$router->resource('product/list', 'ProductController'); $router->resource('product/list', 'ProductController');
$router->resource('order/list', 'OrderController');
}); });

296
dcat_admin_ide_helper.php

@ -11,62 +11,62 @@ namespace Dcat\Admin {
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
/** /**
* @property Grid\Column|Collection product_id
* @property Grid\Column|Collection know
* @property Grid\Column|Collection content * @property Grid\Column|Collection content
* @property Grid\Column|Collection know
* @property Grid\Column|Collection product_id
* @property Grid\Column|Collection created_at
* @property Grid\Column|Collection detail
* @property Grid\Column|Collection id * @property Grid\Column|Collection id
* @property Grid\Column|Collection name * @property Grid\Column|Collection name
* @property Grid\Column|Collection type * @property Grid\Column|Collection type
* @property Grid\Column|Collection version
* @property Grid\Column|Collection detail
* @property Grid\Column|Collection created_at
* @property Grid\Column|Collection updated_at * @property Grid\Column|Collection updated_at
* @property Grid\Column|Collection version
* @property Grid\Column|Collection is_enabled * @property Grid\Column|Collection is_enabled
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection order
* @property Grid\Column|Collection extension
* @property Grid\Column|Collection icon * @property Grid\Column|Collection icon
* @property Grid\Column|Collection order
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection uri * @property Grid\Column|Collection uri
* @property Grid\Column|Collection extension
* @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection menu_id * @property Grid\Column|Collection menu_id
* @property Grid\Column|Collection slug
* @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection http_method * @property Grid\Column|Collection http_method
* @property Grid\Column|Collection http_path * @property Grid\Column|Collection http_path
* @property Grid\Column|Collection slug
* @property Grid\Column|Collection role_id * @property Grid\Column|Collection role_id
* @property Grid\Column|Collection user_id * @property Grid\Column|Collection user_id
* @property Grid\Column|Collection value * @property Grid\Column|Collection value
* @property Grid\Column|Collection username
* @property Grid\Column|Collection password
* @property Grid\Column|Collection avatar * @property Grid\Column|Collection avatar
* @property Grid\Column|Collection password
* @property Grid\Column|Collection remember_token * @property Grid\Column|Collection remember_token
* @property Grid\Column|Collection username
* @property Grid\Column|Collection agent_id
* @property Grid\Column|Collection desc
* @property Grid\Column|Collection picture * @property Grid\Column|Collection picture
* @property Grid\Column|Collection tag * @property Grid\Column|Collection tag
* @property Grid\Column|Collection desc
* @property Grid\Column|Collection agent_id
* @property Grid\Column|Collection about * @property Grid\Column|Collection about
* @property Grid\Column|Collection reg_protocol
* @property Grid\Column|Collection buy_protocol * @property Grid\Column|Collection buy_protocol
* @property Grid\Column|Collection product_ids
* @property Grid\Column|Collection price
* @property Grid\Column|Collection reg_protocol
* @property Grid\Column|Collection category_id
* @property Grid\Column|Collection channel_id
* @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection guide_id
* @property Grid\Column|Collection original_price * @property Grid\Column|Collection original_price
* @property Grid\Column|Collection price
* @property Grid\Column|Collection product_ids
* @property Grid\Column|Collection sale * @property Grid\Column|Collection sale
* @property Grid\Column|Collection channel_id
* @property Grid\Column|Collection category_id
* @property Grid\Column|Collection settlement * @property Grid\Column|Collection settlement
* @property Grid\Column|Collection guide_id
* @property Grid\Column|Collection status * @property Grid\Column|Collection status
* @property Grid\Column|Collection verifier * @property Grid\Column|Collection verifier
* @property Grid\Column|Collection deleted_at
* @property Grid\Column|Collection address
* @property Grid\Column|Collection appid * @property Grid\Column|Collection appid
* @property Grid\Column|Collection appsecret * @property Grid\Column|Collection appsecret
* @property Grid\Column|Collection mchid
* @property Grid\Column|Collection mchkey
* @property Grid\Column|Collection company_name * @property Grid\Column|Collection company_name
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection address
* @property Grid\Column|Collection license_pic
* @property Grid\Column|Collection director
* @property Grid\Column|Collection contact_phone * @property Grid\Column|Collection contact_phone
* @property Grid\Column|Collection director
* @property Grid\Column|Collection license_pic
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection mchid
* @property Grid\Column|Collection mchkey
* @property Grid\Column|Collection rate * @property Grid\Column|Collection rate
* @property Grid\Column|Collection author * @property Grid\Column|Collection author
* @property Grid\Column|Collection image * @property Grid\Column|Collection image
@ -74,27 +74,27 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection sort * @property Grid\Column|Collection sort
* @property Grid\Column|Collection template * @property Grid\Column|Collection template
* @property Grid\Column|Collection agent_product_id * @property Grid\Column|Collection agent_product_id
* @property Grid\Column|Collection start_at
* @property Grid\Column|Collection end_at * @property Grid\Column|Collection end_at
* @property Grid\Column|Collection uuid
* @property Grid\Column|Collection start_at
* @property Grid\Column|Collection connection * @property Grid\Column|Collection connection
* @property Grid\Column|Collection queue
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection exception * @property Grid\Column|Collection exception
* @property Grid\Column|Collection failed_at * @property Grid\Column|Collection failed_at
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection queue
* @property Grid\Column|Collection uuid
* @property Grid\Column|Collection photo * @property Grid\Column|Collection photo
* @property Grid\Column|Collection is_read * @property Grid\Column|Collection is_read
* @property Grid\Column|Collection order_no
* @property Grid\Column|Collection num
* @property Grid\Column|Collection mobile
* @property Grid\Column|Collection pay_type
* @property Grid\Column|Collection coupon_id * @property Grid\Column|Collection coupon_id
* @property Grid\Column|Collection paid_money
* @property Grid\Column|Collection mobile
* @property Grid\Column|Collection num
* @property Grid\Column|Collection order_no
* @property Grid\Column|Collection paid_at * @property Grid\Column|Collection paid_at
* @property Grid\Column|Collection paid_money
* @property Grid\Column|Collection pay_type
* @property Grid\Column|Collection refund_info * @property Grid\Column|Collection refund_info
* @property Grid\Column|Collection supplier_id
* @property Grid\Column|Collection email * @property Grid\Column|Collection email
* @property Grid\Column|Collection token * @property Grid\Column|Collection token
* @property Grid\Column|Collection supplier_id
* @property Grid\Column|Collection pictures * @property Grid\Column|Collection pictures
* @property Grid\Column|Collection stock * @property Grid\Column|Collection stock
* @property Grid\Column|Collection url * @property Grid\Column|Collection url
@ -107,62 +107,62 @@ namespace Dcat\Admin {
* @property Grid\Column|Collection openid * @property Grid\Column|Collection openid
* @property Grid\Column|Collection unionid * @property Grid\Column|Collection unionid
* *
* @method Grid\Column|Collection product_id(string $label = null)
* @method Grid\Column|Collection know(string $label = null)
* @method Grid\Column|Collection content(string $label = null) * @method Grid\Column|Collection content(string $label = null)
* @method Grid\Column|Collection know(string $label = null)
* @method Grid\Column|Collection product_id(string $label = null)
* @method Grid\Column|Collection created_at(string $label = null)
* @method Grid\Column|Collection detail(string $label = null)
* @method Grid\Column|Collection id(string $label = null) * @method Grid\Column|Collection id(string $label = null)
* @method Grid\Column|Collection name(string $label = null) * @method Grid\Column|Collection name(string $label = null)
* @method Grid\Column|Collection type(string $label = null) * @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection version(string $label = null)
* @method Grid\Column|Collection detail(string $label = null)
* @method Grid\Column|Collection created_at(string $label = null)
* @method Grid\Column|Collection updated_at(string $label = null) * @method Grid\Column|Collection updated_at(string $label = null)
* @method Grid\Column|Collection version(string $label = null)
* @method Grid\Column|Collection is_enabled(string $label = null) * @method Grid\Column|Collection is_enabled(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection extension(string $label = null)
* @method Grid\Column|Collection icon(string $label = null) * @method Grid\Column|Collection icon(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection uri(string $label = null) * @method Grid\Column|Collection uri(string $label = null)
* @method Grid\Column|Collection extension(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection menu_id(string $label = null) * @method Grid\Column|Collection menu_id(string $label = null)
* @method Grid\Column|Collection slug(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection http_method(string $label = null) * @method Grid\Column|Collection http_method(string $label = null)
* @method Grid\Column|Collection http_path(string $label = null) * @method Grid\Column|Collection http_path(string $label = null)
* @method Grid\Column|Collection slug(string $label = null)
* @method Grid\Column|Collection role_id(string $label = null) * @method Grid\Column|Collection role_id(string $label = null)
* @method Grid\Column|Collection user_id(string $label = null) * @method Grid\Column|Collection user_id(string $label = null)
* @method Grid\Column|Collection value(string $label = null) * @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection username(string $label = null)
* @method Grid\Column|Collection password(string $label = null)
* @method Grid\Column|Collection avatar(string $label = null) * @method Grid\Column|Collection avatar(string $label = null)
* @method Grid\Column|Collection password(string $label = null)
* @method Grid\Column|Collection remember_token(string $label = null) * @method Grid\Column|Collection remember_token(string $label = null)
* @method Grid\Column|Collection username(string $label = null)
* @method Grid\Column|Collection agent_id(string $label = null)
* @method Grid\Column|Collection desc(string $label = null)
* @method Grid\Column|Collection picture(string $label = null) * @method Grid\Column|Collection picture(string $label = null)
* @method Grid\Column|Collection tag(string $label = null) * @method Grid\Column|Collection tag(string $label = null)
* @method Grid\Column|Collection desc(string $label = null)
* @method Grid\Column|Collection agent_id(string $label = null)
* @method Grid\Column|Collection about(string $label = null) * @method Grid\Column|Collection about(string $label = null)
* @method Grid\Column|Collection reg_protocol(string $label = null)
* @method Grid\Column|Collection buy_protocol(string $label = null) * @method Grid\Column|Collection buy_protocol(string $label = null)
* @method Grid\Column|Collection product_ids(string $label = null)
* @method Grid\Column|Collection price(string $label = null)
* @method Grid\Column|Collection reg_protocol(string $label = null)
* @method Grid\Column|Collection category_id(string $label = null)
* @method Grid\Column|Collection channel_id(string $label = null)
* @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection guide_id(string $label = null)
* @method Grid\Column|Collection original_price(string $label = null) * @method Grid\Column|Collection original_price(string $label = null)
* @method Grid\Column|Collection price(string $label = null)
* @method Grid\Column|Collection product_ids(string $label = null)
* @method Grid\Column|Collection sale(string $label = null) * @method Grid\Column|Collection sale(string $label = null)
* @method Grid\Column|Collection channel_id(string $label = null)
* @method Grid\Column|Collection category_id(string $label = null)
* @method Grid\Column|Collection settlement(string $label = null) * @method Grid\Column|Collection settlement(string $label = null)
* @method Grid\Column|Collection guide_id(string $label = null)
* @method Grid\Column|Collection status(string $label = null) * @method Grid\Column|Collection status(string $label = null)
* @method Grid\Column|Collection verifier(string $label = null) * @method Grid\Column|Collection verifier(string $label = null)
* @method Grid\Column|Collection deleted_at(string $label = null)
* @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection appid(string $label = null) * @method Grid\Column|Collection appid(string $label = null)
* @method Grid\Column|Collection appsecret(string $label = null) * @method Grid\Column|Collection appsecret(string $label = null)
* @method Grid\Column|Collection mchid(string $label = null)
* @method Grid\Column|Collection mchkey(string $label = null)
* @method Grid\Column|Collection company_name(string $label = null) * @method Grid\Column|Collection company_name(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection license_pic(string $label = null)
* @method Grid\Column|Collection director(string $label = null)
* @method Grid\Column|Collection contact_phone(string $label = null) * @method Grid\Column|Collection contact_phone(string $label = null)
* @method Grid\Column|Collection director(string $label = null)
* @method Grid\Column|Collection license_pic(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection mchid(string $label = null)
* @method Grid\Column|Collection mchkey(string $label = null)
* @method Grid\Column|Collection rate(string $label = null) * @method Grid\Column|Collection rate(string $label = null)
* @method Grid\Column|Collection author(string $label = null) * @method Grid\Column|Collection author(string $label = null)
* @method Grid\Column|Collection image(string $label = null) * @method Grid\Column|Collection image(string $label = null)
@ -170,27 +170,27 @@ namespace Dcat\Admin {
* @method Grid\Column|Collection sort(string $label = null) * @method Grid\Column|Collection sort(string $label = null)
* @method Grid\Column|Collection template(string $label = null) * @method Grid\Column|Collection template(string $label = null)
* @method Grid\Column|Collection agent_product_id(string $label = null) * @method Grid\Column|Collection agent_product_id(string $label = null)
* @method Grid\Column|Collection start_at(string $label = null)
* @method Grid\Column|Collection end_at(string $label = null) * @method Grid\Column|Collection end_at(string $label = null)
* @method Grid\Column|Collection uuid(string $label = null)
* @method Grid\Column|Collection start_at(string $label = null)
* @method Grid\Column|Collection connection(string $label = null) * @method Grid\Column|Collection connection(string $label = null)
* @method Grid\Column|Collection queue(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection exception(string $label = null) * @method Grid\Column|Collection exception(string $label = null)
* @method Grid\Column|Collection failed_at(string $label = null) * @method Grid\Column|Collection failed_at(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection queue(string $label = null)
* @method Grid\Column|Collection uuid(string $label = null)
* @method Grid\Column|Collection photo(string $label = null) * @method Grid\Column|Collection photo(string $label = null)
* @method Grid\Column|Collection is_read(string $label = null) * @method Grid\Column|Collection is_read(string $label = null)
* @method Grid\Column|Collection order_no(string $label = null)
* @method Grid\Column|Collection num(string $label = null)
* @method Grid\Column|Collection mobile(string $label = null)
* @method Grid\Column|Collection pay_type(string $label = null)
* @method Grid\Column|Collection coupon_id(string $label = null) * @method Grid\Column|Collection coupon_id(string $label = null)
* @method Grid\Column|Collection paid_money(string $label = null)
* @method Grid\Column|Collection mobile(string $label = null)
* @method Grid\Column|Collection num(string $label = null)
* @method Grid\Column|Collection order_no(string $label = null)
* @method Grid\Column|Collection paid_at(string $label = null) * @method Grid\Column|Collection paid_at(string $label = null)
* @method Grid\Column|Collection paid_money(string $label = null)
* @method Grid\Column|Collection pay_type(string $label = null)
* @method Grid\Column|Collection refund_info(string $label = null) * @method Grid\Column|Collection refund_info(string $label = null)
* @method Grid\Column|Collection supplier_id(string $label = null)
* @method Grid\Column|Collection email(string $label = null) * @method Grid\Column|Collection email(string $label = null)
* @method Grid\Column|Collection token(string $label = null) * @method Grid\Column|Collection token(string $label = null)
* @method Grid\Column|Collection supplier_id(string $label = null)
* @method Grid\Column|Collection pictures(string $label = null) * @method Grid\Column|Collection pictures(string $label = null)
* @method Grid\Column|Collection stock(string $label = null) * @method Grid\Column|Collection stock(string $label = null)
* @method Grid\Column|Collection url(string $label = null) * @method Grid\Column|Collection url(string $label = null)
@ -208,62 +208,62 @@ namespace Dcat\Admin {
class MiniGrid extends Grid {} class MiniGrid extends Grid {}
/** /**
* @property Show\Field|Collection product_id
* @property Show\Field|Collection know
* @property Show\Field|Collection content * @property Show\Field|Collection content
* @property Show\Field|Collection know
* @property Show\Field|Collection product_id
* @property Show\Field|Collection created_at
* @property Show\Field|Collection detail
* @property Show\Field|Collection id * @property Show\Field|Collection id
* @property Show\Field|Collection name * @property Show\Field|Collection name
* @property Show\Field|Collection type * @property Show\Field|Collection type
* @property Show\Field|Collection version
* @property Show\Field|Collection detail
* @property Show\Field|Collection created_at
* @property Show\Field|Collection updated_at * @property Show\Field|Collection updated_at
* @property Show\Field|Collection version
* @property Show\Field|Collection is_enabled * @property Show\Field|Collection is_enabled
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection order
* @property Show\Field|Collection extension
* @property Show\Field|Collection icon * @property Show\Field|Collection icon
* @property Show\Field|Collection order
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection uri * @property Show\Field|Collection uri
* @property Show\Field|Collection extension
* @property Show\Field|Collection permission_id
* @property Show\Field|Collection menu_id * @property Show\Field|Collection menu_id
* @property Show\Field|Collection slug
* @property Show\Field|Collection permission_id
* @property Show\Field|Collection http_method * @property Show\Field|Collection http_method
* @property Show\Field|Collection http_path * @property Show\Field|Collection http_path
* @property Show\Field|Collection slug
* @property Show\Field|Collection role_id * @property Show\Field|Collection role_id
* @property Show\Field|Collection user_id * @property Show\Field|Collection user_id
* @property Show\Field|Collection value * @property Show\Field|Collection value
* @property Show\Field|Collection username
* @property Show\Field|Collection password
* @property Show\Field|Collection avatar * @property Show\Field|Collection avatar
* @property Show\Field|Collection password
* @property Show\Field|Collection remember_token * @property Show\Field|Collection remember_token
* @property Show\Field|Collection username
* @property Show\Field|Collection agent_id
* @property Show\Field|Collection desc
* @property Show\Field|Collection picture * @property Show\Field|Collection picture
* @property Show\Field|Collection tag * @property Show\Field|Collection tag
* @property Show\Field|Collection desc
* @property Show\Field|Collection agent_id
* @property Show\Field|Collection about * @property Show\Field|Collection about
* @property Show\Field|Collection reg_protocol
* @property Show\Field|Collection buy_protocol * @property Show\Field|Collection buy_protocol
* @property Show\Field|Collection product_ids
* @property Show\Field|Collection price
* @property Show\Field|Collection reg_protocol
* @property Show\Field|Collection category_id
* @property Show\Field|Collection channel_id
* @property Show\Field|Collection deleted_at
* @property Show\Field|Collection guide_id
* @property Show\Field|Collection original_price * @property Show\Field|Collection original_price
* @property Show\Field|Collection price
* @property Show\Field|Collection product_ids
* @property Show\Field|Collection sale * @property Show\Field|Collection sale
* @property Show\Field|Collection channel_id
* @property Show\Field|Collection category_id
* @property Show\Field|Collection settlement * @property Show\Field|Collection settlement
* @property Show\Field|Collection guide_id
* @property Show\Field|Collection status * @property Show\Field|Collection status
* @property Show\Field|Collection verifier * @property Show\Field|Collection verifier
* @property Show\Field|Collection deleted_at
* @property Show\Field|Collection address
* @property Show\Field|Collection appid * @property Show\Field|Collection appid
* @property Show\Field|Collection appsecret * @property Show\Field|Collection appsecret
* @property Show\Field|Collection mchid
* @property Show\Field|Collection mchkey
* @property Show\Field|Collection company_name * @property Show\Field|Collection company_name
* @property Show\Field|Collection logo
* @property Show\Field|Collection address
* @property Show\Field|Collection license_pic
* @property Show\Field|Collection director
* @property Show\Field|Collection contact_phone * @property Show\Field|Collection contact_phone
* @property Show\Field|Collection director
* @property Show\Field|Collection license_pic
* @property Show\Field|Collection logo
* @property Show\Field|Collection mchid
* @property Show\Field|Collection mchkey
* @property Show\Field|Collection rate * @property Show\Field|Collection rate
* @property Show\Field|Collection author * @property Show\Field|Collection author
* @property Show\Field|Collection image * @property Show\Field|Collection image
@ -271,27 +271,27 @@ namespace Dcat\Admin {
* @property Show\Field|Collection sort * @property Show\Field|Collection sort
* @property Show\Field|Collection template * @property Show\Field|Collection template
* @property Show\Field|Collection agent_product_id * @property Show\Field|Collection agent_product_id
* @property Show\Field|Collection start_at
* @property Show\Field|Collection end_at * @property Show\Field|Collection end_at
* @property Show\Field|Collection uuid
* @property Show\Field|Collection start_at
* @property Show\Field|Collection connection * @property Show\Field|Collection connection
* @property Show\Field|Collection queue
* @property Show\Field|Collection payload
* @property Show\Field|Collection exception * @property Show\Field|Collection exception
* @property Show\Field|Collection failed_at * @property Show\Field|Collection failed_at
* @property Show\Field|Collection payload
* @property Show\Field|Collection queue
* @property Show\Field|Collection uuid
* @property Show\Field|Collection photo * @property Show\Field|Collection photo
* @property Show\Field|Collection is_read * @property Show\Field|Collection is_read
* @property Show\Field|Collection order_no
* @property Show\Field|Collection num
* @property Show\Field|Collection mobile
* @property Show\Field|Collection pay_type
* @property Show\Field|Collection coupon_id * @property Show\Field|Collection coupon_id
* @property Show\Field|Collection paid_money
* @property Show\Field|Collection mobile
* @property Show\Field|Collection num
* @property Show\Field|Collection order_no
* @property Show\Field|Collection paid_at * @property Show\Field|Collection paid_at
* @property Show\Field|Collection paid_money
* @property Show\Field|Collection pay_type
* @property Show\Field|Collection refund_info * @property Show\Field|Collection refund_info
* @property Show\Field|Collection supplier_id
* @property Show\Field|Collection email * @property Show\Field|Collection email
* @property Show\Field|Collection token * @property Show\Field|Collection token
* @property Show\Field|Collection supplier_id
* @property Show\Field|Collection pictures * @property Show\Field|Collection pictures
* @property Show\Field|Collection stock * @property Show\Field|Collection stock
* @property Show\Field|Collection url * @property Show\Field|Collection url
@ -304,62 +304,62 @@ namespace Dcat\Admin {
* @property Show\Field|Collection openid * @property Show\Field|Collection openid
* @property Show\Field|Collection unionid * @property Show\Field|Collection unionid
* *
* @method Show\Field|Collection product_id(string $label = null)
* @method Show\Field|Collection know(string $label = null)
* @method Show\Field|Collection content(string $label = null) * @method Show\Field|Collection content(string $label = null)
* @method Show\Field|Collection know(string $label = null)
* @method Show\Field|Collection product_id(string $label = null)
* @method Show\Field|Collection created_at(string $label = null)
* @method Show\Field|Collection detail(string $label = null)
* @method Show\Field|Collection id(string $label = null) * @method Show\Field|Collection id(string $label = null)
* @method Show\Field|Collection name(string $label = null) * @method Show\Field|Collection name(string $label = null)
* @method Show\Field|Collection type(string $label = null) * @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection version(string $label = null)
* @method Show\Field|Collection detail(string $label = null)
* @method Show\Field|Collection created_at(string $label = null)
* @method Show\Field|Collection updated_at(string $label = null) * @method Show\Field|Collection updated_at(string $label = null)
* @method Show\Field|Collection version(string $label = null)
* @method Show\Field|Collection is_enabled(string $label = null) * @method Show\Field|Collection is_enabled(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection extension(string $label = null)
* @method Show\Field|Collection icon(string $label = null) * @method Show\Field|Collection icon(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection uri(string $label = null) * @method Show\Field|Collection uri(string $label = null)
* @method Show\Field|Collection extension(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection menu_id(string $label = null) * @method Show\Field|Collection menu_id(string $label = null)
* @method Show\Field|Collection slug(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection http_method(string $label = null) * @method Show\Field|Collection http_method(string $label = null)
* @method Show\Field|Collection http_path(string $label = null) * @method Show\Field|Collection http_path(string $label = null)
* @method Show\Field|Collection slug(string $label = null)
* @method Show\Field|Collection role_id(string $label = null) * @method Show\Field|Collection role_id(string $label = null)
* @method Show\Field|Collection user_id(string $label = null) * @method Show\Field|Collection user_id(string $label = null)
* @method Show\Field|Collection value(string $label = null) * @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection username(string $label = null)
* @method Show\Field|Collection password(string $label = null)
* @method Show\Field|Collection avatar(string $label = null) * @method Show\Field|Collection avatar(string $label = null)
* @method Show\Field|Collection password(string $label = null)
* @method Show\Field|Collection remember_token(string $label = null) * @method Show\Field|Collection remember_token(string $label = null)
* @method Show\Field|Collection username(string $label = null)
* @method Show\Field|Collection agent_id(string $label = null)
* @method Show\Field|Collection desc(string $label = null)
* @method Show\Field|Collection picture(string $label = null) * @method Show\Field|Collection picture(string $label = null)
* @method Show\Field|Collection tag(string $label = null) * @method Show\Field|Collection tag(string $label = null)
* @method Show\Field|Collection desc(string $label = null)
* @method Show\Field|Collection agent_id(string $label = null)
* @method Show\Field|Collection about(string $label = null) * @method Show\Field|Collection about(string $label = null)
* @method Show\Field|Collection reg_protocol(string $label = null)
* @method Show\Field|Collection buy_protocol(string $label = null) * @method Show\Field|Collection buy_protocol(string $label = null)
* @method Show\Field|Collection product_ids(string $label = null)
* @method Show\Field|Collection price(string $label = null)
* @method Show\Field|Collection reg_protocol(string $label = null)
* @method Show\Field|Collection category_id(string $label = null)
* @method Show\Field|Collection channel_id(string $label = null)
* @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection guide_id(string $label = null)
* @method Show\Field|Collection original_price(string $label = null) * @method Show\Field|Collection original_price(string $label = null)
* @method Show\Field|Collection price(string $label = null)
* @method Show\Field|Collection product_ids(string $label = null)
* @method Show\Field|Collection sale(string $label = null) * @method Show\Field|Collection sale(string $label = null)
* @method Show\Field|Collection channel_id(string $label = null)
* @method Show\Field|Collection category_id(string $label = null)
* @method Show\Field|Collection settlement(string $label = null) * @method Show\Field|Collection settlement(string $label = null)
* @method Show\Field|Collection guide_id(string $label = null)
* @method Show\Field|Collection status(string $label = null) * @method Show\Field|Collection status(string $label = null)
* @method Show\Field|Collection verifier(string $label = null) * @method Show\Field|Collection verifier(string $label = null)
* @method Show\Field|Collection deleted_at(string $label = null)
* @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection appid(string $label = null) * @method Show\Field|Collection appid(string $label = null)
* @method Show\Field|Collection appsecret(string $label = null) * @method Show\Field|Collection appsecret(string $label = null)
* @method Show\Field|Collection mchid(string $label = null)
* @method Show\Field|Collection mchkey(string $label = null)
* @method Show\Field|Collection company_name(string $label = null) * @method Show\Field|Collection company_name(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection license_pic(string $label = null)
* @method Show\Field|Collection director(string $label = null)
* @method Show\Field|Collection contact_phone(string $label = null) * @method Show\Field|Collection contact_phone(string $label = null)
* @method Show\Field|Collection director(string $label = null)
* @method Show\Field|Collection license_pic(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection mchid(string $label = null)
* @method Show\Field|Collection mchkey(string $label = null)
* @method Show\Field|Collection rate(string $label = null) * @method Show\Field|Collection rate(string $label = null)
* @method Show\Field|Collection author(string $label = null) * @method Show\Field|Collection author(string $label = null)
* @method Show\Field|Collection image(string $label = null) * @method Show\Field|Collection image(string $label = null)
@ -367,27 +367,27 @@ namespace Dcat\Admin {
* @method Show\Field|Collection sort(string $label = null) * @method Show\Field|Collection sort(string $label = null)
* @method Show\Field|Collection template(string $label = null) * @method Show\Field|Collection template(string $label = null)
* @method Show\Field|Collection agent_product_id(string $label = null) * @method Show\Field|Collection agent_product_id(string $label = null)
* @method Show\Field|Collection start_at(string $label = null)
* @method Show\Field|Collection end_at(string $label = null) * @method Show\Field|Collection end_at(string $label = null)
* @method Show\Field|Collection uuid(string $label = null)
* @method Show\Field|Collection start_at(string $label = null)
* @method Show\Field|Collection connection(string $label = null) * @method Show\Field|Collection connection(string $label = null)
* @method Show\Field|Collection queue(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection exception(string $label = null) * @method Show\Field|Collection exception(string $label = null)
* @method Show\Field|Collection failed_at(string $label = null) * @method Show\Field|Collection failed_at(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection queue(string $label = null)
* @method Show\Field|Collection uuid(string $label = null)
* @method Show\Field|Collection photo(string $label = null) * @method Show\Field|Collection photo(string $label = null)
* @method Show\Field|Collection is_read(string $label = null) * @method Show\Field|Collection is_read(string $label = null)
* @method Show\Field|Collection order_no(string $label = null)
* @method Show\Field|Collection num(string $label = null)
* @method Show\Field|Collection mobile(string $label = null)
* @method Show\Field|Collection pay_type(string $label = null)
* @method Show\Field|Collection coupon_id(string $label = null) * @method Show\Field|Collection coupon_id(string $label = null)
* @method Show\Field|Collection paid_money(string $label = null)
* @method Show\Field|Collection mobile(string $label = null)
* @method Show\Field|Collection num(string $label = null)
* @method Show\Field|Collection order_no(string $label = null)
* @method Show\Field|Collection paid_at(string $label = null) * @method Show\Field|Collection paid_at(string $label = null)
* @method Show\Field|Collection paid_money(string $label = null)
* @method Show\Field|Collection pay_type(string $label = null)
* @method Show\Field|Collection refund_info(string $label = null) * @method Show\Field|Collection refund_info(string $label = null)
* @method Show\Field|Collection supplier_id(string $label = null)
* @method Show\Field|Collection email(string $label = null) * @method Show\Field|Collection email(string $label = null)
* @method Show\Field|Collection token(string $label = null) * @method Show\Field|Collection token(string $label = null)
* @method Show\Field|Collection supplier_id(string $label = null)
* @method Show\Field|Collection pictures(string $label = null) * @method Show\Field|Collection pictures(string $label = null)
* @method Show\Field|Collection stock(string $label = null) * @method Show\Field|Collection stock(string $label = null)
* @method Show\Field|Collection url(string $label = null) * @method Show\Field|Collection url(string $label = null)

Loading…
Cancel
Save