fix : 优化页面细节

This commit is contained in:
2024-06-29 23:17:47 +08:00
parent 1e4397b5ea
commit 2e9adb3248
6 changed files with 25 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
<template>
<el-form :label-position="labelAlign">
<el-form-item :label="title" v-if="fileListShow === 'READ' || fileListShow === 'EDIT'" :label-position="labelAlign">
<el-form-item label="其他文件" v-if="fileListShow === 'READ' || fileListShow === 'EDIT'" :label-position="labelAlign" label-width="95">
<file-upload @getFile="getOtherFile" v-if="fileListShow === 'EDIT'"/>
<fvTable style="width: 100%;max-height: 300px;" v-if="processViewer" :tableConfig="tableConfig"
:data="_value" :isSettingCol="false" :pagination="false">
@@ -39,7 +39,7 @@ const props = defineProps({
},
labelAlign: {
type: String,
default: 'left'
default: 'right'
}
})
const emit = defineEmits(['update:value'])