From 4f6275648bb8da724825c0e6c580c83aaa1cb9bf Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期五, 31 十月 2025 15:52:41 +0800
Subject: [PATCH] 营销管理-添加导出功能
---
src/views/salesManagement/receiptPaymentHistory/index.vue | 252 ++++++++++++++++++++++++++++++++++++-------------
1 files changed, 184 insertions(+), 68 deletions(-)
diff --git a/src/views/salesManagement/receiptPaymentHistory/index.vue b/src/views/salesManagement/receiptPaymentHistory/index.vue
index 0fd8eef..589d567 100644
--- a/src/views/salesManagement/receiptPaymentHistory/index.vue
+++ b/src/views/salesManagement/receiptPaymentHistory/index.vue
@@ -1,107 +1,223 @@
<template>
<div class="app-container">
- <div class="search_form">
- <div>
- <span class="search_title">瀹㈡埛鍚嶇О锛�</span>
- <el-input v-model="searchForm.searchText" style="width: 240px" placeholder="杈撳叆瀹㈡埛鍚嶇О鎼滅储"
- @change="handleQuery" clearable :prefix-icon="Search" />
- <el-button type="primary" @click="handleQuery" style="margin-left: 10px">鎼滅储</el-button>
- </div>
- </div>
+ <el-form :model="searchForm" :inline="true">
+ <el-form-item label="瀹㈡埛鍚嶇О">
+ <el-input
+ v-model="searchForm.searchText"
+ placeholder="杈撳叆瀹㈡埛鍚嶇О鎼滅储"
+ @change="handleQuery"
+ clearable
+ :prefix-icon="Search"
+ />
+ </el-form-item>
+ <el-form-item label="瀹㈡埛鍚堝悓鍙�">
+ <el-input
+ v-model="searchForm.customerContractNo"
+ placeholder="杈撳叆瀹㈡埛鍚堝悓鍙�"
+ @change="handleQuery"
+ clearable
+ :prefix-icon="Search"
+ />
+ </el-form-item>
+ <el-form-item label="椤圭洰鍚嶇О">
+ <el-input
+ v-model="searchForm.projectName"
+ placeholder="杈撳叆椤圭洰鍚嶇О"
+ @change="handleQuery"
+ clearable
+ :prefix-icon="Search"
+ />
+ </el-form-item>
+ <el-form-item label="鍥炴鏃ユ湡">
+ <el-date-picker
+ v-model="searchForm.receiptPaymentDate"
+ value-format="YYYY-MM-DD"
+ format="YYYY-MM-DD"
+ type="daterange"
+ start-placeholder="寮�濮嬫椂闂�"
+ end-placeholder="缁撴潫鏃堕棿"
+ clearable
+ style="width: 300px"
+ @change="changeDateRange"
+ @clear="clearRange"
+ />
+ </el-form-item>
+ <el-form-item>
+ <el-button type="primary" @click="handleQuery"> 鎼滅储 </el-button>
+ <el-button @click="handleExport">瀵煎嚭</el-button>
+ </el-form-item>
+ </el-form>
<div class="table_list">
- <PIMTable :column="tableColumn" :tableData="tableData" :page="page" :isSelection="true"
- :handleSelectionChange="handleSelectionChange" :tableLoading="tableLoading" @pagination="pagination"
- :total="total"></PIMTable>
+ <PIMTable
+ rowKey="id"
+ :column="tableColumn"
+ :tableData="tableData"
+ :page="page"
+ :isSelection="true"
+ :isShowSummary="isShowSummarySon"
+ :summaryMethod="summarizeMainTable1"
+ :tableLoading="tableLoading"
+ :total="page.total"
+ @pagination="pagination"
+ @selection-change="handleSelectionChange"
+ ></PIMTable>
</div>
</div>
</template>
<script setup>
-import { ref } from 'vue'
+import { ref, reactive, getCurrentInstance } from "vue";
import { Search } from "@element-plus/icons-vue";
-import {
- receiptPaymentHistoryList
-} from "@/api/salesManagement/receiptPayment.js";
-const { proxy } = getCurrentInstance()
+import { receiptPaymentHistoryListPage } from "@/api/salesManagement/receiptPayment.js";
+import useFormData from "@/hooks/useFormData";
+import dayjs from "dayjs";
+
+const { proxy } = getCurrentInstance();
const tableColumn = ref([
{
- label: '鍥炴鏃ユ湡',
- prop: 'receiptPaymentDate',
+ label: "閿�鍞悎鍚屽彿",
+ prop: "salesContractNo",
+ width:240
},
{
- label: '瀹㈡埛鍚嶇О',
- prop: 'customerName',
+ label: "瀹㈡埛鍚堝悓鍙�",
+ prop: "customerContractNo",
+ width:240
},
{
- label: '鍥炴閲戦',
- prop: 'receiptPaymentAmount',
+ label: "鍥炴鏃ユ湡",
+ prop: "receiptPaymentDate",
+ width:100
},
{
- label: '鍥炴鏂瑰紡',
- prop: 'receiptPaymentType',
- dataType: 'tag',
+ label: "瀹㈡埛鍚嶇О",
+ prop: "customerName",
+ width:240
+ },
+ {
+ label: "椤圭洰鍚嶇О",
+ prop: "projectName",
+ width:200
+ },
+ {
+ label: "鍥炴閲戦锛堝厓锛�",
+ prop: "receiptPaymentAmount",
+ width:200,
+ formatData: (params) => {
+ return params ? parseFloat(params).toFixed(2) : 0;
+ },
+ },
+ {
+ label: "鍥炴鏂瑰紡",
+ prop: "receiptPaymentType",
+ dataType: "tag",
formatData: (params) => {
if (params == 0) {
- return '鐢垫眹';
+ return "鐢垫眹";
} else if (params == 1) {
- return '鎵垮厬';
+ return "鎵垮厬";
} else {
- return null
+ return null;
}
},
formatType: (params) => {
- return "info"
- }
+ return "info";
+ },
},
{
- label: '鐧昏浜�',
- prop: 'registrant'
+ label: "鐧昏浜�",
+ prop: "registrant",
},
{
- label: '鐧昏鏃ユ湡',
- prop: 'createTime'
- }
-])
-const tableData = ref([])
-const selectedRows = ref([])
-const tableLoading = ref(false)
+ label: "鐧昏鏃ユ湡",
+ prop: "createTime",
+ width:100
+ },
+]);
+const tableData = ref([]);
+const selectedRows = ref([]);
+const tableLoading = ref(false);
const page = reactive({
current: 1,
- size: 10,
-})
-const total = ref(0)
-const data = reactive({
- searchForm: {
- searchText: '',
- },
-})
-const { searchForm } = toRefs(data)
-const { receipt_payment_type } = proxy.useDict("receipt_payment_type")
+ size: 100,
+ total: 0,
+});
+const total = ref(0);
+const { form: searchForm } = useFormData({
+ searchText: undefined,
+ receiptPaymentDate: [],
+ receiptPaymentDateStart: undefined,
+ receiptPaymentDateEnd: undefined,
+ customerContractNo: undefined,
+ projectName: undefined,
+});
+const { receipt_payment_type } = proxy.useDict("receipt_payment_type");
+const isShowSummarySon = ref(true);
// 鏌ヨ鍒楄〃
/** 鎼滅储鎸夐挳鎿嶄綔 */
const handleQuery = () => {
- page.current = 1
- getList()
-}
-const pagination = ({ current, limit }) => {
- page.current = current;
- page.size = limit;
- getList()
-}
+ page.current = 1;
+ getList();
+};
+const pagination = (obj) => {
+ page.current = obj.page;
+ page.size = obj.limit;
+ getList();
+};
const getList = () => {
- tableLoading.value = true
- receiptPaymentHistoryList({ ...searchForm.value, ...page }).then(res => {
- tableLoading.value = false
- tableData.value = res.rows
- total.value = res.total
- })
-}
+ tableLoading.value = true;
+ const { receiptPaymentDate, ...rest } = searchForm;
+ receiptPaymentHistoryListPage({ ...rest, ...page }).then((res) => {
+ tableLoading.value = false;
+ tableData.value = res.records;
+ page.total = res.total;
+ });
+};
+// 瀛愯〃鍚堣鏂规硶
+const summarizeMainTable1 = (param) => {
+ return proxy.summarizeTable(param, ["receiptPaymentAmount"], {
+ ticketsNum: { noDecimal: true }, // 涓嶄繚鐣欏皬鏁�
+ futureTickets: { noDecimal: true }, // 涓嶄繚鐣欏皬鏁�
+ });
+};
// 琛ㄦ牸閫夋嫨鏁版嵁
const handleSelectionChange = (selection) => {
- selectedRows.value = selection
-}
-getList()
+ selectedRows.value = selection;
+};
+
+const changeDateRange = (date) => {
+ if (date) {
+ searchForm.receiptPaymentDateStart = dayjs(date[0]).format(
+ "YYYY-MM-DD 00:00:00"
+ );
+ searchForm.receiptPaymentDateEnd = dayjs(date[1]).format(
+ "YYYY-MM-DD 23:59:59"
+ );
+ getList();
+ }
+};
+
+const clearRange = () => {
+ searchForm.receiptPaymentDate = [];
+ searchForm.receiptPaymentDateStart = undefined;
+ searchForm.receiptPaymentDateEnd = undefined;
+ getList();
+};
+
+// 瀵煎嚭
+const handleExport = () => {
+ const { receiptPaymentDate, ...rest } = searchForm;
+ proxy.download("/receiptPayment/exportOne", { ...rest, ...page }, "鍥炴娴佹按.xlsx");
+};
+
+onMounted(() => {
+ getList();
+});
</script>
-<style scoped lang="scss"></style>
+<style scoped lang="scss">
+.table_list {
+ margin-top: unset;
+}
+</style>
--
Gitblit v1.9.3