From 69a1b3bf45738f048361ee4ccb6bdc64fce35720 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 12 三月 2025 11:31:46 +0800
Subject: [PATCH] 更新
---
h5/pages/visitorSubGuide/index.vue | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/h5/pages/visitorSubGuide/index.vue b/h5/pages/visitorSubGuide/index.vue
new file mode 100644
index 0000000..3f50a81
--- /dev/null
+++ b/h5/pages/visitorSubGuide/index.vue
@@ -0,0 +1,36 @@
+<template>
+ <view class="box">
+ <!-- <view v-html="info"></view> -->
+ <mp-html :content="info" />
+ </view>
+</template>
+<script>
+import { getSystemDictData } from '@/api'
+export default {
+ data() {
+ return {
+ info: "",
+ }
+ },
+ onLoad() {
+ this.initData()
+ },
+ methods: {
+ initData() {
+ getSystemDictData({
+ dictCode: 'SYSTEM',
+ label: 'VISIT_TIPS'
+ }).then(res => {
+ if (res.code === 200) {
+ this.info = res.data.code
+ }
+ })
+ }
+ }
+}
+</script>
+<style lang="scss" scoped>
+.box {
+ padding: 0 30rpx;
+}
+</style>
\ No newline at end of file
--
Gitblit v1.9.3