From ef3fbc5a04a0e9fb0ce0147a8c8c7f3a838225f6 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Wed, 22 Mar 2023 18:13:28 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E4=BF=AE=E5=A4=8D=E6=9F=A5=E7=9C=8B?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=EF=BC=8C=E8=A7=A3=E5=86=B3=E8=A1=A8=E5=8D=95ref=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E5=92=8C=E8=A1=A8=E5=8D=95=E6=95=B0=E6=8D=AE=E5=8F=98?= =?UTF-8?q?=E9=87=8F=E5=91=BD=E5=90=8D=E5=86=B2=E7=AA=81=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/sms/smsLog/index.vue | 53 +++++++++++++++------------ 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/src/views/system/sms/smsLog/index.vue b/src/views/system/sms/smsLog/index.vue index 2e690134..f3d17666 100644 --- a/src/views/system/sms/smsLog/index.vue +++ b/src/views/system/sms/smsLog/index.vue @@ -175,78 +175,83 @@ /> - + - {{ form.id }} + {{ formData.id }} - {{ formatChannelSignature(form.channelId) }} - + {{ formatChannelSignature(formData.channelId) }} + - {{ form.templateId }} | {{ form.templateCode }} - + {{ formData.templateId }} | {{ formData.templateCode }} + - {{ form.apiTemplateId }} + {{ formData.apiTemplateId }} {{ form.mobile }} - - ({{ form.userId }}) + >{{ formData.mobile }} + + ({{ + formData.userId + }}) - {{ form.templateContent }} + {{ formData.templateContent }} - {{ form.templateParams }} + {{ formData.templateParams }} - {{ parseTime(form.createTime) }} + {{ parseTime(formData.createTime) }} - + - {{ parseTime(form.sendTime) }} + {{ parseTime(formData.sendTime) }} {{ form.sendCode }} | {{ form.sendMsg }} + >{{ formData.sendCode }} | {{ formData.sendMsg }} {{ form.apiSendCode }} | {{ form.apiSendMsg }}{{ formData.apiSendCode }} | {{ formData.apiSendMsg }} - {{ form.apiSerialNo }} + {{ formData.apiSerialNo }} - {{ form.apiRequestId }} + {{ formData.apiRequestId }} - + - {{ parseTime(form.receiveTime) }} + {{ parseTime(formData.receiveTime) }} {{ form.apiReceiveCode }} | {{ form.apiReceiveMsg }} + >{{ formData.apiReceiveCode }} | {{ formData.apiReceiveMsg }} @@ -363,7 +368,7 @@ const getList = () => { } // ================== 详情 ==================== const open = ref(false) -const form = ref({ +const formData = ref({ id: null, channelId: null, channelCode: '', @@ -392,8 +397,8 @@ const form = ref({ }) /** 详细按钮操作 */ const handleView = (row: SmsLogApi.SmsLogVO) => { + formData.value = row open.value = true - form.value = row } getList()