不做码农 973c3281b2 Squashed commit of the following:
commit 1daa137d98a3a814e3617606b14c737dbb611f4f
Author: 不做码农 <599854767@qq.com>
Date:   Sat Apr 9 14:51:29 2022 +0800

    IPRatelimit添加白名单接口

commit d05690654b889ae3ab8f4add1b76a5859e1ab89a
Author: 不做码农 <599854767@qq.com>
Date:   Fri Apr 8 20:20:11 2022 +0800

    添加页签openPage支持传递参数

commit 861710079a26294c64d70eeadb7630bf83e3bfc4
Author: 不做码农 <599854767@qq.com>
Date:   Fri Apr 8 12:44:28 2022 +0800

    update FileHelper.cs

commit a0cf47c099533fabaf5bd389cf498f08eead2ef4
Author: 不做码农 <599854767@qq.com>
Date:   Thu Apr 7 13:30:47 2022 +0800

    优化代码生成模板

commit 5b376614d02c2d27b6e90252c2a3169adfb0e612
Author: 不做码农 <599854767@qq.com>
Date:   Thu Apr 7 13:30:13 2022 +0800

    IP限制增加百名单接口

commit 939ec56d1db4cad52f7b64555e16d52b5b061360
Author: 不做码农 <599854767@qq.com>
Date:   Mon Apr 4 21:48:27 2022 +0800

    fix 基础sql脚本bug

commit 19c738b974e14b62929dc69c2c6ac1e8540aad98
Author: 不做码农 <599854767@qq.com>
Date:   Mon Apr 4 18:53:02 2022 +0800

    新增加IPRateLimit限制

commit 6b0e6b11b3fdbb5ab53606cf4d0910ae30886365
Author: 不做码农 <599854767@qq.com>
Date:   Mon Apr 4 12:09:39 2022 +0800

    格式化代码

commit 1024471c64beef683b257b38d4904ab7cd509c82
Author: 不做码农 <599854767@qq.com>
Date:   Mon Apr 4 12:02:32 2022 +0800

    自定义异常新增获取LogAttribute属性
2022-04-09 15:06:45 +08:00
..
2021-08-23 16:57:25 +08:00
2021-09-10 13:59:55 +08:00
2022-04-09 15:06:45 +08:00
2021-08-23 16:57:25 +08:00
2022-02-27 21:11:46 +08:00
2022-02-27 21:11:46 +08:00
2022-02-27 21:11:46 +08:00
2021-08-23 16:57:25 +08:00
2021-08-23 16:57:25 +08:00
2021-08-23 16:57:25 +08:00
2021-12-05 08:37:25 +08:00
2021-08-23 16:57:25 +08:00
2022-02-28 18:37:57 +08:00
2022-02-27 21:11:46 +08:00

开发

# 克隆项目
git clone https://gitee.com/izory/ZrAdminNetCore

# 进入项目目录
cd ZR.Vue

# 安装依赖
npm install

# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org

# 启动服务
npm run dev

浏览器访问 http://localhost:8887

发布

# 构建测试环境
npm run build:stage

# 构建生产环境
npm run build:prod

插件说明

Autoprefixer (已删除)

浏览器自动补全前缀 例如:

a{
     transition :transform 1s
}

将会补全如下
a{
     -webkit-transition :-webkit-transform 1s;
     transition :-ms-transform 1s;
     transition :transform 1s
}