吉安感知网项目-前端
shuishen
2026-02-05 c812ea3b426e82008f9bb7c817fd612273679354
feat:中文乱码问题修复
4 files modified
18 ■■■■ changed files
applications/drone-command/src/api/dataCockpit/index.js 6 ●●●● patch | view | raw | blame | history
applications/drone-command/src/utils/cesium/shapeTools/edit/EditPolygonTool.js 4 ●●●● patch | view | raw | blame | history
applications/drone-command/src/views/areaManage/areaStatistics/FormDiaLog.vue 2 ●●● patch | view | raw | blame | history
applications/drone-command/src/views/areaManage/sceneManage/FormDiaLog.vue 6 ●●●● patch | view | raw | blame | history
applications/drone-command/src/api/dataCockpit/index.js
@@ -53,7 +53,7 @@
    })
}
// ????
// 告警收藏
export const alarmFavoriteSaveApi = (data) => {
    return request({
        url: '/drone-fw/record/fwAlarmFavorite/save',
@@ -62,7 +62,7 @@
    })
}
// ??????
// 取消收藏
export const alarmFavoriteRemoveApi = (ids) => {
    const formattedIds = Array.isArray(ids) ? ids.join(',') : ids
    return request({
@@ -117,4 +117,4 @@
        method: 'get',
        params,
    })
}
}
applications/drone-command/src/utils/cesium/shapeTools/edit/EditPolygonTool.js
@@ -75,9 +75,9 @@
    handleMouseMove(movement) {
        if (!this.tooltip?.isVisible) {
            this.tooltip.show('????????????', movement.endPosition)
            this.tooltip.show('拖动顶点编辑', movement.endPosition)
        } else {
            this.tooltip.show('????????????')
            this.tooltip.show('拖动顶点编辑')
            this.tooltip.move(movement.endPosition)
        }
        if (!this.isDragging || this.draggedIndex < 0) return
applications/drone-command/src/views/areaManage/areaStatistics/FormDiaLog.vue
@@ -68,7 +68,7 @@
const formData = ref(initForm()) // 弹框显隐
const visible = defineModel() // 弹框模式
const dialogMode = ref('view') // ????
const dialogMode = ref('view') // 弹窗模式
const titleEnum = ref({ view: '查看' })
const dictObj = inject('dictObj')
applications/drone-command/src/views/areaManage/sceneManage/FormDiaLog.vue
@@ -191,7 +191,7 @@
const titleEnum = ref({ edit: '编辑', view: '查看', add: '新增' })
const effectiveDateRange = ref([]) // 有效时间范围
const sceneConfigList = ref([]) // 场景配置列表
const areaList = ref([]) // ????
const areaList = ref([]) // 区域列表
const mapRef = ref(null)
const route = useRoute()
let viewer
@@ -263,7 +263,7 @@
}
// 获取场景配置列表
// ?????
// 区域展示数据源
function ensureAreaDisplaySource() {
    if (!viewer) return null
    if (!areaDisplaySource) {
@@ -522,7 +522,7 @@
    })
}
// ??????????
// 加载区域列表
async function loadAreaList(sceneId) {
    if (!sceneId) {
        areaList.value = []