iview-admin icon indicating copy to clipboard operation
iview-admin copied to clipboard

Vue 2.0 admin management system template based on iView

Results 110 iview-admin issues
Sort by recently updated
recently updated
newest added

研究了几天,把1.3.1版本兼容IE11-IE9(IE9还有问题)的方法都记录下来了,IE11-IE10应该都没问题,IE9不知道下一步怎么解决了,大家有需要的一起想想办法吧 //1、webpack-dev-server降版本 npm uninsatll webpack-dev-server npm install [email protected] -save-dev //2、安装babel-polyfill npm install babel-polyfill --save 修改webpack.base.config.js entry: { main: ["babel-polyfill","./src/main"],//babel-polyfill可以模拟ES6使用的环境,可以使用ES6的所有新方法 //3、 修改main.js,注释掉国际化 //import '@/locale'; //import VueI18n from 'vue-i18n'; //Vue.use(VueI18n); //4、修改main.js,在空白处加(兼容IE9 transfer-dom.js中...

helpful

动态路由和带参路由中现在是点击打开到同一页签,怎么设置每次点击都打开一个新页签?http://localhost:8080/#/shopping?shopping_id=100001和 http://localhost:8080/#/shopping?shopping_id=100002 出现两个“购物详情”标签页

feature

bug 解释 https://github.com/vuejs/vue-router/issues/2881#issuecomment-520554378

{ path: '/page1', name: 'page1', component: Main, meta: { access: ['super_admin'] /* * 该页面只有权限值为super_admin的用户才能访问 * 如果这级路由有子路由,则子路由也只有super_admin才能访问 * 如果不设置此字段,则所有用户均可访问 */ } } 事实上是:我直接输入子路由的url依然可以访问而不是401页面,代码里面也没有相关控制

Element is not detectable by this strategy ![1574908955](https://user-images.githubusercontent.com/22856474/69772784-d488f480-11cb-11ea-91d8-3d058281f0c1.jpg)

使用的nvm安装的node10版本 [root@idc02 cmdb-fe]# npm install > [email protected] install /data/server/cmdb-fe/node_modules/nodent-runtime > node build.js sh: node: 未找到命令 npm WARN [email protected] requires a peer of ajv@^5.0.0 but none is installed. You must install...

页面无法访问localhost:8080,http 400 能迅速给解决一下吗?

如题。 如果Modal设置了遮罩,则Message显示在遮罩之上、Modal前台视图之下; 如果Modal设置了fullScreen,则这个Message连看都看不见了 目前没发现是我项目代码的问题

使用split组件的时候,就会报一下图片的错~~offsetWidth错误,几乎所有用大split组件的页面都会有报错! ![image](https://user-images.githubusercontent.com/10265211/68836457-5faaba80-06f5-11ea-9e2f-6c44b8937581.png) ![image](https://user-images.githubusercontent.com/10265211/68836600-af898180-06f5-11ea-89eb-30980b4f2ff6.png)

菜单权限判断和进入路由权限判断不一致,导致meta.access=[]时,菜单判断有权访问,进入路由时为无权访问