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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
| <template>
| <div>
| <FormInfo
| :info="baseContractInfo"
| :keys="baseContractInfoKeys"
| title="基础合同信息"
| :loading="loading"
| ></FormInfo>
| <FormInfo
| :info="outPutInfo"
| :keys="outPutInfoKeys"
| title="产值基本信息"
| :loading="loading"
| ></FormInfo>
| <KeysTable
| :list="detailList"
| :header="detailListHeader"
| :isShowPages="false"
| title="产值明细信息"
| @doAction="doAction"
| ></KeysTable>
| </div>
| </template>
| <script>
| import FormInfo from "../FormInfo";
| import KeysTable from "../KeysTable";
| import { qryInvoiceInfoMap } from "@/api/product";
| import { qryInvoiceInfoDetailListHeader } from "@comprehensive/utils/tableHeaders";
| export default {
| props: {
| // 申请编号
| serialNo: {
| type: String,
| required: true,
| },
| objectType: {
| type: String,
| default: "",
| },
| customerID: {
| type: String,
| default: "",
| },
| flowno: {
| type: String,
|
| // 默认为案场
| default: "CreditFlowCase",
| },
| },
| components: {
| FormInfo,
| KeysTable,
| },
| data() {
| return {
| baseContractInfo: {},
| baseContractInfoKeys: [
| {
| label: "债务人",
| field: "obligorname",
| },
| {
| label: "债权人",
| field: "creditorname",
| },
| {
| label: "合同名称",
| field: "contractname",
| },
| {
| label: "合同编号",
| field: "contractno",
| },
| {
| label: "签署日期",
| field: "signeddate",
| },
| {
| label: "合同金额",
| field: "contractamt",
| isMoney: true,
| },
| ],
| outPutInfo: {},
| outPutInfoKeys: [
| {
| label: "产值批次总金额",
| field: "valbatchamt",
| isMoney: true,
| },
| ],
| loading: false,
| //产值明细信息
| detailList: [],
| detailListHeader: [...qryInvoiceInfoDetailListHeader],
| };
| },
| created() {
| this.init();
| },
| methods: {
| init() {
| this.requestQryInvoiceInfoMap();
| },
| async requestQryInvoiceInfoMap() {
| const resp = await qryInvoiceInfoMap({
| projectSerialNo: this.serialNo,
| });
| if (resp.code == "00") {
| const { result } = resp;
| const {
| obligorname,
| creditorname,
| contractname,
| contractno,
| signeddate,
| contractamt,
| valbatchamt,
| } = result;
| this.baseContractInfo = {
| obligorname,
| creditorname,
| contractname,
| contractno,
| signeddate,
| contractamt,
| };
| this.outPutInfo = {
| valbatchamt,
| };
| //产值明细处理
| if (result.detailList) {
| this.detailList = result.detailList.reduce((pre, curr) => {
| let sortButtons = [{ label: "查看影像资料" }];
| pre.push({
| ...curr,
| taxrate: `${curr.taxrate * 100}%`,
| buttons: [...sortButtons],
| });
| return pre;
| }, []);
| // this.pageInfo = {
| // currentPage: 1,
| // pageSize: result.detailList.length,
| // total: result.detailList.length,
| // };
| }
| }
| },
| doAction(name, item, { label }) {
| console.log("doAction", name, item, label);
| if (label == "查看影像资料" && item.ecmPageInfoList) {
| window.open(item.ecmPageInfoList[0].preurl);
| }
| },
| },
| };
| </script>
| <style lang="postcss" scoped>
| </style>
|
|