This commit is contained in:
xiaozhiyong
2023-02-21 16:24:12 +08:00
parent fac8b4971e
commit 0546d42422
21 changed files with 982 additions and 719 deletions

View File

@@ -178,7 +178,7 @@
direction="ltr"
size="60%"
:withHeader="false"
:visible="controlWindows.detail"
:visible.sync="controlWindows.detail"
>
<general-details
title="详情"
@@ -252,24 +252,7 @@ export default {
total: 0,
params: {},
},
// rechargeTypeEnum: [
// {
// label: "充值",
// value: "RECHARGE",
// },
// {
// label: "销账",
// value: "REVOKE",
// },
// {
// label: "赊销",
// value: "CHARGE_SALES",
// },
// {
// label: "消费返利",
// value: "CONSUME_REBATE",
// },
// ],
LoopBackTypeEnum: [
{
label: "充值圈回",
@@ -289,38 +272,6 @@ export default {
},
],
// rechargeStatusEnum: [
// {
// label: "已申请",
// value: 0,
// },
// {
// label: "已成功",
// value: 1,
// },
// {
// label: "已撤销",
// value: -1,
// },
// ],
// repaymentExamineEnum: [
// {
// label: "还款待审核",
// value: 0,
// },
// {
// label: "还款成功",
// value: 1,
// },
// {
// label: "还款失败",
// value: -1,
// },
// {
// label: "待还款",
// value: -2,
// },
// ],
oilCompanyMatch: {},
mappingData: [
{
@@ -412,7 +363,7 @@ export default {
detail(row) {
Promise.all([
serve.get(row.id),
serve.getByCompanyId(row.companyId),
commonServe.getByCompanyId(row.companyId),
]).then(([firstRes, secondRes]) => {
this.oilCompanyMatch = { ...firstRes.data, ...secondRes.data };