sfhc.vue 721 Bytes
<!--
 * @Author: yangwei
 * @Date: 2023-09-06 09:00:34
 * @LastEditors: yangwei
 * @LastEditTime: 2023-09-06 09:41:07
 * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\sfhc.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by yangwei, All Rights Reserved. 
-->
<template>
  <div class="check-result"></div>
</template>

<script>
import { sfhc } from "@/api/v1.js";
export default {
  name: "BdcdjWebSfhc",
  prop: {
    condition: {
      type: Object,
      default: () => {
        return {};
      },
    },
  },
  data() {
    return {
      checkResult: {},
    };
  },

  mounted() {
    sfhc(this.condition).then((res) => {

    });
  },

  methods: {},
};
</script>

<style lang="scss" scoped></style>