|
|
@ -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;
|
|
|
|