|
|
@ -188,6 +188,51 @@ |
|
|
|
:mappingData="mappingData" |
|
|
|
:mappingData="mappingData" |
|
|
|
@close="controlWindows.detail = false" |
|
|
|
@close="controlWindows.detail = false" |
|
|
|
> |
|
|
|
> |
|
|
|
|
|
|
|
<template #transactionType> |
|
|
|
|
|
|
|
<p class="ft14"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
oilCompanyMatch.transactionType === "TURN" |
|
|
|
|
|
|
|
? LoopBackTypeEnum.find( |
|
|
|
|
|
|
|
(item) => item.value === oilCompanyMatch.turnType |
|
|
|
|
|
|
|
).label |
|
|
|
|
|
|
|
: rechargeTypeEnum.find( |
|
|
|
|
|
|
|
(item) => item.value === oilCompanyMatch.transactionType |
|
|
|
|
|
|
|
).label |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<template #transactionState> |
|
|
|
|
|
|
|
<p class="ft14"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
rechargeStatusEnum.find( |
|
|
|
|
|
|
|
(item) => item.value === oilCompanyMatch.transactionState |
|
|
|
|
|
|
|
).label |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<template #auditMark> |
|
|
|
|
|
|
|
<p class="ft14"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
auditMarkEnum.find( |
|
|
|
|
|
|
|
(item) => item.value === oilCompanyMatch.auditMark |
|
|
|
|
|
|
|
).label |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<template #accountState> |
|
|
|
|
|
|
|
<p class="ft14"> |
|
|
|
|
|
|
|
{{ |
|
|
|
|
|
|
|
accountStatusEnum.find( |
|
|
|
|
|
|
|
(item) => item.value === oilCompanyMatch.accountState |
|
|
|
|
|
|
|
).label |
|
|
|
|
|
|
|
}} |
|
|
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<template #accountType> |
|
|
|
|
|
|
|
<p class="ft14"> |
|
|
|
|
|
|
|
{{ oilCompanyMatch.accountType === "0" ? "基础账户" : "" }} |
|
|
|
|
|
|
|
</p> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template #offlineTransactionProof> |
|
|
|
<template #offlineTransactionProof> |
|
|
|
<el-image |
|
|
|
<el-image |
|
|
|
style="width: 100px; height: 100px" |
|
|
|
style="width: 100px; height: 100px" |
|
|
@ -211,6 +256,7 @@ import { |
|
|
|
rechargeTypeEnum, |
|
|
|
rechargeTypeEnum, |
|
|
|
rechargeStatusEnum, |
|
|
|
rechargeStatusEnum, |
|
|
|
repaymentExamineEnum, |
|
|
|
repaymentExamineEnum, |
|
|
|
|
|
|
|
accountStatusEnum, |
|
|
|
} from "utils/dataType.js"; |
|
|
|
} from "utils/dataType.js"; |
|
|
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
export default { |
|
|
@ -224,6 +270,7 @@ export default { |
|
|
|
rechargeTypeEnum: rechargeTypeEnum, |
|
|
|
rechargeTypeEnum: rechargeTypeEnum, |
|
|
|
rechargeStatusEnum: rechargeStatusEnum, |
|
|
|
rechargeStatusEnum: rechargeStatusEnum, |
|
|
|
repaymentExamineEnum: repaymentExamineEnum, |
|
|
|
repaymentExamineEnum: repaymentExamineEnum, |
|
|
|
|
|
|
|
accountStatusEnum: accountStatusEnum, |
|
|
|
controlWindows: { |
|
|
|
controlWindows: { |
|
|
|
detail: false, |
|
|
|
detail: false, |
|
|
|
}, |
|
|
|
}, |
|
|
@ -271,6 +318,23 @@ export default { |
|
|
|
value: 4, |
|
|
|
value: 4, |
|
|
|
}, |
|
|
|
}, |
|
|
|
], |
|
|
|
], |
|
|
|
|
|
|
|
auditMarkEnum: [ |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
label: "待审核", |
|
|
|
|
|
|
|
value: 0, |
|
|
|
|
|
|
|
type: "warning", |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
label: "审核通过", |
|
|
|
|
|
|
|
value: 1, |
|
|
|
|
|
|
|
type: "success", |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
label: "审核失败", |
|
|
|
|
|
|
|
value: -1, |
|
|
|
|
|
|
|
type: "danger", |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
|
|
oilCompanyMatch: {}, |
|
|
|
oilCompanyMatch: {}, |
|
|
|
mappingData: [ |
|
|
|
mappingData: [ |
|
|
@ -514,5 +578,8 @@ export default { |
|
|
|
font-size: 12px; |
|
|
|
font-size: 12px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.ft14 { |
|
|
|
|
|
|
|
font-size: 14px; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|