diff --git a/.env.development b/.env.development
index 8cb6577..e214183 100644
--- a/.env.development
+++ b/.env.development
@@ -7,4 +7,4 @@ VITE_CLIENT_VERSION = 789654
VITE_WS_URL = 'ws://localhost:80/ws'
# title
-VITE_TITLE = 'AnyIM 即时通信(开发环境)'
\ No newline at end of file
+VITE_TITLE = 'Open-AnyLink(开发环境)'
\ No newline at end of file
diff --git a/README.md b/README.md
index b4d6f84..7e96159 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# anyim-web
+# open-anylink-web
This template should help get you started developing with Vue 3 in Vite.
diff --git a/index.html b/index.html
index 26b9323..c5a31b2 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
-
AnyIM 即时通信
+ Open-AnyLink
diff --git a/package.json b/package.json
index 8e3ce27..53049c2 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "anyim-web",
+ "name": "anylink-web",
"version": "0.0.0",
"private": true,
"type": "module",
diff --git a/src/stores/group.js b/src/stores/group.js
index 74e6010..239922c 100644
--- a/src/stores/group.js
+++ b/src/stores/group.js
@@ -3,7 +3,7 @@ import { ref } from 'vue'
import { groupInfoListService } from '@/api/group'
// group群组相关的缓存数据,不持久化存储
-export const groupStore = defineStore('anyim-group', () => {
+export const groupStore = defineStore('anylink-group', () => {
/**
* 和我有关的所有群组,格式:{groupId_1: groupInfo_1, groupId_2: groupInfo_2}
*/
diff --git a/src/stores/groupCard.js b/src/stores/groupCard.js
index 5f56533..fa18959 100644
--- a/src/stores/groupCard.js
+++ b/src/stores/groupCard.js
@@ -3,7 +3,7 @@ import { ref } from 'vue'
import {} from '@/api/group'
// groupCard群组详情卡片相关的缓存数据,不持久化存储
-export const groupCardStore = defineStore('anyim-groupCard', () => {
+export const groupCardStore = defineStore('anylink-groupCard', () => {
const isShow = ref(false)
const groupId = ref('')
diff --git a/src/stores/image.js b/src/stores/image.js
index b7ce323..5704375 100644
--- a/src/stores/image.js
+++ b/src/stores/image.js
@@ -5,7 +5,7 @@ import { ref } from 'vue'
const pattern = /\{[a-f0-9]+\}/g
// image的缓存数据,不持久化存储
-export const imageStore = defineStore('anyim-image', () => {
+export const imageStore = defineStore('anylink-image', () => {
/**
* {
* objectId_01: {objectId: objectId_01, originUrl: xxx, thumbUrl: xxx},
diff --git a/src/stores/message.js b/src/stores/message.js
index f091b36..d4d5c9e 100644
--- a/src/stores/message.js
+++ b/src/stores/message.js
@@ -8,7 +8,7 @@ import {
import { ElMessage } from 'element-plus'
// 消息功能相关需要缓存的数据,不持久化存储
-export const messageStore = defineStore('anyim-message', () => {
+export const messageStore = defineStore('anylink-message', () => {
/**
* message页面当前被选中的sessionId
*/
diff --git a/src/stores/search.js b/src/stores/search.js
index 64f4b3c..cc03121 100644
--- a/src/stores/search.js
+++ b/src/stores/search.js
@@ -2,7 +2,7 @@ import { defineStore } from 'pinia'
import { ref, computed } from 'vue'
// 不持久化存储
-export const searchStore = defineStore('anyim-search', () => {
+export const searchStore = defineStore('anylink-search', () => {
const keywords = ref('')
const setKeywords = (words) => {
diff --git a/src/stores/setting.js b/src/stores/setting.js
index 0104a66..1a7ce3d 100644
--- a/src/stores/setting.js
+++ b/src/stores/setting.js
@@ -3,7 +3,7 @@ import { ref } from 'vue'
// 界面设置相关需要缓存的设置
export const settingStore = defineStore(
- 'anyim-setting',
+ 'anylink-setting',
() => {
const sessionListDrag = ref(0)
const inputBoxDrag = ref(0)
diff --git a/src/stores/user.js b/src/stores/user.js
index 2d95ea1..0609450 100644
--- a/src/stores/user.js
+++ b/src/stores/user.js
@@ -5,7 +5,7 @@ import { refreshToken } from '@/api/user'
// 用户模块
export const userStore = defineStore(
- 'anyim-user',
+ 'anylink-user',
() => {
const at = ref({
token: '',
diff --git a/src/stores/userCard.js b/src/stores/userCard.js
index c71356f..6847619 100644
--- a/src/stores/userCard.js
+++ b/src/stores/userCard.js
@@ -3,7 +3,7 @@ import { ref } from 'vue'
import {} from '@/api/group'
// userCard用户详情卡片相关的缓存数据,不持久化存储
-export const userCardStore = defineStore('anyim-userCard', () => {
+export const userCardStore = defineStore('anylink-userCard', () => {
const isShow = ref(false)
const userInfo = ref({})