k94314517
2024-10-16 17efddc6a667670dca682bf36b51a43e99615e6d
h5/pages/visitorSubGuide/index.vue
@@ -1,27 +1,37 @@
<template>
   <view class="box">
    <view class="line" v-for="item,i in guideList" :key="i">{{ item }}</view>
  <view class="box">
    <view v-html="info"></view>
  </view>
</template>
<script>
   export default {
      data() {
         return {
            guideList: [
          '1、访客阅读入厂须知,填写安全答题。',
          '2、答题完成预约。',
          '3、预约完成请至访客机签到。',
          '4、刷脸入园。',
          '5、出园签离',
        ]
         };
      }
   }
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{
.box {
  padding: 30rpx;
  .line{
  .line {
    margin-bottom: 16rpx;
  }
}