Commit f5dee0fd001283dd886ce815483538d231845538
1 parent
b42f8dc9
核查处置处理结果增加上传附件字段disposalFiles
Showing
1 changed file
with
6 additions
and
0 deletions
src/views/DisposalSuggestions/HandleForm.vue
| ... | ... | @@ -95,6 +95,11 @@ |
| 95 | 95 | </el-input> |
| 96 | 96 | </el-form-item> |
| 97 | 97 | </el-col> |
| 98 | + <el-col :span="24"> | |
| 99 | + <el-form-item label="上传附件" prop="disposalFiles"> | |
| 100 | + <NCC-UploadFz v-model="suggestionForm.disposalFiles" :fileSize="5" sizeUnit="MB" :limit="9" buttonText="点击上传" /> | |
| 101 | + </el-form-item> | |
| 102 | + </el-col> | |
| 98 | 103 | </el-form> |
| 99 | 104 | </el-row> |
| 100 | 105 | </el-col> |
| ... | ... | @@ -153,6 +158,7 @@ |
| 153 | 158 | deadline: "", |
| 154 | 159 | area: '', |
| 155 | 160 | disposalSuggestions: '', // 处置建议 |
| 161 | + disposalFiles: [], | |
| 156 | 162 | }, |
| 157 | 163 | rules: { |
| 158 | 164 | disposalSuggestions: [ | ... | ... |