配送商登录直接显示订单列表

手机版

mobile/admin/index.php

require_once(ROOT_PATH . '/include/lib_order.php');

$hide_menu_role_id_boolean=true;
if(@in_array($_SESSION['role_id'],return_hide_menu_role_id($hide_menu_role_id_array))){
    $hide_menu_role_id_boolean=false;
}

//判断角色,用于隐藏或显示对于
 $smarty->assign('hide_menu_role_id_boolean', $hide_menu_role_id_boolean);
 $smarty->assign('shop_url', urlencode($ecs->url()));

  

mobile/admin/templates/index.htm

 {if $hide_menu_role_id_boolean==true}
    <frame src="index.php?act=main" id="main-frame" name="main_frame" frameborder="no" scrolling="yes">
    {else}
        <frame src="order.php?act=list" id="main-frame" name="main_frame" frameborder="no" scrolling="yes">
    {/if}

PC版

原文地址:https://www.cnblogs.com/xuyaoxiang/p/5368283.html