油批
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

422 lines
10 KiB

2 years ago
<template>
<div class="bill-details">
<div class="frame">
<!-- 公司名称 -->
2 years ago
<autocomplete
class="mr20"
:params="parameter.params"
:config="configAutocomplete"
/>
<!-- 总公司名称 -->
2 years ago
<autocomplete
class="mr20"
:params="parameter.params"
:config="configAutocompleteSec"
/>
2 years ago
2 years ago
<el-select
v-model="parameter.params.accountState"
placeholder="账户状态"
clearable
>
2 years ago
<el-option
v-for="(item, index) in accountStateEnum"
2 years ago
:key="index"
:label="item.label"
:value="item.value"
/>
</el-select>
2 years ago
<el-select
v-model="parameter.params.companyNature"
placeholder="企业性质"
clearable
>
<el-option
v-for="(item, index) in companyNatureEnum"
:key="index"
:label="item.label"
:value="item.value"
/>
2 years ago
</el-select>
<!-- 业务负责人 -->
2 years ago
<autocomplete
:params="parameter.params"
:config="configAutocompleteBusinessLeader"
/>
2 years ago
<div class="buttons">
<el-button icon="el-icon-search" @click="search">查询</el-button>
<el-button icon="el-icon-refresh" @click="reset">重置</el-button>
</div>
</div>
<div class="table">
<div class="operation">
<el-button @click="accountTypeHandler(0)">禁用</el-button>
<el-button @click="accountTypeHandler(1)">启用</el-button>
<el-button @click="accountTypeHandler(-1)">冻结</el-button>
2 years ago
</div>
<el-table
v-if="tableHeight"
ref="multipleTable"
:height="tableHeight"
:data="tableData"
style="width: 100%"
>
>
2 years ago
<el-table-column type="selection" width="55" />
<el-table-column prop="companyName" label="公司名称" minWidth="300">
2 years ago
<template slot-scope="{ row }">
2 years ago
<span style="padding-left: 8px">{{ row.companyName }}</span>
<br />
<span style="padding-left: 8px"
>业务负责人:{{ row.businessLeader }}</span
>
2 years ago
</template>
</el-table-column>
<el-table-column label="企业性质" minWidth="120">
2 years ago
<template slot-scope="{ row }">
2 years ago
{{
companyNatureEnum.find((item) => item.value === row.companyNature)
.label
}}
2 years ago
</template>
</el-table-column>
2 years ago
<el-table-column
prop="totalBalance"
label="公司企业总余额"
minWidth="120"
/>
<el-table-column label="司机油卡余额" minWidth="130">
2 years ago
<template slot-scope="{ row }">
2 years ago
<span>:{{ row.outCountBalance }}</span>
<br />
<span>:{{ row.inCountBalance }}</span>
2 years ago
</template>
</el-table-column>
2 years ago
<el-table-column prop="balance" label="账户总余额" minWidth="120" />
<el-table-column
prop="rechargeBalance"
label="充值余额"
minWidth="120"
/>
<el-table-column
prop="chargeRechargeBalance"
label="赊销充值余额"
minWidth="120"
/>
<el-table-column
prop="rechargeRebateBalance"
label="充值返利余额"
minWidth="120"
/>
<el-table-column
prop="consumeRebateBalance"
label="消费返利余额"
minWidth="120"
/>
<el-table-column
prop="totalChargeAmount"
label="赊销待还"
minWidth="120"
/>
<el-table-column prop="createTime" label="创建时间" minWidth="200" />
2 years ago
<el-table-column fixed="right" label="操作" width="150px">
2 years ago
<template slot-scope="{ row }">
<span class="el-dropdown-link" @click="detail(row)">详情</span>
<el-dropdown>
<el-button type="text">
2 years ago
更多<i class="el-icon-arrow-down el-icon--right" />
</el-button>
<el-dropdown-menu slot="dropdown">
2 years ago
<el-dropdown-item @click.native="toRecharge(row.id)">
<el-button :size="$store.getters.size" type="text">
<svg-icon icon-class="iconicon-" />
充值
</el-button>
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
2 years ago
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
2 years ago
<pagination :parameter="parameter" @searchAgain="getByPage" />
2 years ago
</div>
<!-- 添加充值 -->
<recharge :controlWindows="controlWindows" @closeWindow="closeDialog" />
2 years ago
</div>
</template>
<script>
2 years ago
import serve from "api/financialCenter/accountManagement.js";
import commonServe from "api/common.js";
2 years ago
2 years ago
import recharge from "./components/recharge.vue";
import autocomplete from "components/autocomplete/index.vue";
import pagination from "components/pagination/index.vue";
import generalDetails from "components/generalDetails/index.vue";
2 years ago
export default {
components: {
recharge,
pagination,
autocomplete,
generalDetails,
},
data() {
return {
oilCompanyAccount: {},
controlWindows: {
detail: false,
recharge: false, // 充值弹窗
},
tableDataSec: [],
tableHeight: 0,
tableData: [],
multipleSelection: [], // 选择表格数据集合
configAutocomplete: {
serveTarget: commonServe.getRefineryCompanyList,
autocompleteKey: "name",
labelKey: "name",
valueKey: "id",
placeholder: "企业名称",
querykey: "companyId",
},
configAutocompleteSec: {
serveTarget: commonServe.getRefineryCompanyList,
autocompleteKey: "name",
labelKey: "name",
valueKey: "id",
placeholder: "总公司名称",
querykey: "name",
},
configAutocompleteBusinessLeader: {
serveTarget: commonServe.liekQuery,
autocompleteKey: "",
labelKey: "nickName",
valueKey: "id",
placeholder: "业务负责人",
querykey: "businessLeader",
},
parameter: {
currentPage: 1,
pageSize: 10,
total: 0,
params: {},
},
accountStateEnum: [
{
label: "禁用",
value: 0,
2 years ago
},
2 years ago
{
label: "启用",
value: 1,
2 years ago
},
2 years ago
{
label: "冻结",
value: -1,
2 years ago
},
2 years ago
],
companyNatureEnum: [
{
label: "零售客户",
value: 0,
2 years ago
},
2 years ago
{
label: "外请客户",
value: 1,
2 years ago
},
2 years ago
{
label: "渠道客户",
value: 2,
},
{
label: "存量客户",
value: 3,
},
{
label: "批发客户",
value: 4,
},
{
label: "LNG客户",
value: 5,
},
{
label: "推广业务",
value: 6,
},
],
};
},
created() {
this.getByPage();
},
updated() {
this.$nextTick(() => {
this.$refs.multipleTable && this.$refs.multipleTable.doLayout();
});
},
mounted() {
this.$nextTick(() => {
this.heightHandle();
});
window.addEventListener(
"resize",
this.$utils.debounce(this.heightHandle, 500)
);
},
methods: {
search() {
this.parameter.currentPage = 1;
this.getByPage();
},
//table list
getByPage() {
serve.getByPage(this.parameter).then((res) => {
this.tableData = res.data.list;
this.parameter.total = res.data.totalCount;
});
},
//修改账户状态
accountTypeHandler(type) {
//0:禁用 1:启用 -1:冻结
if (!this.multipleSelection || this.multipleSelection.length < 1) {
this.$message.error("请选择需要操作的数据");
return;
}
2 years ago
this.multipleSelection.forEach((item) => {
item.accountState = type;
});
serve.updateAccountState(this.multipleSelection).then((res) => {
if (res.code === 20000) {
this.$message.success(res.msg);
}
this.getByPage();
});
2 years ago
},
2 years ago
detail(row) {
//TODO
2 years ago
},
2 years ago
toRecharge(id) {
// 跳转到充值
serve.get(id).then((res) => {
this.oilCompanyAccount = res.data;
this.controlWindows.recharge = true;
});
2 years ago
},
2 years ago
//重置
reset() {
this.parameter = {
currentPage: 1,
pageSize: 10,
total: 0,
params: {},
};
2 years ago
},
2 years ago
closeDialog() {
this.controlWindows.recharge = false;
},
// table height
heightHandle() {
let bodyHeight = document.body.clientHeight;
let frameHeight = this.obtainElement(".frame").clientHeight;
let operationHeight = this.obtainElement(".operation").clientHeight;
let paginationHeight = this.obtainElement(".el-pagination").clientHeight;
this.tableHeight =
bodyHeight - frameHeight - operationHeight - paginationHeight - 145;
},
obtainElement(className) {
return document.documentElement.querySelector(className);
},
},
};
2 years ago
</script>
<style lang="scss" scoped>
2 years ago
.bill-details {
.frame {
margin: 20px;
padding: 20px;
border-radius: 6px;
border: 1px solid #e3e3e5;
background: #fff;
2 years ago
2 years ago
.el-input,
.el-select {
width: 183px;
height: 40px;
}
2 years ago
.el-autocomplete + .el-input,
.el-input + .el-autocomplete,
.el-autocomplete + .el-select,
.el-input + .el-input,
.el-input + .el-select,
.el-select + .el-select,
.el-select + .el-input {
margin-right: 20px;
margin-bottom: 15px;
}
2 years ago
.mr20 {
margin-right: 20px;
2 years ago
}
2 years ago
.buttons {
text-align: right;
}
}
2 years ago
.table {
overflow: hidden;
margin: 0 20px;
padding-bottom: 20px;
background: #fff;
border-radius: 6px;
border: 1px solid #e3e3e5;
2 years ago
> .operation {
box-sizing: content-box;
padding: 15px;
}
2 years ago
.gray {
color: #999;
2 years ago
span {
color: #333;
}
2 years ago
}
2 years ago
.el-table {
margin-bottom: 20px;
border-radius: 10px 10px 0px 0px;
}
2 years ago
.el-dropdown-link {
margin-right: 10px;
cursor: pointer;
color: #409eff;
2 years ago
&.special {
margin-right: 0;
2 years ago
}
}
2 years ago
.el-icon-arrow-down {
font-size: 12px;
2 years ago
}
}
2 years ago
.ft14 {
font-size: 14px;
}
}
2 years ago
</style>