|
@@ -4,13 +4,15 @@
|
|
|
<template #header>
|
|
<template #header>
|
|
|
<app-navbar :title="$t('tss.logistics')" />
|
|
<app-navbar :title="$t('tss.logistics')" />
|
|
|
</template>
|
|
</template>
|
|
|
- <p style="padding: 15px" v-html="documentcontent"></p>
|
|
|
|
|
|
|
+ <HtmlContainer style="padding: 15px;" class="content" :context="formatHtmlString(documentcontent)" v-if="documentcontent" />
|
|
|
</app-view>
|
|
</app-view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
|
import { useCommonStore } from '@/stores/modules/common';
|
|
import { useCommonStore } from '@/stores/modules/common';
|
|
|
import { computed } from 'vue';
|
|
import { computed } from 'vue';
|
|
|
|
|
+import HtmlContainer from '@mobile/components/base/html-container/index.vue'
|
|
|
|
|
+import { formatHtmlString } from '@/filters'
|
|
|
|
|
|
|
|
const commonStore = useCommonStore()
|
|
const commonStore = useCommonStore()
|
|
|
|
|
|