# next-devops-admin
**Repository Path**: evops/next-devops-admin
## Basic Information
- **Project Name**: next-devops-admin
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-06-28
- **Last Updated**: 2024-06-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## 运营后台管理 UI
---
### 简介
基于 iview Admin 前端框架传送门
#### 服务端代码仓库
##### 开源不易,请随手给个 Star! 感谢支持!
码云 Github
#### 按钮权限控制
全局函数
hasAuthority('功能编码,功能编码 2') 多个用,号隔开
```html
```
#### 初始化安装
```bush
// install dependencies
npm install
```
#### 修改配置(/src/config/index.js)
```
/**
* 发布目录
*/
publicPath: {
dev: '/', // 本地环境发布目录
pro: '/' // 生产环境发布目录
},
/**
* api请求基础路径
*/
apiUrl: {
dev: 'http://localhost:8888', // 本地环境接口请求地址
pro: 'http://api.openc.top' // 生产环境接口请求地址
},
```
#### 本地运行
```bush
npm run dev
```
#### 打包部署
```bush
npm run build
```