|
@@ -1076,10 +1076,10 @@ import { myGraph } from './common/gragh';
|
|
|
const data = [new ClipboardItem({ [blob.type]: blob })];
|
|
|
await navigator.clipboard.write(data).then(
|
|
|
() => {
|
|
|
- this.$message.success('复制成功!')
|
|
|
+ this.$message.success(this.$t('MsgPrompt.copy_success_msg'))
|
|
|
},
|
|
|
() => {
|
|
|
- this.$message.warning('浏览器不支持')
|
|
|
+ this.$message.warning(this.$t('MsgPrompt.browser_not_support'))
|
|
|
}
|
|
|
).finally(()=>{
|
|
|
this.lockLoding && this.lockLoding.close();
|
|
@@ -1087,7 +1087,7 @@ import { myGraph } from './common/gragh';
|
|
|
});
|
|
|
}else {
|
|
|
this.lockLoding && this.lockLoding.close();
|
|
|
- this.$message.warning('当前协议暂不支持,仅支持https协议')
|
|
|
+ this.$message.warning(this.$t('MsgPrompt.http_not_support'))
|
|
|
}
|
|
|
}
|
|
|
},{
|