mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-06-21 09:30:24 +08:00
200 lines
6.1 KiB
Vue
200 lines
6.1 KiB
Vue
<template>
|
|
<div class="search">
|
|
<el-card>
|
|
<el-form ref="searchForm" :model="searchForm" inline label-width="70px" class="search-form" @keyup.enter="handleSearch">
|
|
<el-form-item label="账单编号" prop="sn">
|
|
<el-input v-model="searchForm.sn" placeholder="请输入账单编号" clearable style="width: 240px" />
|
|
</el-form-item>
|
|
<el-form-item label="出帐时间" prop="createTime">
|
|
<el-date-picker
|
|
v-model="selectDate"
|
|
type="daterange"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
clearable
|
|
start-placeholder="开始时间"
|
|
end-placeholder="结束时间"
|
|
style="width: 240px"
|
|
@change="selectDateRange"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" class="search-btn" @click="handleSearch">搜索</el-button>
|
|
<el-button class="search-btn" @click="handleExportList">导出列表</el-button>
|
|
<el-button class="search-btn" :disabled="selectCount === 0" @click="handleBatchDownload">批量下载</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table
|
|
ref="table"
|
|
v-loading="loading"
|
|
border
|
|
:data="data"
|
|
class="mt_10"
|
|
style="width: 100%"
|
|
@selection-change="changeSelect"
|
|
>
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column prop="sn" label="账单号" min-width="200" show-overflow-tooltip />
|
|
<el-table-column prop="createTime" label="生成时间" width="120" />
|
|
<el-table-column label="结算时间段" width="200">
|
|
<template #default="{ row }">
|
|
<span v-if="row">{{ row.startTime }}~{{ row.endTime }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="storeName" label="店铺名称" min-width="120" show-overflow-tooltip />
|
|
<el-table-column label="结算金额" width="130">
|
|
<template #default="{ row }">
|
|
<priceColorScheme v-if="row" :value="row.billPrice" :color="$mainColor" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="状态" width="100">
|
|
<template #default="{ row }">
|
|
<el-tag v-if="row" :type="billStatusTagType(row.billStatus)">{{ billStatusText(row.billStatus) }}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="120" align="center" fixed="right">
|
|
<template #default="{ row }">
|
|
<a v-if="row" class="link-text" @click="detail(row)">详细</a>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<div class="mt_10" style="display: flex; justify-content: flex-end">
|
|
<el-pagination
|
|
v-model:current-page="searchForm.pageNumber"
|
|
v-model:page-size="searchForm.pageSize"
|
|
:page-sizes="[20, 50, 100]"
|
|
:total="total"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
size="small"
|
|
@current-change="changePage"
|
|
@size-change="changePageSize"
|
|
/>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import * as API_Shop from "@/api/shops";
|
|
import * as API_Finance from "@/api/finance";
|
|
import { downloadBlob } from "@/utils/downloadBlob";
|
|
|
|
export default {
|
|
name: "bill",
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
searchForm: {
|
|
pageNumber: 1,
|
|
pageSize: 20,
|
|
sort: "createTime",
|
|
order: "desc",
|
|
startDate: "",
|
|
endDate: "",
|
|
},
|
|
selectDate: null,
|
|
selectList: [],
|
|
selectCount: 0,
|
|
data: [],
|
|
total: 0,
|
|
};
|
|
},
|
|
methods: {
|
|
billStatusText(v) {
|
|
const map = { OUT: "已出账", CHECK: "已对账", COMPLETE: "已付款" };
|
|
return map[v] || "已付款";
|
|
},
|
|
billStatusTagType(v) {
|
|
const map = { OUT: "primary", CHECK: "warning", COMPLETE: "success" };
|
|
return map[v] || "success";
|
|
},
|
|
init() {
|
|
this.getDataList();
|
|
},
|
|
changePage(v) {
|
|
this.searchForm.pageNumber = v;
|
|
this.getDataList();
|
|
this.clearSelectAll();
|
|
},
|
|
changePageSize(v) {
|
|
this.searchForm.pageNumber = 1;
|
|
this.searchForm.pageSize = v;
|
|
this.getDataList();
|
|
},
|
|
handleSearch() {
|
|
this.searchForm.pageNumber = 1;
|
|
this.getDataList();
|
|
},
|
|
clearSelectAll() {
|
|
this.$refs.table?.clearSelection();
|
|
},
|
|
changeSelect(e) {
|
|
this.selectList = e;
|
|
this.selectCount = e.length;
|
|
},
|
|
selectDateRange(v) {
|
|
if (v && v.length === 2) {
|
|
this.searchForm.startDate = v[0];
|
|
this.searchForm.endDate = v[1];
|
|
} else {
|
|
this.searchForm.startDate = "";
|
|
this.searchForm.endDate = "";
|
|
}
|
|
},
|
|
getDataList() {
|
|
this.loading = true;
|
|
if (this.searchForm.startTime) {
|
|
this.searchForm.startTime = this.$filters.unixToDate(this.searchForm.startTime / 1000);
|
|
}
|
|
if (this.searchForm.endTime) {
|
|
this.searchForm.endTime = this.$filters.unixToDate(this.searchForm.endTime / 1000);
|
|
}
|
|
this.searchForm.billStatus = "CHECK";
|
|
API_Shop.getBuyBillPage(this.searchForm).then((res) => {
|
|
this.loading = false;
|
|
if (res.success) {
|
|
this.data = res.result.records;
|
|
this.total = res.result.total;
|
|
}
|
|
});
|
|
},
|
|
detail(v) {
|
|
this.$router.push({
|
|
name: "bill-detail",
|
|
query: { id: v.id },
|
|
});
|
|
},
|
|
handleExportList() {
|
|
const params = { ...this.searchForm };
|
|
delete params.billStatus;
|
|
API_Finance.exportBillList(params).then((blob) => {
|
|
downloadBlob(blob, "结算单列表.xlsx");
|
|
});
|
|
},
|
|
handleBatchDownload() {
|
|
if (this.selectCount <= 0) {
|
|
this.$Message.warning("请先选择结算单");
|
|
return;
|
|
}
|
|
const billIds = this.selectList.map((item) => item.id);
|
|
API_Finance.batchDownloadBills(billIds).then((blob) => {
|
|
downloadBlob(blob, "结算单批量下载.zip");
|
|
});
|
|
},
|
|
},
|
|
mounted() {
|
|
this.init();
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.link-text {
|
|
color: #2d8cf0;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|