地图更改
This commit is contained in:
parent
96246c2311
commit
ed9245323e
10
web/src/views/testdata/datamanagement/index.vue
vendored
10
web/src/views/testdata/datamanagement/index.vue
vendored
@ -1471,6 +1471,7 @@ function closeSSE() {
|
||||
}
|
||||
function getSSELink() {
|
||||
closeSSE()
|
||||
setTimeout(() => {
|
||||
eventSource.value = new EventSource(userStore.webApiBaseUrl + '/sse/connect/' + userStore.userId)
|
||||
eventSource.value.addEventListener('open', () => {
|
||||
frequency(false)
|
||||
@ -1497,6 +1498,8 @@ function getSSELink() {
|
||||
console.error('SSE Error:', err)
|
||||
setTimeout(getSSELink, 5000)
|
||||
}
|
||||
}, 500)
|
||||
|
||||
}
|
||||
// 示例数据格式
|
||||
const lineData: any = ref([])
|
||||
@ -1688,7 +1691,8 @@ function texexceltClose() {
|
||||
<el-input v-model="fileObj.keywords" maxlength="200" show-word-limit />
|
||||
</el-form-item>
|
||||
<el-form-item v-if="judge" label="描述:">
|
||||
<el-input v-model="fileObj.description" :rows="2" type="textarea" maxlength="400" show-word-limit />
|
||||
<el-input v-model="fileObj.description" :rows="2" type="textarea" maxlength="400"
|
||||
show-word-limit />
|
||||
</el-form-item>
|
||||
|
||||
</el-form>
|
||||
@ -1903,8 +1907,8 @@ function texexceltClose() {
|
||||
|
||||
</el-dialog>
|
||||
<!-- 轨迹地图 -->
|
||||
<el-dialog title="轨迹地图/图表" v-model="mapTrajectory" :close-on-click-modal="false" :before-close="mapClose" top="30px" draggable
|
||||
destroy-on-close>
|
||||
<el-dialog title="轨迹地图/图表" v-model="mapTrajectory" :close-on-click-modal="false" :before-close="mapClose"
|
||||
top="30px" draggable destroy-on-close>
|
||||
<div style="margin:0px 0px 15px 0px ;">
|
||||
<span>设定采样频率:</span>
|
||||
<span>
|
||||
|
Loading…
Reference in New Issue
Block a user