|
|
@@ -108,7 +108,10 @@
|
|
|
<FlexRow v-if="authStore.isLogged" backgroundColor="white" radius="radius.md" :padding="[40,20]">
|
|
|
<FlexCol :flex="1" :gap="10" center>
|
|
|
<Text fontConfig="lightGoldTitle">{{ volunteerInfoLoader.content.value?.points || 0 }}</Text>
|
|
|
- <Text>文化积分</Text>
|
|
|
+ <Touchable direction="row" align="center" :gap="10" @click="navTo('/pages/dig/about/point')">
|
|
|
+ <Text>文化积分</Text>
|
|
|
+ <Icon icon="help-filling" color="primary" :size="40" />
|
|
|
+ </Touchable>
|
|
|
</FlexCol>
|
|
|
<FlexCol :flex="1" :gap="10" center>
|
|
|
<Text fontConfig="lightGoldTitle">Lv.{{ volunteerInfoLoader.content.value?.level || 1 }}</Text>
|
|
|
@@ -126,10 +129,8 @@
|
|
|
<Height :size="20" />
|
|
|
<Text textAlign="center">尊敬的用户,您未开通线上村史的使用权限,开通后即可使用!</Text>
|
|
|
<Height :size="20" />
|
|
|
- <Button size="large" type="primary">
|
|
|
- <WxButton openType="contact">
|
|
|
- 联系客服开通功能
|
|
|
- </WxButton>
|
|
|
+ <Button size="large" type="primary" @click="showOnlinePreviewDialog = false; navTo('/pages/home/about/contract')">
|
|
|
+ 联系客服开通功能
|
|
|
</Button>
|
|
|
</FlexCol>
|
|
|
</CommonDialog>
|
|
|
@@ -161,8 +162,9 @@ import HomeLargeTitle from '@/common/components/parts/HomeLargeTitle.vue';
|
|
|
import type { RequestApiError } from '@imengyu/imengyu-utils';
|
|
|
import FrameButton from '@/common/components/FrameButton.vue';
|
|
|
import CommonDivider from '@/common/components/CommonDivider.vue';
|
|
|
-import WxButton from '@/components/basic/WxButton.vue';
|
|
|
import CommonDialog from '@/common/components/CommonDialog.vue';
|
|
|
+import Touchable from '@/components/feedback/Touchable.vue';
|
|
|
+import Icon from '@/components/basic/Icon.vue';
|
|
|
|
|
|
const showOnlinePreviewDialog = ref(false);
|
|
|
const authStore = useAuthStore();
|