|
|
@@ -65,7 +65,10 @@
|
|
|
<FlexRow v-if="authStore.isLogged" backgroundColor="white" :radius="20" :padding="[40,20]">
|
|
|
<FlexCol :flex="1" :gap="10" center>
|
|
|
<Text :fontSize="60" fontFamily="Rockwell" color="primary">{{ volunteerInfoLoader.content.value?.points || 0 }}</Text>
|
|
|
- <Text>文化积分</Text>
|
|
|
+ <Touchable direction="row" align="center" :gap="10" @click="navTo('/pages/dig/about/point')">
|
|
|
+ <Text>文化积分</Text>
|
|
|
+ <Icon name="help" size="40" />
|
|
|
+ </Touchable>
|
|
|
</FlexCol>
|
|
|
<FlexCol :flex="1" :gap="10" center>
|
|
|
<Text :fontSize="60" fontFamily="Rockwell" color="primary">Lv.{{ volunteerInfoLoader.content.value?.level || 1 }}</Text>
|
|
|
@@ -77,15 +80,14 @@
|
|
|
<Dialog
|
|
|
v-model:show="showOnlinePreviewDialog"
|
|
|
:showConfirm="false"
|
|
|
+ closeable
|
|
|
>
|
|
|
<FlexCol :padding="[40,20]" :gap="10" center>
|
|
|
<Image src="https://mn.wenlvti.net/app_static/xiangyuan/images/home/UnOpenIcon.png" width="300" mode="widthFix" />
|
|
|
<Text textAlign="center">你挖掘的史料未经过专家审核,无法展示</Text>
|
|
|
<Height :size="20" />
|
|
|
- <Button size="large" type="primary" @click="showOnlinePreviewDialog = false">
|
|
|
- <WxButton openType="contact">
|
|
|
- 联系客服开通专家审核
|
|
|
- </WxButton>
|
|
|
+ <Button size="large" type="primary" @click="showOnlinePreviewDialog = false;navTo('/pages/home/about/contract')">
|
|
|
+ 联系客服开通专家审核
|
|
|
</Button>
|
|
|
</FlexCol>
|
|
|
</Dialog>
|
|
|
@@ -115,6 +117,8 @@ import BubbleBox from '@/components/feedback/BubbleBox.vue';
|
|
|
import Result from '@/components/feedback/Result.vue';
|
|
|
import Dialog from '@/components/dialog/Dialog.vue';
|
|
|
import WxButton from '@/components/basic/WxButton.vue';
|
|
|
+import Touchable from '@/components/feedback/Touchable.vue';
|
|
|
+import Icon from '@/components/basic/Icon.vue';
|
|
|
|
|
|
const showOnlinePreviewDialog = ref(false);
|
|
|
const authStore = useAuthStore();
|