diff --git a/src/api/community/communityApi.js b/src/api/community/communityApi.js
index 5b7a408e5..831ff6dbc 100644
--- a/src/api/community/communityApi.js
+++ b/src/api/community/communityApi.js
@@ -1,4 +1,4 @@
-import { setCommunitys,setCurrentCommunity } from "@/utils/vc"
+import { setCommunitys,setCurrentCommunity,getCurrentCommunity } from "@/utils/vc"
import request from '@/utils/request'
export function _loadCommunityInfo(_param) {
return new Promise((resolve, reject) => {
@@ -51,4 +51,32 @@ export function getDict(tableName,tableColumns) {
reject(error)
})
})
+}
+
+export function getCommunityId() {
+ return getCurrentCommunity().communityId
+}
+
+
+
+export function getCommunityName() {
+ return getCurrentCommunity().name
+}
+
+export function getMyEnteredCommunitys(_param) {
+ return new Promise((resolve, reject) => {
+ request({
+ url: '/community.listMyEnteredCommunitys',
+ method: 'get',
+ params: {
+ ..._param
+ }
+ }).then(response => {
+ const res = response.data
+ // 获取验证码成功
+ resolve(res)
+ }).catch(error => {
+ reject(error)
+ })
+ })
}
\ No newline at end of file
diff --git a/src/components/community/moreCommunity.vue b/src/components/community/moreCommunity.vue
new file mode 100644
index 000000000..107b79f89
--- /dev/null
+++ b/src/components/community/moreCommunity.vue
@@ -0,0 +1,106 @@
+
+