+
导入结果:${data.message}
+
总记录数:${data.total}
+
新增记录:${data.inserted}
+
更新记录:${data.updated}
+
删除记录:${data.deleted}
+
错误记录:${data.errorCount}
+
忽略记录:${data.ignoredCount}
+ ${data.errorCount > 0 ? `
错误信息:
${data.errors.map((error) => `- ${error}
`).join('')}
` : ''}
+ ${data.ignoredCount > 0 ? `
忽略信息:
${data.ignored.map((ignore) => `- ${ignore}
`).join('')}
` : ''}
+
+ `
+
+ proxy.$alert(resultHtml, '导入结果', {
dangerouslyUseHTMLString: true
})
getList()
@@ -606,7 +622,7 @@ function handleExport() {
type: 'warning'
})
.then(async () => {
- await exportUser(queryParams.value)
+ await exportMmRecordOutbound(queryParams.value)
})
}