|
|
|
@ -35,7 +35,7 @@ class UserCenterBlockService implements UserCenterBlockServiceInterface |
|
|
|
'title' => '常用功能', |
|
|
|
'items' => [ |
|
|
|
['name' => '收货地址', 'icon' => $img_host . 'user_icons/user_addr.png', 'type' => 'page', 'path' => '/pages/address/userAddress/userAddress','command'=>'user_addr'], |
|
|
|
['name' => '当面付订单查询', 'icon' => $img_host . 'user_icons/offline_orders.png', 'type' => 'page', 'path' => '/pages/faceOrderList/faceOrderList','command'=>'offline_orders'], |
|
|
|
['name' => '当面付订单查询', 'icon' => $img_host . 'user_icons/offline_orders.png', 'type' => 'page', 'path' => '/pages/facepay/facepay','command'=>'offline_orders'], |
|
|
|
['name' => '在线客服', 'icon' => $img_host . 'user_icons/online_kf.png', 'type' => 'page', 'path' => '','command'=>'online_kf'], |
|
|
|
['name' => '联系服务站', 'icon' => $img_host . 'user_icons/contact_fwz.png', 'type' => 'page', 'path' => '/pages/contactMarket/contactMarket','command'=>'contact_fwz'], |
|
|
|
['name' => '关于懒族', 'icon' => $img_host . 'user_icons/about_lz.png', 'type' => 'page', 'path' => '/pages/aboutUs/aboutUs','command'=>'about'], |
|
|
|
@ -43,25 +43,33 @@ class UserCenterBlockService implements UserCenterBlockServiceInterface |
|
|
|
] |
|
|
|
]; |
|
|
|
|
|
|
|
$blocks[] = [ |
|
|
|
'type' => 'store_user', |
|
|
|
'title' => '商户相关', |
|
|
|
'items' => [ |
|
|
|
['name' => '商家入口', 'icon' => $img_host . 'user_icons/shop_enter.png', 'type' => 'page', 'path' => '/pages/shopLogin/shopLogin','command'=>'store_login'] |
|
|
|
] |
|
|
|
]; |
|
|
|
|
|
|
|
foreach ($roles as $key => $item) { |
|
|
|
# code...
|
|
|
|
|
|
|
|
if($item['key'] == 'store'){ |
|
|
|
$blocks[] = [ |
|
|
|
'type' => 'store_user', |
|
|
|
'title' => '商户相关', |
|
|
|
'items' => [ |
|
|
|
['name' => '商家入口', 'icon' => $img_host . 'user_icons/shop_enter.png', 'type' => 'page', 'path' => '/pages/shopLogin/shopLogin','command'=>'store_login'] |
|
|
|
] |
|
|
|
]; |
|
|
|
} |
|
|
|
// if($item['key'] == 'store'){
|
|
|
|
// $blocks[] = [
|
|
|
|
// 'type' => 'store_user',
|
|
|
|
// 'title' => '商户相关',
|
|
|
|
// 'items' => [
|
|
|
|
// ['name' => '商家入口', 'icon' => $img_host . 'user_icons/shop_enter.png', 'type' => 'page', 'path' => '/pages/shopLogin/shopLogin','command'=>'store_login']
|
|
|
|
// ]
|
|
|
|
// ];
|
|
|
|
// }
|
|
|
|
|
|
|
|
if($item['key'] == 'sp'){ |
|
|
|
$blocks[] = [ |
|
|
|
'type' => 'sp_user', |
|
|
|
'title' => '服务专员', |
|
|
|
'items' => [ |
|
|
|
['name' => '评价', 'icon' => $img_host . 'user_icons/shop_enter.png', 'type' => 'page', 'path' => '/zh_cjdianc/pages/appraise/index','command'=>'store_login'] |
|
|
|
['name' => '评价', 'icon' => $img_host . 'user_icons/shop_enter.png', 'type' => 'page', 'path' => '/zh_cjdianc/pages/appraise/index?service_personnel_id='.$item['data']['id'],'command'=>'sp_login'] |
|
|
|
] |
|
|
|
]; |
|
|
|
} |
|
|
|
|