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("暂无最新外呼数据,请先进行手动外呼"); + } }) }); },