From 5c2109d84e0e1bfbb11bb533ce21b0eb47ae6a50 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Mon, 19 Jan 2026 17:02:04 +0800
Subject: [PATCH] feat: 工单管理调整
---
applications/task-work-order/src/store/modules/common.js | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/applications/task-work-order/src/store/modules/common.js b/applications/task-work-order/src/store/modules/common.js
index ce4a88f..696d8f6 100644
--- a/applications/task-work-order/src/store/modules/common.js
+++ b/applications/task-work-order/src/store/modules/common.js
@@ -23,8 +23,18 @@
},
safeHeight: 0, // 获取选择航线高度
positionsArr: [], // 获取选择航线点数据
+ // 地图设置
+ mapSetting: {
+ mode: 17, // 0为标准地图, 1为卫星地图
+ roadLine: true,
+ visual: '3D',
+ isDark: false,
+ },
},
mutations: {
+ SET_MAP_MODE: (state, mode) => {
+ state.mapSetting.mode = mode
+ },
setSafeHeight (state, data) {
state.safeHeight = data
},
--
Gitblit v1.9.3