(function () { 'use strict'; /** * @author 广州银云信息科技有限公司 * @description 温馨提示组件 */ angular.module('eolinker') .component('tipCommonComponent', { templateUrl: 'app/component/common/tip/index.html', controller: indexController, bindings: { version: '@', status: '@', user: '@', interaction: '<' } }) indexController.$inject = ['$scope', '$window', '$state']; function indexController($scope, $window, $state) { var vm = this; vm.data = { balance: { general: { title: '注意事项', titleStyle:{ float:'none' }, class:'warning-ul common-ul', content: '
1. 如需让自定义的插件生效,必须先重启/重载网关。
2. 检测插件仅针对自定义插件,用于检测该自定义插件是否可用' }, operate:{ title:'温馨提示', class:'warning-ul common-ul', content:'新增自定义插件后,请立即对该插件进行检测,确保插件可用后再重载或重启网关节点,以使插件生效' }, official:{ title:'温馨提示', class:'warning-ul common-ul', content:'若要使网关类型插件的最新配置生效,保存后须 重载/重启 网关节点' } }, gepditAuth: { general: { title: '温馨提示', class:'warning-ul common-ul', content: '尚未对访问策略设置鉴权方式,请在 策略插件 处添加相应的鉴权插件' } }, authorityConfig: { general: { title: '权限提示', class:'warning-ul common-ul', content: '系统管理员以及管理员用户拥有最高读写操作权限,因此不会出现在权限管理的列表中,列表仅会列出普通成员' } } } vm.service = { $window: $window } } })();