|
|
|
@ -57,11 +57,11 @@ |
|
|
|
|
<el-button @click="accountTypeHandler(-1)">冻结</el-button> |
|
|
|
|
</div> |
|
|
|
|
<el-table |
|
|
|
|
v-if="tableHeight" |
|
|
|
|
ref="multipleTable" |
|
|
|
|
:height="tableHeight" |
|
|
|
|
:data="tableData" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@selection-change="handleSelectionChange" |
|
|
|
|
> |
|
|
|
|
> |
|
|
|
|
<el-table-column type="selection" width="55" /> |
|
|
|
@ -113,11 +113,6 @@ |
|
|
|
|
label="充值余额" |
|
|
|
|
minWidth="120" |
|
|
|
|
/> |
|
|
|
|
<!-- <el-table-column |
|
|
|
|
prop="chargeRechargeBalance" |
|
|
|
|
label="赊销充值余额" |
|
|
|
|
minWidth="120" |
|
|
|
|
/> --> |
|
|
|
|
<el-table-column |
|
|
|
|
prop="rechargeRebateBalance" |
|
|
|
|
label="充值返利余额" |
|
|
|
@ -128,11 +123,6 @@ |
|
|
|
|
label="消费返利余额" |
|
|
|
|
minWidth="120" |
|
|
|
|
/> |
|
|
|
|
<!-- <el-table-column |
|
|
|
|
prop="totalChargeAmount" |
|
|
|
|
label="赊销待还" |
|
|
|
|
minWidth="120" |
|
|
|
|
/> --> |
|
|
|
|
<el-table-column prop="createTime" label="创建时间" minWidth="200" /> |
|
|
|
|
|
|
|
|
|
<el-table-column fixed="right" label="操作" width="150px"> |
|
|
|
@ -143,7 +133,7 @@ |
|
|
|
|
更多<i class="el-icon-arrow-down el-icon--right" /> |
|
|
|
|
</el-button> |
|
|
|
|
<el-dropdown-menu slot="dropdown"> |
|
|
|
|
<el-dropdown-item @click.native="toRecharge(row.id)"> |
|
|
|
|
<el-dropdown-item @click.native="toRecharge(row)"> |
|
|
|
|
<el-button type="text"> 充值 </el-button> |
|
|
|
|
</el-dropdown-item> |
|
|
|
|
</el-dropdown-menu> |
|
|
|
@ -157,7 +147,6 @@ |
|
|
|
|
<!-- 添加充值 --> |
|
|
|
|
<recharge |
|
|
|
|
:controlWindows="controlWindows" |
|
|
|
|
:oil-company-account="oilCompanyAccount" |
|
|
|
|
@getByPage="getByPage" |
|
|
|
|
@closeWindow="closeDialog" |
|
|
|
|
/> |
|
|
|
@ -258,7 +247,7 @@ export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
accountStatusEnum: accountStatusEnum, |
|
|
|
|
oilCompanyAccount: {}, |
|
|
|
|
// oilCompanyAccount: {}, |
|
|
|
|
controlWindows: { |
|
|
|
|
detail: false, |
|
|
|
|
recharge: false, // 充值弹窗 |
|
|
|
@ -457,25 +446,26 @@ export default { |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
//修改账户状态 |
|
|
|
|
//禁启用 |
|
|
|
|
accountTypeHandler(type) { |
|
|
|
|
//0:禁用 1:启用 -1:冻结 |
|
|
|
|
if (!this.multipleSelection || this.multipleSelection.length < 1) { |
|
|
|
|
this.$message.error("请选择需要操作的数据"); |
|
|
|
|
if (!this.multipleSelection.length) { |
|
|
|
|
this.$message.warning("请选择需要操作的数据"); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.multipleSelection.forEach((item) => { |
|
|
|
|
item.accountState = type; |
|
|
|
|
this.multipleSelection.map((item) => { |
|
|
|
|
return (item.accountState = type); |
|
|
|
|
}); |
|
|
|
|
serve.updateAccountState(this.multipleSelection).then((res) => { |
|
|
|
|
if (res.code === 20000) { |
|
|
|
|
this.$message.success(res.msg); |
|
|
|
|
this.getByPage(); |
|
|
|
|
} |
|
|
|
|
this.getByPage(); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 详情 |
|
|
|
|
detail(row) { |
|
|
|
|
//TODO |
|
|
|
|
serve.get(row.id).then((res) => { |
|
|
|
|
Promise.all([ |
|
|
|
|
//基础信息 |
|
|
|
@ -483,7 +473,7 @@ export default { |
|
|
|
|
// 账户信息 |
|
|
|
|
commonServe.getByCompanyId(res.data.companyId), |
|
|
|
|
// 认证信息 |
|
|
|
|
serve.getByCompanyIdAuth(res.data.companyId), |
|
|
|
|
commonServe.getByCompanyIdAuth(res.data.companyId), |
|
|
|
|
// 财务信息 |
|
|
|
|
commonServe.getByCompanyIdFinance(res.data.companyId), |
|
|
|
|
]).then(([firstRes, secondRes, thirdRes, fourthRes]) => { |
|
|
|
@ -502,12 +492,20 @@ export default { |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
toRecharge(id) { |
|
|
|
|
// 跳转到充值 |
|
|
|
|
serve.get(id).then((res) => { |
|
|
|
|
this.oilCompanyAccount = res.data; |
|
|
|
|
// 充值 |
|
|
|
|
toRecharge(row) { |
|
|
|
|
serve.get(row.id).then((res) => { |
|
|
|
|
this.controlWindows.addInfo = { |
|
|
|
|
id: res.data.companyId, |
|
|
|
|
}; |
|
|
|
|
this.controlWindows.recharge = true; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
return; |
|
|
|
|
// 跳转到充值 |
|
|
|
|
}, |
|
|
|
|
handleSelectionChange(val) { |
|
|
|
|
this.multipleSelection = val; |
|
|
|
|
}, |
|
|
|
|
//重置 |
|
|
|
|
reset() { |
|
|
|
|