| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- use common\enums\EventNameEnum;
- return [
- // ----------------------- APP链接 ----------------------- //
- 'links' => [
- [
- 'title' => 'O2O门店',
- 'route' => '/plugins2/Store/store/storeindex',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '入驻申请',
- 'route' => '/plugins2/Store/index',
- 'icon' => '',
- 'params' => [],
- ],[
- 'title' => '核销入口',
- 'route' => '/plugins2/Store/writeoff/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '店铺管理',
- 'route' => '/plugins2/Store/shopManage/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '福利',
- 'route' => '/plugins2/Store/shopManage/videoplay',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'O2O门店卖家',
- 'route' => '/plugins2/Store/orderSales/list',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'O2O门店移动端',
- 'route' => '/plugins2/Store/admin/store',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '收款码',
- 'route' => '/plugins2/Store/dealPayment/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '交易钱包',
- 'route' => '/plugins2/Store/orderSales/assets/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '门店核销券',
- 'route' => '/plugins4/StoreWriteCoupons/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '待还款',
- 'route' => '/plugins/pages/order/creditOrder',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'o2o购物车',
- 'route' => '/plugins2/Store/cart/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'o2o关联门店',
- 'route' => '/plugins2/Store/store/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '入驻门店聚合页',
- 'route' => '/plugins7/StoreEntryLimit/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => '流失订单',
- 'route' => '/plugins7/StoreEntryLimit/lose_order_list',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'o2o首页',
- 'route' => '/pages/AntTechnology/storeIndex/index',
- 'icon' => '',
- 'params' => [],
- ],
- [
- 'title' => 'o2o商品分类',
- 'route' => '/customDesigns/AntTechnology/menu/index',
- 'icon' => '',
- 'params' => [],
- ],
- ],
- // ----------------------- 事件处理 ----------------------- //
- 'events' => [
- [
- 'event_name' => EventNameEnum::ORDER_PAY,
- 'listeners' => [
- 'addons\Store\common\listeners\order\CommonOrderPaidListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::REAL_AUTH,
- 'listeners' => [
- 'addons\Store\common\listeners\auth\RealAuthListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::ORDER_DEL,
- 'listeners' => [
- 'addons\Store\common\listeners\order\OrderDelListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::GOODS_EDIT,
- 'listeners' => [
- \addons\Store\common\listeners\goods\GoodsEditListener::class,
- ]
- ],
- ],
- 'invoker' => [
- ['invoker_id' => \common\enums\GlobalFuncEnum::ORDER_DETAIL, 'class' => 'addons\Store\common\models\StoreOrder', 'method' => 'orderDetail'],
- ['invoker_id' => \common\enums\GlobalFuncEnum::ORDER_LIST, 'class' => 'addons\Store\common\global_func\Order\OrderList', 'method' => 'getApiOrderList'],
- ['invoker_id' => \common\enums\GlobalFuncEnum::CAPITAL_LOG_LIST, 'class' => 'addons\Store\common\models\StoreOrderDetail', 'method' => 'getCapitalLogList'],
- ['invoker_id' => \common\enums\GlobalFuncEnum::ORDER_REFUND_SUBMIT, 'class' => 'addons\Store\common\models\StoreOrderDetail', 'method' => 'orderRefundSubmit'],
- ['invoker_id' => \common\enums\GlobalFuncEnum::INVOKE_CLERK, 'class' => 'addons\Store\common\global_func\Clerk', 'method' => 'clerk'],
- ['invoker_id' => \common\enums\GlobalFuncEnum::INVOKE_CLERK_DETAIL, 'class' => 'addons\Store\common\global_func\Clerk', 'method' => 'clerkDetail'],
- ],
- ];
|