cxgj/models/PickLinkForm.php
2023-11-27 09:45:13 +08:00

71 lines
1.6 KiB
PHP

<?php
/**
* @author Any
* @description KISS
* @date 2018-12-18
* @version 1.0.0
*/
namespace app\models;
class PickLinkForm
{
/**
* 小程序菜单跳转链接
* @return mixed|string
*/
public function getPickLink()
{
$link = $this->link();
return $link;
}
/**
* 导航链接
* @return array
*/
public function link()
{
return [
[
'name' => "首页",
'link' => "/pages/index/index",
'open_type' => "navigate",
'params' => []
],
[
'name' => "充值页面",
'link' => "/subpages/wallet/index",
'open_type' => "navigate",
'params' => []
],
[
'name' => "店长预约",
'link' => "/pages/make/index",
'open_type' => "navigate",
'params' => []
],
[
'name' => "包厢预定",
'link' => "/subpages/make/details",
'open_type' => "navigate",
'params' => []
],
[
'name' => "布告详情",
'link' => "/subpages/index/outletdetails",
'open_type' => "navigate",
'params' => []
],
[
'name' => "门店详情",
'link' => "/pages/make/index",
'open_type' => "navigate",
'params' => []
],
];
}
}