fa371e96 by renchao@pashanhoo.com

style:转出模块信息提示的完善

1 parent a7f2362e
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-12 16:33:18
* @LastEditTime: 2023-07-21 13:43:52
-->
<template>
<div class='dblistDialog'>
......@@ -11,7 +11,6 @@
height="200">
<el-table-column
prop="ywh"
width="110"
label="业务号">
</el-table-column>
<el-table-column
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-21 10:04:05
* @LastEditTime: 2023-07-21 13:43:14
*/
import { getPrintTemplateByCode } from "@/api/print";
import { uploadUndo } from "@/api/clxx";
......@@ -308,8 +308,14 @@ export default {
} else {
instance.confirmButtonLoading = false;
instance.confirmButtonText = "确定";
this.$message.error(res.message);
// ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true)
let msgArr = res.message.split(';'),
listMsg = []
msgArr.forEach(item => {
let parts = item.split(':')
listMsg.push({ ywh: parts[0], msg: parts[1] })
})
this.$msgbox.close()
ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: listMsg }, '33%', true)
}
});
} else {
......