提交修改

dev
dsh 12 months ago
parent 6d6a2cc3f3
commit 5e2ed571d7

@ -80,7 +80,7 @@
</el-row> </el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === false" @click="submitForm"></el-button> <el-button type="primary" v-if="isView === false" @click="submitForm"></el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -111,7 +111,7 @@
</el-row> </el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === false" @click="submitForm"></el-button> <el-button type="primary" v-if="isView === false" @click="submitForm"></el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -367,6 +367,24 @@ export default {
this.editOpen = true; this.editOpen = true;
this.isReadOnly = true this.isReadOnly = true
this.isView = true this.isView = true
this.fileData.forEach((item)=>{
item.childrenList = []
})
if (response.code === 200) {
response.data.fileRelationVOList.forEach((item) => {
let index = this.fileData.findIndex(i => i.fileCode === item.fileCode);
if (index !== -1) {
this.fileData[index].childrenList.push({
name: item.fileName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
}); });
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */
@ -449,6 +467,9 @@ export default {
}; };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
::v-deep .el-dialog__footer{
padding: 0;
}
.fullscreen-dialog { .fullscreen-dialog {
.el-dialog__wrapper { .el-dialog__wrapper {
position: fixed; position: fixed;

@ -1,7 +1,7 @@
<template> <template>
<el-table <el-table
:data="tableData" :data="tableData"
style="width: 100%;height: 577px;overflow: auto;" style="width: 100%;height: 681px;overflow: auto;"
@expand-change="handleExpand" @expand-change="handleExpand"
> >
<el-table-column type="expand"> <el-table-column type="expand">
@ -37,7 +37,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="文件名称" prop="name"></el-table-column> <el-table-column label="文件名称" prop="name"></el-table-column>
<el-table-column label="上传文件"> <el-table-column label="上传文件" v-if="isShowButton">
<template v-slot:default="scope" v-if="isShowButton"> <template v-slot:default="scope" v-if="isShowButton">
<el-upload <el-upload
class="upload-demo" class="upload-demo"

Loading…
Cancel
Save