From 19a5832bed910a1a6744fed7090bb062988fdd2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com> Date: Thu, 20 Mar 2025 14:09:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=96=E5=91=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/patientInfoImport/index.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/manage/patientInfoImport/index.vue b/src/views/manage/patientInfoImport/index.vue index 07d6767..f3e444a 100644 --- a/src/views/manage/patientInfoImport/index.vue +++ b/src/views/manage/patientInfoImport/index.vue @@ -255,9 +255,13 @@ export default { getAgencytype(dictType).then((res) => { this.optionslisttime = res.data; outboundConfirmation().then(res => { - this.form = res.data; - this.$set(this.form, 'sn', row.sn + '') - this.open = true; + if (res.data) { + this.form = res.data; + this.$set(this.form, 'sn', row.sn + '') + this.open = true; + } else { + this.$modal.msgError("暂无最新外呼数据,请先进行手动外呼"); + } }) }); },