fix : 修复金额千位格式化,新增征集时添加"新增专项资金"按钮

This commit is contained in:
2024-09-07 15:09:37 +08:00
parent cff3198dcd
commit fc41bd8e6d
22 changed files with 191 additions and 34 deletions

View File

@@ -161,6 +161,10 @@ const handleUpload = () => {
}
handleSearch()
getTagsOption()
onActivated(()=>{
handleSearch()
getTagsOption()
})
</script>
<style lang="scss">
.execute-apply-table {

View File

@@ -70,7 +70,7 @@
<!-- </el-row>-->
<!--/* <baseTitle title="附件文件" style="margin-bottom: 0"></baseTitle>*/-->
<el-row gutter="20" style="margin-bottom: -18px;">
<el-col :span="24">
<el-col :span="24" class="file-table-style">
<file-component tag="需求上报"
v-model:value="localFormData.fileList" :processViewer="processViewer"
:file-list-show="fileListShow"/>
@@ -322,19 +322,22 @@ getFundOptions()
overflow-y: auto;
padding-bottom: 0 !important;
}
:deep(.el-table__header) {
.is-leaf:first-child {
.cell {
margin-left: -25px !important;
.file-table-style{
:deep(.el-table__header) {
.is-leaf:first-child {
.cell {
margin-left: -25px !important;
}
}
}
:deep(.el-table__body) {
.el-table__cell:first-child {
.cell {
margin-left: -13px !important;
}
}
}
}
:deep(.el-table__body) {
.el-table__cell:first-child {
.cell {
margin-left: -13px !important;
}
}
}
</style>