useCommonSense.vue 2.34 KB
<template>
  <view>
    <!--		<view class="flex justify-center text-xl text-bold padding">-->
    <!--			液化石油气规范使用常识-->
    <!--		</view>-->
    <view className="flex flex-direction">
      <view v-html="content">
      </view>
      <!--			<view class="text-lg text-black margin-sm" v-for="(item,index) in commonSenseList" :key="index">-->
      <!--				{{item}}-->
      <!--			</view>-->
    </view>
  </view>
</template>

<script>
export default {
  name: "useCommonSense",
  data() {
    return {
      content: '',
      commonSenseList: [
        '1、按照国家有关规定配置消防设施和器材、安装可燃气体浓度报警装置。',
        '2、用户要经常检查液化石油气设备是否完好无损。',
        '3、液化气灶具在使用时应有人看管,防止火被风吹灭以及水、汤溢出将火浇灭。',
        '4、钢瓶位置不要靠近热源,连接管长度不超过2米,同一房间内不得使用其它火源。',
        '5、使用液化石油气的房间应注意通风换气。',
        '6、液化气钢瓶严禁安置在密闭的空间之中。',
        '7、钢瓶必须直立使用,严禁横放或倒放使用。',
        '8、严禁乱倒残液,否则遇到明火会立即引起燃烧或爆炸。',
        '9、严禁擅自拆、修、迁改液化石油气管道及附件。',
        '10、连接管与调压器不能超过有效期使用。发生老化、开裂、 漏气等情况时应立即停止使用, 并进行更换或维修,确保燃气使用安全。 ',
        '11、使用完液化气后请务必关闭钢瓶阀门门。',
        '12、人员密集的室内禁用。'
      ],
    };
  },
  mounted() {
    this.initData();
  },
  methods: {
    async initData() {
      let params = {
        pageBean: {
          page: 1,
          pageSize: 10,
          showTotal: true
        },
        querys: [
          {
            property: 'f_key',
            value: 'system.qp.sycs',
            group: 'advance',
            relation: 'AND',
            operation: 'EQUAL'
          }
        ]
      }
      let result = await this.$api.chargingInformationApi.getSecurityInfo(params);
      let {rows} = result;
      let infoValue = rows[0].f_value;
      this.content = infoValue;
      console.log('打印result', infoValue);
    },

  }
}
</script>

<style lang="scss">

</style>