fix(接口测试): 修复接口自动化删除csv文件时无法显示文件名的缺陷
This commit is contained in:
parent
0ca99e92f3
commit
7608097782
|
@ -72,7 +72,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleRemove(file) {
|
handleRemove(file) {
|
||||||
this.$alert('是否确认删除CSV文件:【 ' + file.file.name + " 】?", '', {
|
this.$alert('是否确认删除CSV文件:【 ' + file.file ? file.file.name : file.name + " 】?", '', {
|
||||||
confirmButtonText: this.$t('commons.confirm'),
|
confirmButtonText: this.$t('commons.confirm'),
|
||||||
callback: (action) => {
|
callback: (action) => {
|
||||||
if (action === 'confirm') {
|
if (action === 'confirm') {
|
||||||
|
|
Loading…
Reference in New Issue