修改 认证清单-添加重复提示语

This commit is contained in:
范强强
2023-03-31 09:15:48 +08:00
parent 7112dc7057
commit 9736a0dfda
@@ -685,7 +685,22 @@
Action(url, query).then((res) => {
if (res.success) {
this.confirmLoading = false
this.$message.success(this.$t('OperationSuccessful'))
if (res.result && res.result.length > 0) {
let detailedWarningList = []
res.result.forEach(val => {
detailedWarningList.push(
< div > { val } < /div>)
})
this.$warning({
content: (
< div >
{ detailedWarningList }
< /div>
)
})
} else {
this.$message.success(this.$t('OperationSuccessful'))
}
this.visible = false
this.$emit('addModelForm')
} else {