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
| <template>
| <OverdueDebtCollection :canEdit="true" />
| </template>
|
| <script>
| import OverdueDebtCollection from "./components/tabsComponent/OverdueDebtCollection.vue";
| //催收事件
| export default {
| name: "overdueDebtCollectionPage",
| components: {
| OverdueDebtCollection,
| },
| computed: {},
| data() {
| return {};
| },
| created() {},
| methods: {},
| };
| </script>
|
| <style lang="postcss" scoped>
| .list-content {
| font-size: 14px;
| }
| .export-excle {
| margin: 0 0 20px 0;
| }
| .message {
| font-size: 12px;
| color: #666666;
| padding: 10px 20px;
| background-color: #fafafa;
| }
| >>>.el-table__header {
| width: 100% !important;
| }
| >>>.el-table__body {
| width: 100% !important;
| }
| </style>
|
|