You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?php
namespace App\Service\v3\Implementations;
use App\Service\v3\Interfaces\UserCenterBlockServiceInterface;
class UserCenterBlockService implements UserCenterBlockServiceInterface{
public function do() { // TODO: Implement do() method.
}
public function check() { // TODO: Implement check() method.
}
public function undo() { // TODO: Implement undo() method.
}
public function all() { return [ [ 'type' => 'user', 'title' => '我的', 'items' => [ ['name' => '收货地址', 'icon' => '', 'type' => 'page', 'path' => ''], ['name' => '商家入口', 'icon' => '', 'type' => 'page', 'path' => ''], ['name' => '在线客服', 'icon' => '', 'type' => 'page', 'path' => ''], ['name' => '当面付订单查询', 'icon' => '', 'type' => 'page', 'path' => ''], ] ] ]; }
}
|