zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<template>
  <div>
    <component
      v-bind:is="componentName"
      :conf="info"
      :typeId="typeId"
      v-bind="$attrs"
      v-on="$listeners"
      :ref="refId"
    ></component>
  </div>
</template>
<script>
// 动态组件
const AcctLoan = () => import('@/components/tabs/AcctLoan')
const AcctLoanReturn = () => import('@/components/tabs/AcctLoanReturn')
const ApplyInfo = () => import('@/components/tabs/ApplyInfo')
const ApplyInfoDelay = () => import('@/components/tabs/ApplyInfoDelay')
const FlowList = () => import('@/components/tabs/FlowList')
const ImageMenuList = () => import('@/components/tabs/ImageMenuList')
const ImageMenuListNew = () => import('@/components/tabs/ImageMenuListNew')
const OpinionList = () => import('@/components/tabs/OpinionList')
const ImplementationResults = () =>
  import('@/components/tabs/ImplementationResults')
const TransactionInfo = () => import('@/components/tabs/TransactionInfo')
const RePaymentWashLoanInfo = () =>
  import('@/components/tabs/RePaymentWashLoanInfo')
 
const BankRunningWater = () => import('@/components/tabs/BankRunningWater')
const RevokeBankRunningWater = () =>
  import('@/components/tabs/RevokeBankRunningWater')
const TransactionInformation = () =>
  import('@/components/tabs/TransactionInformation')
const RevokeTransactionInformation = () =>
  import('@/components/tabs/RevokeTransactionInformation')
 
const RefundApplication = () => import('@/components/tabs/RefundApplication')
const LoanIous = () => import('@/components/tabs/LoanIous')
const RepaymentApply = () => import('@/components/tabs/RepaymentApply')
const trialPart = () => import('@/components/tabs/trialPart')
const PendingClaim = () => import('@/components/tabs/PendingClaim')
const ProcessedClaim = () => import('@/components/tabs/ProcessedClaim')
const TransactionEntrySum = () =>
  import('@/components/tabs/TransactionEntrySum')
 
const TransactionEntryDetails = () =>
  import('@/components/tabs/TransactionEntryDetails')
 
const ClaimRevokeApply = () => import('@/components/tabs/ClaimRevokeApply')
const DiscountInfo = () => import('@/components/tabs/DiscountInfo')
const DiscountIousInfo = () => import('@/components/tabs/DiscountIousInfo')
const DiscountDetails = () => import('@/components/tabs/DiscountDetails')
const SettlementDiscount = () => import('@/components/tabs/SettlementDiscount')
 
const SettlementDiscountIous = () =>
  import('@/components/tabs/SettlementDiscountIous')
// 息费减免申请信息
const ReductionApplyInfo = () => import('@/components/tabs/ReductionApplyInfo')
const RepaymentApplyInfo = () => import('@/components/tabs/RepaymentApplyInfo')
const ElectronicContract = () => import('@/components/tabs/ElectronicContract')
const LoanInfo = () => import('@/components/tabs/LoanInfo')
const ZhonghangApplyInfo = () => import('@/components/tabs/ZhonghangApplyInfo')
const HistoryInfo = () => import('@/components/tabs/HistoryInfo')
 
const ZhonghangRunningWater = () =>
  import('@/components/tabs/ZhonghangRunningWater')
 
