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
44
45
46
47
48
49
50
51
<template>
<div class="customer-management-information-content">
<div class="customer-management-information-form-title">
<div></div>
<div>企业经营异常名录</div>
</div>
<div>
<table class="customer-management-information-form">
<tr>
<td>序号</td>
<td>列入时间</td>
<td>列入原因</td>
<td>列入机关名称</td>
<td>移除时间</td>
<td>移除原因</td>
</tr>
<tr>
<td>1</td>
<td>2011-06-20</td>
<td></td>
<td>XXX机关</td>
<td>2011-06-30</td>
<td></td>
</tr>
<tr>
<td>2</td>
<td>2011-06-20</td>
<td></td>
<td>XXX机关</td>
<td>2011-06-30</td>
<td></td>
</tr>
</table>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
* @Description 经营风险
* @Author JiangTao
* @Date 2021-11-10 下午 04:08
*/
@Component({
name: "BusinessRisk",
})
export default class BusinessRisk extends Vue {}
</script>
<style scoped></style>