fix:添加上传成功的提示

This commit is contained in:
zhangyu
2023-10-26 10:48:28 +08:00
parent 6e04dc5903
commit aa43f25d93

View File

@@ -206,7 +206,7 @@ export default {
form.append('saId', this.obj.id)
const res = await this.$post('/license/uploadV2C', form, { 'Content-Type': 'multipart/form-data' })
if (res.code === 200) {
this.$message.success()
this.$message.success(this.$t('tip.uploadSuccess'))
} else {
this.$message.error(res.msg)
}