From 5ac4e22d4c590216734fb4f9b93881a92a1f2f4e Mon Sep 17 00:00:00 2001
From: husq <931347610@qq.com>
Date: Wed, 13 Sep 2023 09:31:41 +0800
Subject: [PATCH] 英文转中文
---
src/store/index.ts | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/store/index.ts b/src/store/index.ts
index cf6b009..56d32af 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -8,11 +8,12 @@
import getter from './getters'
import { DevicesCmdExecuteInfo } from '/@/types/device-cmd'
import map from './map'
+import common from '/@/store/common'
const initStateFunc = () => ({
Layers: [
{
- name: 'default',
+ name: '默认',
id: '',
is_distributed: true,
elements: [],
@@ -21,7 +22,7 @@
type: 1
},
{
- name: 'share',
+ name: '共享',
id: '',
is_distributed: true,
elements: [],
@@ -245,7 +246,8 @@
actions,
modules: {
getter,
- map
+ map,
+ common
},
}
--
Gitblit v1.9.3