如何在离子中隐藏标签?

时间:2015-12-05 08:59:57

标签: angularjs ionic

我知道这是关于ng路由器,但我不熟悉ng,我解决了第二个路由器,但在第三个路由器或深层它不起作用 这是代码:

HTML

<?php

// uncomment the following to define a path alias
// Yii::setPathOfAlias('local','path/to/local-folder');

// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.

return array(
     'theme' => 'bootstrap',
    'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
    'name'=>'emergency response system',

    // preloading 'log' component
    'preload'=>array('log'),
'aliases' => array(
        'bootstrap' => 'ext.bootstrap'),
    // autoloading model and component classes
    'import'=>array(
        'application.models.*',
        'application.components.*',
         'bootstrap.behaviors.*',
                'bootstrap.helpers.*',
                'bootstrap.widgets.*',
                'application.modules.user.models.*',
                'application.modules.user.components.*',
                'application.modules.rights.*',
                'application.modules.rights.components.*',
                'application.extensions.EAjaxUpload.*',//for multiuploadfiles
            'application.extensions.kml.*'
            ),

    'modules'=>array(
        // uncomment the following to enable the Gii tool

        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'ers',
                     'generatorPaths' => array(
                'bootstrap.gii', ),
            // If removed, Gii defaults to localhost only. Edit carefully to taste.
            'ipFilters'=>array('127.0.0.1','::1'),
        ),
            'user' => array(
            'tableUsers' => 'user',
            'tableProfiles' => 'profiles',
            'tableProfileFields' => 'profiles_fields',
//                # encrypting method (php hash function)
//                'hash' => 'md5',
// 
//                # send activation email
//                'sendActivationMail' => true,
// 
//                # allow access for non-activated users
//                'loginNotActiv' => false,
// 
//                # activate user on registration (only sendActivationMail = false)
//                'activeAfterRegister' => false,
// 
//                # automatically login from registration
//                'autoLogin' => true,
// 
//                # registration path
//               'registrationUrl' => array('/user/registration'),
//
//                # recovery password path
//                'recoveryUrl' => array('/user/recovery'),
// 
//                # login form path
//                'loginUrl' => array('/user/login'),
// 
//                # page after login
//                'returnUrl' => array('/user/profile'),
// 
//               # page after logout
//               'returnLogoutUrl' => array('/user/login'),


    ),
             'rights'=>array(
             'install'=>true,
//                 'superuserName'=>'Admin', // Name of the role with super user privileges. 
//               'authenticatedName'=>'Authenticated',  // Name of the authenticated user role. 
//               'userIdColumn'=>'id', // Name of the user id column in the database. 
//               'userNameColumn'=>'username',  // Name of the user name column in the database. 
//               'enableBizRule'=>true,  // Whether to enable authorization item business rules. 
//               'enableBizRuleData'=>true,   // Whether to enable data for business rules. 
//               'displayDescription'=>true,  // Whether to use item description instead of name. 
//               'flashSuccessKey'=>'RightsSuccess', // Key to use for setting success flash messages. 
//               'flashErrorKey'=>'RightsError', // Key to use for setting error flash messages. 
//               'baseUrl'=>'/rights', // Base URL for Rights. Change if module is nested. 
//               'layout'=>'rights.views.layouts.main',  // Layout to use for displaying Rights. 
//               'appLayout'=>'application.views.layouts.main', // Application layout. 
//               'cssFile'=>'rights.css', // Style sheet file to use for Rights. 
//               'install'=>false,  // Whether to enable installer. 
//               'debug'=>false, 
        ),
            ),

    // application components
    'components'=>array(

        'user'=>array(
                    'class'=>'RWebUser',
            // enable cookie-based authentication
            'allowAutoLogin'=>true,
                    'loginUrl'=>array('/user/login'),
        ),
            'authManager'=>array(
                'class'=>'RDbAuthManager',
                'connectionID'=>'db',
                'defaultRoles'=>array('Authenticated', 'Guest'),

//                'itemTable'=>'authitem',
//                'itemChildTable'=>'authitemchild',
//                'assignmentTable'=>'authassignment',
//                'rightsTable'=>'rights',
        ),


        'bootstrap' => array(
            'class' => 'bootstrap.components.BsApi',),

        // uncomment the following to enable URLs in path-format

        'urlManager'=>array(
            'urlFormat'=>'path',
                     'showScriptName'=>false,
            'rules'=>array(
        //'<controller:\w+>'=>'<controller>/list',
                '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
                '<controller:\w+>/<id:\d+>/<title>'=>'<controller>/view',
                '<controller:\w+>/<id:\d+>'=>'<controller>/view',
            ),
        ),


        // database settings are configured in database.php
        //'db'=>require(dirname(__FILE__).'/database.php'),

        'db'=>array(
            'connectionString' => 'mysql:host=localhost;dbname=response_system',
            'emulatePrepare' => true,
            'username' => 'root',
            'password' => '',
            'charset' => 'utf8',
        ),

        'errorHandler'=>array(
            // use 'site/error' action to display errors
            'errorAction'=>'site/error',
        ),

        'log'=>array(
            'class'=>'CLogRouter',
            'routes'=>array(
                array(
                    'class'=>'CFileLogRoute',
                    'levels'=>'error, warning',
                ),
                // uncomment the following to show log messages on web pages

                array(
                    'class'=>'CWebLogRoute',
                ),

            ),
        ),

    ),

    // application-level parameters that can be accessed
    // using Yii::app()->params['paramName']
    'params'=>array(
        // this is used in contact page
        'adminEmail'=>'webmaster@example.com',
    ),

);

JS

<ion-tabs class="tabs-icon-top tabs-background-dark tabs-color-light"> 
</ion-tabs>

0 个答案:

没有答案