export default {
  components: {
    FlowList,
    AcctLoan,
    AcctLoanReturn,
    ApplyInfo,
    ApplyInfoDelay,
    ImageMenuList,
    OpinionList,
    TransactionInfo,
    RePaymentWashLoanInfo,
    ImplementationResults,
    BankRunningWater,
    RevokeBankRunningWater,
    TransactionInformation,
    RevokeTransactionInformation,
    RefundApplication,
    TransactionEntrySum,
    TransactionEntryDetails,
    ClaimRevokeApply,
    LoanIous,
    RepaymentApply,
    PendingClaim,
    trialPart,
    DiscountInfo,
    DiscountDetails,
    DiscountIousInfo,
    ProcessedClaim,
    SettlementDiscountIous,
    SettlementDiscount,
    ImageMenuListNew,
    ReductionApplyInfo,
    RepaymentApplyInfo,
    ElectronicContract,
    LoanInfo,
    ZhonghangApplyInfo,
    ZhonghangRunningWater,
    HistoryInfo
  },
  props: {
    /**
     * 节点信息
     * @example
     * { "tabname": "借款人信息", "exist": "Y", "gray": "N", "visible": "Y" }
     */
    info: {
      type: Object,
      required: true
    },
    index: {
      type: Number,
      default: 0
    }
  },
  created() {
    // const { $route } = this
    // const { query } = $route
  },
  methods: {
    submit(isSave = 0) {
      const { refId } = this
      if (typeof this.$refs[refId].submit === 'function') {
        this.$refs[refId].submit(isSave)
      }
    },
    checkData() {
      const { refId } = this
      if (typeof this.$refs[refId].checkData === 'function') {
        this.$refs[refId].checkData()
      }
    },
    resetForm() {
      const { refId } = this
      if (typeof this.$refs[refId].resetForm === 'function') {
        this.$refs[refId].resetForm()
      }
    },
    showCheck() {
      this.$emit('showCheck', true)
    }
  },
  computed: {
    componentName(item) {
      let { info } = this
      // console.log(this.$route.query)
      const { pageId, transCode } = this.$route.query
      let { tabName } = info
      let tabComponent = null
 
      if (tabName === '借据信息') {
        if (pageId === '36') {
          tabComponent = 'AcctLoanReturn'
        } else {
          tabComponent = 'AcctLoan'
        }
      }
 
      if (tabName === '执行结果信息') {
        tabComponent = 'ImplementationResults'
      }
 
      if (tabName === '申请信息') {
        if (
          pageId === '36' ||
          pageId === '37' ||
          transCode === '5001' ||
          transCode === '5002' ||
          transCode === 'T5001'
        ) {
          tabComponent = 'ReductionApplyInfo'
        } else if (transCode === 'ZH1001') {
          tabComponent = 'ZhonghangApplyInfo'
        } else if (transCode === '3009') {
          tabComponent = () => import('@/components/tabs/ApplyInfoDelay')
        } else {
          tabComponent = 'ApplyInfo'
        }
      }
 
      if (tabName === '影像资料信息') {
        if (pageId === '35') {
          tabComponent = 'ImageMenuListNew'
        } else {
          tabComponent = 'ImageMenuList'
        }
      }
 
      if (tabName === '流程流转记录') {
        tabComponent = 'FlowList'
      }
 
      if (tabName === '审批意见') {
        tabComponent = 'OpinionList'
      }
 
      if (tabName === '还款交易信息') {
        tabComponent = 'TransactionInfo'
      }
 
      if (tabName === '还款借据信息') {
        tabComponent = 'RePaymentWashLoanInfo'
      }
 
      if (tabName === '银行流水信息') {
        if (pageId === '35') {
          tabComponent = 'RevokeBankRunningWater'
        } else if (transCode === 'ZH1001') {
          tabComponent = 'ZhonghangRunningWater'
        } else {
          tabComponent = 'BankRunningWater'
        }
      }
 
      if (tabName === '交易信息') {
        if (pageId === '35') {
          tabComponent = 'RevokeTransactionInformation'
        } else {
          tabComponent = 'TransactionInformation'
        }
      }
 
      if (tabName === '退款申请信息') {
        tabComponent = 'RefundApplication'
      }
      if (tabName === '贷款借据信息') {
        tabComponent = 'LoanIous'
      }
 
      if (tabName === '交易入账汇总信息') {
        tabComponent = 'TransactionEntrySum'
      }
 
      if (tabName === '交易入账明细信息') {
        tabComponent = 'TransactionEntryDetails'
      }
 
      if (tabName === '认领撤销申请信息') {
        tabComponent = 'ClaimRevokeApply'
      }
 
      if (tabName === '流转记录') {
        tabComponent = 'FlowList'
      }
 
      if (tabName === '还款申请信息') {
        tabComponent = 'RepaymentApply'
      }
 
      if (tabName === '提前部分还款试算') {
          tabComponent = 'trialPart'
      }
 
      if (tabName === '待认领资金') {
        tabComponent = 'PendingClaim'
      }
 
      if (tabName === '已认领资金') {
        tabComponent = 'ProcessedClaim'
      }
 
      if (tabName === '贴息信息') {
        tabComponent = 'DiscountInfo'
      }
 
      if (tabName === '贴息明细') {
        tabComponent = 'DiscountDetails'
      }
 
      if (tabName === '贴息借据信息') {
        tabComponent = 'DiscountIousInfo'
      }
 
      if (tabName === '待结算贴息信息') {
        tabComponent = 'SettlementDiscount'
      }
 
      if (tabName === '待结算贴息借据') {
        tabComponent = 'SettlementDiscountIous'
      }
 
      if (tabName === '变更前减免信息') {
        tabComponent = 'RepaymentApplyInfo'
      }
 
      if (tabName === '变更前还款息费') {
        tabComponent = 'RepaymentApplyInfo'
      }
 
      if (tabName === '变更申请信息') {
        tabComponent = 'RepaymentApplyInfo'
      }
 
      if (tabName === '电子合同信息') {
        tabComponent = 'ElectronicContract'
      }
 
      if (tabName === '贷款信息') {
        tabComponent = 'LoanInfo'
      }
 
      if (tabName === '历史申请信息') {
        tabComponent = 'HistoryInfo'
      }
 
      if (tabName === '开票基本信息') {
        tabComponent = () => import('@/components/tabs/InvoiceInfo')
      }
      if (tabName === '利息开票关联信息') {
        tabComponent = () => import('@/components/tabs/RelativeInterestInvoiceInfo')
      }
      if (tabName === '开票关联信息') {
        tabComponent = () => import('@/components/tabs/RelativeInvoiceInfo')
      }
      if (tabName === '开票影像资料') {
        tabComponent = () => import('@/components/tabs/InvoiceImageData')
      }
 
      if (tabName === '贷款详情') {
        tabComponent = () => import('@/components/tabs/LoanDetail')
      }
 
      if (tabName === '贴息方案') {
        tabComponent = () => import('@/components/tabs/ProgramLoanInfo')
      }
 
      if (tabName === '认领贴息') {
        tabComponent = () => import('@/components/tabs/ClaimDiscountInfo')
      }
 
      if (tabName === '补开发票信息') {
        tabComponent = () => import('@/components/tabs/FillOpenInvoiceInfo')
      }
 
      if (tabName === '基本信息') {
        if (pageId === '110') {
          tabComponent = () => import('@/components/tabs/BasicFinancialInfo')
        } else {
          tabComponent = () => import('@/components/tabs/BasicCustomerInfo')
        }
      }
 
      if (tabName === '扣款信息') {
        tabComponent = () => import('@/components/tabs/DeductionInfo')
      }
 
      if (tabName === '历史变更记录') {
        tabComponent = () => import('@/components/tabs/HistoryChange')
      }
 
      if (tabName === '交易申请记录') {
        tabComponent = () => import('@/components/tabs/TransationApplyRecords')
      }
 
      if (tabName === '历史电子邮件信息' || tabName === '历史邮寄信息') {
        tabComponent = () => import('@/components/tabs/HistoryEmailInfo')
      }
 
      if (tabName === '核对结果') {
        tabComponent = () => import('@/components/tabs/CheckResult')
      }
 
      if (tabName === '业务交易明细') {
        // tabComponent = () => import('@/components/tabs/BasicFinancialInfo')
        tabComponent = () =>
          import('@/components/tabs/BusinessTransactionDetails')
      }
 
      if (tabName === '财务分录明细') {
        tabComponent = () => import('@/components/tabs/FinancialEntryDetails')
      }
 
      return tabComponent
    },
    typeId() {
      let { info } = this
      let { tabName } = info
      let id = ''
      if (['变更前减免信息', '历史电子邮件信息'].includes(tabName)) {
        id = 1
      }
 
      if (['变更前还款息费', '历史邮寄信息'].includes(tabName)) {
        id = 2
      }
 
      if (tabName === '变更申请信息') {
        id = 3
      }
      return id
    },
    refId() {
      const { index } = this
      return `tabContent${index}`
    }
  }
}
</script>
<style lang="postcss" scoped>
</style>