123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <ul>
- <li>
- <div class="title">会员中心</div>
- </li>
- {eyou:usermenu currentstyle='active'}
- <li class="{$field.currentstyle}">
- <a href="{$field.url}">{$field.title}</a>
- </li>
- {/eyou:usermenu}
- </ul>
-
- {if isset($usersConfig['shop_open']) && $usersConfig['shop_open'] == 1 && $php_servicemeal > 1}
- <ul>
- <li>
- <div class="title">商城中心</div>
- </li>
- <li {if $Think.const.MODULE_NAME == 'user' && $Think.const.CONTROLLER_NAME == 'Shop' && $Think.const.ACTION_NAME == 'shop_cart_list'} class="active" {/if}>
- <a href="{eyou:url link='user/Shop/shop_cart_list' /}">购物车</a>
- </li>
- <li {if $Think.const.MODULE_NAME == 'user' && $Think.const.CONTROLLER_NAME == 'Shop' && $Think.const.ACTION_NAME == 'shop_address_list'} class="active" {/if}>
- <a href="{eyou:url link='user/Shop/shop_address_list' /}">收货地址</a>
- </li>
- <li {if $Think.const.MODULE_NAME == 'user' && ($Think.const.CONTROLLER_NAME == 'Shop' && in_array($Think.const.ACTION_NAME, ['shop_centre', 'shop_order_details', 'after_service', 'after_service_details', 'after_service_apply']) || ($Think.const.CONTROLLER_NAME == 'ShopComment' && in_array($Think.const.ACTION_NAME, ['product'])))} class="active" {/if}>
- <a href="{eyou:url link='user/Shop/shop_centre' /}">我的订单</a>
- </li>
- {egt name='$php_servicemeal' value='2'}
- <li {if $Think.const.MODULE_NAME == 'user' && $Think.const.CONTROLLER_NAME == 'ShopComment' && in_array($Think.const.ACTION_NAME, ['index'])} class="active" {/if}>
- <a href="{eyou:url link='user/ShopComment/index'/}"> 我的评价</a>
- </li>
- {/egt}
- </ul>
- {/if}
-
- {if isset($usersConfig['users_open_release']) && $usersConfig['users_open_release'] == 1}
- <ul>
- <li>
- <div class="title">投稿中心</div>
- </li>
- <li {if $Think.const.MODULE_NAME == 'user' && $Think.const.CONTROLLER_NAME == 'UsersRelease' && $Think.const.ACTION_NAME == 'release_centre'} class="active" {/if}>
- <a href="{:url('user/UsersRelease/release_centre', ['list'=>1])}">投稿列表</a>
- </li>
- <li {if $Think.const.MODULE_NAME == 'user' && $Think.const.CONTROLLER_NAME == 'UsersRelease' && ($Think.const.ACTION_NAME == 'article_add' || $Think.const.ACTION_NAME == 'article_edit')} class="active" {/if}>
- <a href="{eyou:url link='user/UsersRelease/article_add'/}">我要投稿</a>
- </li>
- </ul>
- {/if}
-
- <!--footer-hook-->
|