style:转出模块信息提示的完善
Showing
2 changed files
with
10 additions
and
5 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-12 16:33:18 | 4 | * @LastEditTime: 2023-07-21 13:43:52 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class='dblistDialog'> | 7 | <div class='dblistDialog'> |
... | @@ -11,7 +11,6 @@ | ... | @@ -11,7 +11,6 @@ |
11 | height="200"> | 11 | height="200"> |
12 | <el-table-column | 12 | <el-table-column |
13 | prop="ywh" | 13 | prop="ywh" |
14 | width="110" | ||
15 | label="业务号"> | 14 | label="业务号"> |
16 | </el-table-column> | 15 | </el-table-column> |
17 | <el-table-column | 16 | <el-table-column | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 10:04:05 | 4 | * @LastEditTime: 2023-07-21 13:43:14 |
5 | */ | 5 | */ |
6 | import { getPrintTemplateByCode } from "@/api/print"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
7 | import { uploadUndo } from "@/api/clxx"; | 7 | import { uploadUndo } from "@/api/clxx"; |
... | @@ -308,8 +308,14 @@ export default { | ... | @@ -308,8 +308,14 @@ export default { |
308 | } else { | 308 | } else { |
309 | instance.confirmButtonLoading = false; | 309 | instance.confirmButtonLoading = false; |
310 | instance.confirmButtonText = "确定"; | 310 | instance.confirmButtonText = "确定"; |
311 | this.$message.error(res.message); | 311 | let msgArr = res.message.split(';'), |
312 | // ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true) | 312 | listMsg = [] |
313 | msgArr.forEach(item => { | ||
314 | let parts = item.split(':') | ||
315 | listMsg.push({ ywh: parts[0], msg: parts[1] }) | ||
316 | }) | ||
317 | this.$msgbox.close() | ||
318 | ywPopupDialog("转出错误明细", "workflow/components/dialog/dblist", { result: listMsg }, '33%', true) | ||
313 | } | 319 | } |
314 | }); | 320 | }); |
315 | } else { | 321 | } else { | ... | ... |
-
Please register or sign in to post a comment