[运维] -在研項目 过程文件限制数量修改成20个,增加文字提示

This commit is contained in:
fengchenchen
2022-04-01 17:03:43 +08:00
parent e4e0a5e155
commit 29d8e1c43e
@@ -39,15 +39,17 @@
</a-col>
</a-row>
<a-row>
<a-col :xl="12" :sm="24">
<a-form-item label="过程文件" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-col >
<!-- :xl="12" :sm="24"-->
<a-form-item label="过程文件" :labelCol="remarksLabelCol" :wrapperCol="remarksWrapperCol">
<j-upload file-type="all"
file-type-error-message="请上传过程文件"
:multiple="true"
:number="10"
:number="20"
:return-id="true"
v-decorator="['files', validatorRules.files]"
:trigger-change="true"></j-upload>
<div class="tip">最多只能添加20个文件如果文件过多请打包上传</div>
</a-form-item>
</a-col>
</a-row>
@@ -174,5 +176,8 @@ export default {
</script>
<style scoped>
.tip{
color: #f5222d;
}
</style>
</style>