this.$prompt(' ', '请输入标题:', {inputValue: `${file.title}` }).then(({ value, action }) => {
if(!value){
return false;
}
this.$message.success("操作成功")
this.fileList4[i].title = value
})