diff --git a/ruoyi-admin/src/main/resources/templates/system/police/add.html b/ruoyi-admin/src/main/resources/templates/system/police/add.html
index dbb117d..d563c2f 100644
--- a/ruoyi-admin/src/main/resources/templates/system/police/add.html
+++ b/ruoyi-admin/src/main/resources/templates/system/police/add.html
@@ -12,7 +12,7 @@
@@ -72,6 +72,18 @@
//刷新父页面
parent.location.reload();
}
+
+ fetch(ctx +'/system/radar/list') // 替换为你的后端接口地址
+ .then(response => response.json())
+ .then(data => {
+ const select = document.querySelector('select[name="station"]');
+ data.forEach(station => {
+ const option = document.createElement('option');
+ option.value = station.id;
+ option.textContent = station.name;
+ select.appendChild(option);
+ });
+ });