diff --git a/src/views/business/insect-pest-situation/components/ips-modal.vue b/src/views/business/insect-pest-situation/components/ips-modal.vue
index ea06c84..4c7d3b5 100644
--- a/src/views/business/insect-pest-situation/components/ips-modal.vue
+++ b/src/views/business/insect-pest-situation/components/ips-modal.vue
@@ -212,7 +212,7 @@
}
function handleImageUrlChange(fileList) {
- formState.imageUrl = fileList[0]?.fileUrl || undefined;
+ formState.imageUrl = fileList[0]?.fileUrl || '';
}
// ----------------------- form 表单 ajax 操作 ---------------------
diff --git a/src/views/business/monitor/ai-alarm-list.vue b/src/views/business/monitor/ai-alarm-list.vue
index dfb05ff..8411ca0 100644
--- a/src/views/business/monitor/ai-alarm-list.vue
+++ b/src/views/business/monitor/ai-alarm-list.vue
@@ -73,7 +73,7 @@
{{ index + 1 }}
-
+
diff --git a/src/views/business/monitor/components/monitor-modal.vue b/src/views/business/monitor/components/monitor-modal.vue
index f6a3776..9bcd644 100644
--- a/src/views/business/monitor/components/monitor-modal.vue
+++ b/src/views/business/monitor/components/monitor-modal.vue
@@ -259,7 +259,7 @@
}
function handleCoverUrlChange(fileList) {
- formState.coverUrl = fileList[0]?.fileUrl || undefined;
+ formState.coverUrl = fileList[0]?.fileUrl || '';
}
// ----------------------- form 表单 ajax 操作 ---------------------
diff --git a/src/views/business/oa/notice/notice-employee-list.vue b/src/views/business/oa/notice/notice-employee-list.vue
index 9a88ba0..ac61f3b 100644
--- a/src/views/business/oa/notice/notice-employee-list.vue
+++ b/src/views/business/oa/notice/notice-employee-list.vue
@@ -35,10 +35,9 @@
-
-
+
diff --git a/src/views/business/weather-station/components/ws-config.vue b/src/views/business/weather-station/components/ws-config.vue
index e179543..9560e11 100644
--- a/src/views/business/weather-station/components/ws-config.vue
+++ b/src/views/business/weather-station/components/ws-config.vue
@@ -80,7 +80,7 @@
{{ record.state === 1 ? '在线' : '离线' }}
-
+
diff --git a/src/views/business/weather-station/components/ws-modal.vue b/src/views/business/weather-station/components/ws-modal.vue
index e9970cc..5a97fe0 100644
--- a/src/views/business/weather-station/components/ws-modal.vue
+++ b/src/views/business/weather-station/components/ws-modal.vue
@@ -231,7 +231,7 @@
}
function handleImageUrlChange(fileList) {
- formState.imageUrl = fileList[0]?.fileUrl || undefined;
+ formState.imageUrl = fileList[0]?.fileUrl || '';
}
// ----------------------- form 表单 ajax 操作 ---------------------
diff --git a/src/views/system/account/index.vue b/src/views/system/account/index.vue
index 7abb4d8..0630dbb 100644
--- a/src/views/system/account/index.vue
+++ b/src/views/system/account/index.vue
@@ -92,7 +92,11 @@
margin-left: 10px;
background: #ffffff;
padding: 20px;
+ box-sizing: border-box;
border-radius: 8px;
+ :deep(.smart-table-card) {
+ height: calc(100vh - 260px) !important;
+ }
}
}