|
|
@@ -86,12 +86,13 @@
|
|
|
v-if="data.address"
|
|
|
:title="data.address"
|
|
|
touchable
|
|
|
+ direction="column"
|
|
|
:padding="20"
|
|
|
@click="goAddress"
|
|
|
>
|
|
|
<IconTextBlock
|
|
|
icon="map-filling"
|
|
|
- :iconProps="{ size: 27 }"
|
|
|
+ :iconProps="{ size: 30 }"
|
|
|
:title="data.address"
|
|
|
extra="去这里"
|
|
|
:extraProps="{
|
|
|
@@ -148,7 +149,6 @@ import FlexCol from '@/components/layout/FlexCol.vue';
|
|
|
import Image from '@/components/basic/Image.vue';
|
|
|
import Text from '@/components/basic/Text.vue';
|
|
|
import FlexRow from '@/components/layout/FlexRow.vue';
|
|
|
-import Cell from '@/components/basic/Cell.vue';
|
|
|
import Touchable from '@/components/feedback/Touchable.vue';
|
|
|
import Height from '@/components/layout/space/Height.vue';
|
|
|
import IconTextBlock from '@/components/display/block/IconTextBlock.vue';
|
|
|
@@ -158,7 +158,9 @@ const EmptyImage = 'https://mncdn.wenlvti.net/app_static/minnan/EmptyImage.png';
|
|
|
interface TagDataItem {
|
|
|
image: string,
|
|
|
title: string,
|
|
|
+ villageId?: number,
|
|
|
modelId?: number,
|
|
|
+ mainBodyId?: number,
|
|
|
mainBodyColumnId?: number,
|
|
|
}
|
|
|
interface TagDataRecommendItem extends TagDataItem, IHomePageMiniCommonListGoMoreAndGoDetail {
|
|
|
@@ -229,6 +231,8 @@ const contentLoader = useSimpleDataLoader(async () => {
|
|
|
title: item.name,
|
|
|
image: item.logo || EmptyImage,
|
|
|
modelId: item.modelId as number,
|
|
|
+ villageId: item.villageId as number,
|
|
|
+ mainBodyId: item.mainBodyId as number,
|
|
|
mainBodyColumnId: item.mainBodyColumnId as number,
|
|
|
};
|
|
|
});
|
|
|
@@ -238,6 +242,8 @@ const contentLoader = useSimpleDataLoader(async () => {
|
|
|
...t,
|
|
|
...(toRefs(useHomePageMiniCommonListGoMoreAndGoDetail({
|
|
|
title: t.title,
|
|
|
+ villageId: t.villageId,
|
|
|
+ mainBodyId: t.mainBodyId,
|
|
|
mainBodyColumnId: t.mainBodyColumnId,
|
|
|
modelId: t.modelId,
|
|
|
itemType: 'article-common',
|