更新
This commit is contained in:
@@ -188,6 +188,51 @@
|
||||
:mappingData="mappingData"
|
||||
@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>
|
||||
<el-image
|
||||
style="width: 100px; height: 100px"
|
||||
@@ -211,6 +256,7 @@ import {
|
||||
rechargeTypeEnum,
|
||||
rechargeStatusEnum,
|
||||
repaymentExamineEnum,
|
||||
accountStatusEnum,
|
||||
} from "utils/dataType.js";
|
||||
|
||||
export default {
|
||||
@@ -224,6 +270,7 @@ export default {
|
||||
rechargeTypeEnum: rechargeTypeEnum,
|
||||
rechargeStatusEnum: rechargeStatusEnum,
|
||||
repaymentExamineEnum: repaymentExamineEnum,
|
||||
accountStatusEnum: accountStatusEnum,
|
||||
controlWindows: {
|
||||
detail: false,
|
||||
},
|
||||
@@ -271,6 +318,23 @@ export default {
|
||||
value: 4,
|
||||
},
|
||||
],
|
||||
auditMarkEnum: [
|
||||
{
|
||||
label: "待审核",
|
||||
value: 0,
|
||||
type: "warning",
|
||||
},
|
||||
{
|
||||
label: "审核通过",
|
||||
value: 1,
|
||||
type: "success",
|
||||
},
|
||||
{
|
||||
label: "审核失败",
|
||||
value: -1,
|
||||
type: "danger",
|
||||
},
|
||||
],
|
||||
|
||||
oilCompanyMatch: {},
|
||||
mappingData: [
|
||||
@@ -514,5 +578,8 @@ export default {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
.ft14 {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user