|
@@ -130,9 +130,10 @@ export default {
|
|
|
let errorStr = ''
|
|
|
if (res.data.errors.length) {
|
|
|
res.data.errors.map(item => {
|
|
|
- errorStr += item
|
|
|
+ errorStr += item + ';'
|
|
|
})
|
|
|
- this.$message.warning({ message: errorStr, duration: 3500 })
|
|
|
+ const msg = errorStr.substring(0, errorStr.length - 1)
|
|
|
+ this.$message.warning({ message: msg, duration: 3500 })
|
|
|
}
|
|
|
} else {
|
|
|
this.$message.success('评估成功')
|