sfhc.vue
721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
* @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>