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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| <template>
| <div class="apply-info">
| <CommTable title="历史维护信息" :isAutoIndex="true" :list="list" :header="tableHeader"></CommTable>
| </div>
| </template>
|
| <script>
| import CommTable from "@/components/CommTable";
|
| import quotaControlRecordList from "@/controller/quotaControlRecordList";
| import qryCustQuotaHistoryList from "@/controller/qryCustQuotaHistoryList";
| export default {
| components: {
| CommTable
| },
| data() {
| return {
| pageInfo: {
| currentPage: 1,
| pageSize: 10
| },
| tableHeader: [],
| model: null,
| query: {},
| list: []
| };
| },
| created() {
| this.init();
| },
| methods: {
| init() {
| const { query } = this.$route;
| const { type } = query;
| this.query = query;
| let model = null;
| if (type === "0") {
| model = quotaControlRecordList();
| this.tableHeader = model.getTableList();
| this.model = model;
| this.getList();
| }
| if (type === "1") {
| model = qryCustQuotaHistoryList();
| this.tableHeader = model.getTableList();
| this.model = model;
| this.getListTable();
| }
| },
| async getList() {
| const { query, model, pageInfo } = this;
| const { controlSerialNo, quotaSerialNo, pageId } = query;
|
| const res = await model.request({
| controlSerialNo: pageId === "11" ? quotaSerialNo : controlSerialNo
| });
| const { list = [], total } = res;
| this.list = list;
| // this.total = parseInt(total);
| },
| async getListTable() {
| const { query, model, pageInfo } = this;
| const {
| controlSerialNo,
| quotaSerialNo,
| pageId,
| serialNo,
| certId
| } = query;
|
| const { list } = await model.request({
| serialNo,
| certId
| });
| this.list = list;
| }
| }
| };
| </script>
|
| <style scoped>
| </style>
|
|