diff --git a/ruoyi-ui/src/utils/dict.js b/ruoyi-ui/src/utils/dict.js
index 1a61a989a..e3dc92d5b 100644
--- a/ruoyi-ui/src/utils/dict.js
+++ b/ruoyi-ui/src/utils/dict.js
@@ -19,6 +19,8 @@ export const DICT_TYPE = {
SYS_CONFIG_TYPE: 'sys_config_type',
SYS_SMS_CHANNEL_CODE: 'sys_sms_channel_code',
SYS_SMS_TEMPLATE_TYPE: 'sys_sms_template_type',
+ SYS_SMS_SEND_STATUS: 'sys_sms_send_status',
+ SYS_SMS_RECEIVE_STATUS: 'sys_sms_receive_status',
INF_REDIS_TIMEOUT_TYPE: 'inf_redis_timeout_type',
INF_JOB_STATUS: 'inf_job_status',
diff --git a/ruoyi-ui/src/views/system/operatelog/index.vue b/ruoyi-ui/src/views/system/operatelog/index.vue
index 8833a749e..7131654bf 100644
--- a/ruoyi-ui/src/views/system/operatelog/index.vue
+++ b/ruoyi-ui/src/views/system/operatelog/index.vue
@@ -163,7 +163,6 @@ export default {
businessType: undefined,
status: undefined
},
-
};
},
created() {
diff --git a/ruoyi-ui/src/views/system/sms/smsLog.vue b/ruoyi-ui/src/views/system/sms/smsLog.vue
index 8b3c2db53..8ec2d9488 100644
--- a/ruoyi-ui/src/views/system/sms/smsLog.vue
+++ b/ruoyi-ui/src/views/system/sms/smsLog.vue
@@ -2,16 +2,20 @@
-
-
-
+
+
+
+
+
+
+
+
-
-
-
@@ -52,46 +56,51 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ parseTime(scope.row.sendTime) }}
-
-
-
-
-
-
-
-
-
-
-
- {{ parseTime(scope.row.receiveTime) }}
-
-
-
-
{{ parseTime(scope.row.createTime) }}
+
+
+ {{ scope.row.mobile }}
+
+ {{ getDictDataLabel(DICT_TYPE.USER_TYPE, scope.row.userType) + '(' + scope.row.userId + ')' }}
+
+
+
+
+
+
+ {{ getDictDataLabel(DICT_TYPE.SYS_SMS_SEND_STATUS, scope.row.sendStatus) }}
+
+
+
+
+ {{ getDictDataLabel(DICT_TYPE.SYS_SMS_RECEIVE_STATUS, scope.row.receiveStatus) }}
+
+
+
+
+ {{ parseTime(scope.row.receiveTime) }}
+
+
+
+
+ {{ formatChannelSignature(scope.row.channelId) }}
+ 【{{ getDictDataLabel(DICT_TYPE.SYS_SMS_CHANNEL_CODE, scope.row.channelCode) }}】
+
+
+
+
+
+ {{ getDictDataLabel(DICT_TYPE.SYS_SMS_TEMPLATE_TYPE, scope.row.templateType) }}
+
+
- 修改
+ 详细
@@ -99,13 +108,59 @@
-
+
+
+
+
+
+ {{ form.id }}
+
+
+ {{ form.traceId }}
+
+
+ {{ form.userId }} | {{ form.userNickname }} | {{ form.userIp }} | {{ form.userAgent}}
+
+
+
+ {{ form.module }} | {{ form.name }} | {{ getDictDataLabel(DICT_TYPE.SYS_OPERATE_TYPE, form.type) }}
+
{{ form.content }}
+
{{ form.exts }}
+
+
+
+ {{ form.requestMethod }} | {{ form.requestUrl }}
+
+
+ {{ form.javaMethod }}
+
+
+ {{ form.javaMethodArgs }}
+
+
+
+ {{ parseTime(form.startTime) }} | {{ form.duration }} ms
+
+
+
+
+ 正常 | {{ form.resultData}}
+ 失败 | {{ form.resultCode }} || {{ form.resultMsg}}
+
+
+
+
+
+