diff --git a/.env.dev b/.env.dev
index 0daad891..4e18fee1 100644
--- a/.env.dev
+++ b/.env.dev
@@ -1,5 +1,5 @@
# backend service base url, test environment
-VITE_SERVICE_BASE_URL=http://127.0.0.1:8080
+VITE_SERVICE_BASE_URL=https://ruoyi.xlsea.cn/prod-api
VITE_APP_BASE_API=/dev-api
diff --git a/src/views/monitor/login-infor/index.vue b/src/views/monitor/login-infor/index.vue
index b2c30e5a..2daf63cb 100644
--- a/src/views/monitor/login-infor/index.vue
+++ b/src/views/monitor/login-infor/index.vue
@@ -49,7 +49,8 @@ const {
// the value can not be undefined, otherwise the property in Form will not be reactive
userName: null,
ipaddr: null,
- status: null
+ status: null,
+ params: {}
},
columns: () => [
{
diff --git a/src/views/monitor/login-infor/modules/login-infor-search.vue b/src/views/monitor/login-infor/modules/login-infor-search.vue
index ff131804..0192899b 100644
--- a/src/views/monitor/login-infor/modules/login-infor-search.vue
+++ b/src/views/monitor/login-infor/modules/login-infor-search.vue
@@ -1,4 +1,5 @@
@@ -48,6 +56,14 @@ async function search() {
clearable
/>
+
+
+
diff --git a/src/views/monitor/oper-log/index.vue b/src/views/monitor/oper-log/index.vue
index 8e2b4c1d..a6abdef3 100644
--- a/src/views/monitor/oper-log/index.vue
+++ b/src/views/monitor/oper-log/index.vue
@@ -45,7 +45,7 @@ const {
operName: null,
operIp: null,
status: null,
- operTime: null
+ params: {}
},
columns: () => [
{
diff --git a/src/views/monitor/oper-log/modules/oper-log-search.vue b/src/views/monitor/oper-log/modules/oper-log-search.vue
index fbd3a0ab..69b4077a 100644
--- a/src/views/monitor/oper-log/modules/oper-log-search.vue
+++ b/src/views/monitor/oper-log/modules/oper-log-search.vue
@@ -1,4 +1,5 @@
@@ -51,7 +59,7 @@ async function search() {
-
+
-
+
+
+
+
diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue
index 58f331f9..0041de49 100644
--- a/src/views/system/config/index.vue
+++ b/src/views/system/config/index.vue
@@ -42,7 +42,7 @@ const {
configName: null,
configKey: null,
configType: null,
- createTime: null
+ params: {}
},
columns: () => [
{
diff --git a/src/views/system/config/modules/config-search.vue b/src/views/system/config/modules/config-search.vue
index 0b4df2c2..fa04b1a1 100644
--- a/src/views/system/config/modules/config-search.vue
+++ b/src/views/system/config/modules/config-search.vue
@@ -1,4 +1,5 @@
@@ -35,7 +43,7 @@ async function search() {
-
+
-
+
+
+
+
diff --git a/src/views/system/notice/modules/notice-search.vue b/src/views/system/notice/modules/notice-search.vue
index ef19d9e7..ec3bbb49 100644
--- a/src/views/system/notice/modules/notice-search.vue
+++ b/src/views/system/notice/modules/notice-search.vue
@@ -33,13 +33,13 @@ async function search() {
-
+
-
+
-
+
diff --git a/src/views/system/oss/index.vue b/src/views/system/oss/index.vue
index c9b255ae..923f6621 100644
--- a/src/views/system/oss/index.vue
+++ b/src/views/system/oss/index.vue
@@ -48,7 +48,8 @@ const {
fileName: null,
originalName: null,
fileSuffix: null,
- service: null
+ service: null,
+ params: {}
},
columns: () => [
{
diff --git a/src/views/system/oss/modules/oss-search.vue b/src/views/system/oss/modules/oss-search.vue
index de183253..a26a6036 100644
--- a/src/views/system/oss/modules/oss-search.vue
+++ b/src/views/system/oss/modules/oss-search.vue
@@ -16,12 +16,12 @@ const emit = defineEmits();
const { formRef, validate, restoreValidation } = useNaiveForm();
-const dateRangeCreateTime = ref<[string, string]>();
+const dateRangeCreateTime = ref<[string, string] | null>(null);
const model = defineModel('model', { required: true });
async function reset() {
- dateRangeCreateTime.value = undefined;
+ dateRangeCreateTime.value = null;
await restoreValidation();
emit('reset');
}
@@ -30,7 +30,7 @@ async function search() {
await validate();
if (dateRangeCreateTime.value?.length) {
model.value.params!.beginCreateTime = dateRangeCreateTime.value[0];
- model.value.params!.endCreateTime = dateRangeCreateTime.value[0];
+ model.value.params!.endCreateTime = dateRangeCreateTime.value[1];
}
emit('search');
}
diff --git a/src/views/system/role/modules/role-search.vue b/src/views/system/role/modules/role-search.vue
index 7a51345b..04283a87 100644
--- a/src/views/system/role/modules/role-search.vue
+++ b/src/views/system/role/modules/role-search.vue
@@ -25,7 +25,6 @@ const { options: sysNormalDisableOptions } = useDict('sys_normal_disable');
async function reset() {
dateRangeCreateTime.value = null;
- Object.assign(model.value.params!, {});
await restoreValidation();
emit('reset');
}
diff --git a/src/views/system/user/modules/user-search.vue b/src/views/system/user/modules/user-search.vue
index 64033f9e..1bf4ad3b 100644
--- a/src/views/system/user/modules/user-search.vue
+++ b/src/views/system/user/modules/user-search.vue
@@ -1,5 +1,6 @@