fix resultDirFile input max len

This commit is contained in:
bwcx_jzy 2022-05-30 10:51:05 +08:00
parent 526e412c90
commit cda37ec8bb
No known key found for this signature in database
GPG Key ID: 5E48E9372088B9E5
3 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,15 @@
# 🚀 版本日志
# 2.8.23
### 🐣 新增功能
### 🐞 解决BUG、优化功能
1. 修复构建产物目录输入框限制50 改为 200感谢@H
# 2.8.22 (2022-05-27)
### 🐣 新增功能

View File

@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS PUBLIC.BUILD_INFO
`group` VARCHAR(50) comment '分组名称',
branchName VARCHAR(50) comment '分支',
script CLOB comment '构建命令',
resultDirFile VARCHAR(50) comment '构建产物目录',
resultDirFile VARCHAR(200) comment '构建产物目录',
releaseMethod int comment '发布方法{0: 不发布, 1: 节点分发, 2: 分发项目, 3: SSH}',
modifyUser VARCHAR(50) comment '修改人',
`status` int comment '状态',

View File

@ -263,7 +263,7 @@
<a-icon type="question-circle" theme="filled" />
</a-tooltip>
</template>
<a-input :maxLength="50" v-model="temp.resultDirFile" placeholder="构建产物目录,相对仓库的路径,如 java 项目的 target/xxx.jar vue 项目的 dist" />
<a-input :maxLength="200" v-model="temp.resultDirFile" placeholder="构建产物目录,相对仓库的路径,如 java 项目的 target/xxx.jar vue 项目的 dist" />
</a-form-model-item>
</a-collapse-panel>
<a-collapse-panel key="1">