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
<template>
<div class="customer-management-information-content">
<table class="customer-management-information-form">
<tr>
<td>序号</td>
<td>质权出质设立登记日期</td>
<td>出质人姓名</td>
<td style="width: 40%">变更内容</td>
<td>变更日期</td>
</tr>
<tr>
<td>1</td>
<td>2011-06-20</td>
<td>张子怡</td>
<td></td>
<td>2011-06-20</td>
</tr>
<tr>
<td>2</td>
<td>2011-06-20</td>
<td>张子怡</td>
<td></td>
<td>2011-06-20</td>
</tr>
</table>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
* @Description 股权出质-变更信息
* @Author JiangTao
* @Date 2021-11-10 下午 04:10
*/
@Component({
name: "ChangeInformation",
})
export default class ChangeInformation extends Vue {}
</script>
<style scoped></style>