fix: 国际化
This commit is contained in:
parent
67503e6d37
commit
d5562998e8
|
@ -297,7 +297,7 @@
|
||||||
responseType: 'blob'
|
responseType: 'blob'
|
||||||
};
|
};
|
||||||
this.result = this.$request(config).then(response => {
|
this.result = this.$request(config).then(response => {
|
||||||
const filename = '测试用例.xlsx'
|
const filename = this.$t('test_track.case.test_case') + ".xlsx";
|
||||||
const blob = new Blob([response.data]);
|
const blob = new Blob([response.data]);
|
||||||
if ("download" in document.createElement("a")) {
|
if ("download" in document.createElement("a")) {
|
||||||
let aTag = document.createElement('a');
|
let aTag = document.createElement('a');
|
||||||
|
|
Loading…
Reference in New Issue