From 0470145fcd755d3f87bffc7a985bd3cc82c5f3f6 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 10 二月 2025 16:30:40 +0800
Subject: [PATCH] feat: init
---
apps/cMiniApp/src/pages/home/index.vue | 13 ++-----------
1 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/apps/cMiniApp/src/pages/home/index.vue b/apps/cMiniApp/src/pages/home/index.vue
index 18dcab0..e3d38b0 100644
--- a/apps/cMiniApp/src/pages/home/index.vue
+++ b/apps/cMiniApp/src/pages/home/index.vue
@@ -1,31 +1,22 @@
<template>
- <PageLayoutWithBg
- class="index-page-wrapper"
- :title="MatchMakingIdentityEnumTitle[matchMakingIdentity]"
- :need-auth="false"
- >
+ <PageLayoutWithBg class="index-page-wrapper" :title="'棣栭〉'" :need-auth="false">
<template #left>
<div class="menu-btn-wrapper city-btn" @click="goCitySelect">
<div class="city-btn-text">{{ locationCity }}</div>
<RectDown :size="12" />
</div>
</template>
- <FrontOrderList v-if="matchMakingIdentity === MatchMakingIdentityEnum.Contributors" />
- <FrontResourceList v-else-if="matchMakingIdentity === MatchMakingIdentityEnum.Employing" />
</PageLayoutWithBg>
</template>
<script setup lang="ts">
-import FrontOrderList from './FrontOrderList.vue';
-import FrontResourceList from './FrontResourceList.vue';
import { useUser } from '@/hooks';
-import { MatchMakingIdentityEnum, MatchMakingIdentityEnumTitle } from '@12333/constants';
import { useUserStore } from '@/stores/modules/user';
import { RectDown } from '@nutui/icons-vue-taro';
import Taro from '@tarojs/taro';
import { LocationUtils } from '@12333/utils';
-const { matchMakingIdentity, isSetMatchMakingIdentity, locationCity } = useUser();
+const { locationCity } = useUser();
const userStore = useUserStore();
--
Gitblit v1.9.1