修改上传文件目录异常问题

This commit is contained in:
RenCheng 2025-03-04 16:33:26 +08:00
parent 8feda165b2
commit 5c6c0ecc10
2 changed files with 12 additions and 3 deletions

View File

@ -214,7 +214,7 @@ export default {
dataSource: [],
loading: false,
selectedRowKeys: [],
selectId:"0",
selectId:"",
modalTitle:"",
modelType:"",
searchFile:{
@ -235,7 +235,7 @@ export default {
},
methods: {
clickfile(){
if(this.selectId == "0"){
if(this.selectId.length <= 0){
this.$message.warning("必须选择文件上传目录");
return;
}
@ -288,7 +288,7 @@ export default {
this.getFileList();
},
getFileList(){
if(this.selectId == "0"){
if(this.selectId.length <= 0){
this.$message.warning("必须选择查询目录");
return;
}
@ -375,6 +375,7 @@ export default {
},
changeSelect(selectedKeys,e){
this.selectId = e.node.dataRef.id
this.searchFile.dirId = this.selectId
this.searchgetFileList();
}
}

View File

@ -206,6 +206,14 @@ export default {
*/
customRequestUpload ({ file }) {
//
if(this.dirId == "" || this.dirId ==null && this.dirId == undefined){
this.$message.error('文件目录选择异常请刷新页面')
return;
}
if(this.taskId.length <= 0){
this.$message.error('请选择任务')
return;
}
const currentRow = this.tableDate.find((row) => row.uid === file.uid)
if (currentRow) {
// 0