Skip to content

Commit

Permalink
ajax请求失败报错国际化问题修复 (TencentBlueKing#6909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ywywZhou authored and normal-wls committed Jul 20, 2023
1 parent aaed732 commit 92d6965
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@
$this.loading = false
},
error: () => {
$this.empty_text = this.$t('请求表头数据失败,使用预置表头')
$this.empty_text = $this.$t('请求表头数据失败,使用预置表头')
$this.loading = false
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@
bus.$emit('tagRemoteLoaded', self.tagCode, remoteData)
},
error: function (resp) {
self.placeholder = this.$t('请求数据失败')
self.placeholder = self.$t('请求数据失败')
self.loading = false
}
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
})
},
error: function () {
self.empty_text = this.$t('请求数据失败')
self.empty_text = self.$t('请求数据失败')
self.loading = false
}
})
Expand Down

0 comments on commit 92d6965

Please sign in to comment.