fix : 修复项目实施附件查询功能及上传附件页面初始

This commit is contained in:
2024-06-01 13:34:12 +08:00
parent f776f994ab
commit 7501c37379
14 changed files with 404 additions and 101 deletions

View File

@@ -1,7 +1,7 @@
<template>
<el-form :model="attachment" inline class="query-form">
<el-form :model="attachment" inline style="margin-top: 15px">
<el-form-item label="标签" prop="tag">
<el-select v-model="attachment.tag" placeholder="请选择标签" clearable filterable style="width: 200px">
<el-select v-model="attachment.tag" placeholder="请选择标签" clearable filterable style="width: 300px">
<el-option
v-for="item in tagsOption"
:key="item.value"
@@ -119,7 +119,6 @@ const handleSearch = () => {
})
showTable.value = false
if (res.code === 1000) {
// tagsOption.value = res.data
otherFileList.value = res.data
nextTick(() => {
showTable.value = true
@@ -145,7 +144,7 @@ const handleDownload = (row) => {
})
}
getTagsOption()
// handleSearch()
handleSearch()
</script>
<style scoped>