123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <template>
- <div class="page-container list-container">
- <!-- 功能按钮区 -->
- <div class="list-btns-container">
- <el-dropdown>
- <el-button type="primary" size="small">
- 其它<el-icon class="el-icon--right"><arrow-down /></el-icon>
- </el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item
- icon="Download"
- @click="handleExport"
- v-hasPermi="['business:collection:export']"
- >
- 导出</el-dropdown-item
- >
- <el-dropdown-item
- icon="Upload"
- @click="handleImport"
- v-hasPermi="['business:collection:import']"
- >导入</el-dropdown-item
- >
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- <!-- 搜索区 -->
- <el-form
- class="list-search-container"
- size="small"
- :model="queryParams"
- ref="queryRef"
- :inline="true"
- label-width="68px"
- >
- <el-form-item label="客户名称:" prop="companyName">
- <el-input
- v-model="queryParams.companyName"
- style="width: 150px"
- placeholder="请输入客户名称"
- clearable
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="Search" @click="handleQuery"
- >搜索</el-button
- >
- <el-button icon="Refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <!-- 列表区 -->
- <!--
- :summary-method="getSummaries" -->
- <el-table
- v-loading="loading"
- :data="orderList"
- size="small"
- show-summary
- :summary-method="getSummaries"
- border
- height="100%"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column
- v-if="getShowStatus(2)"
- label="客户"
- prop="companyName"
- min-width="250"
- align="center"
- />
- <el-table-column
- v-if="getShowStatus(3)"
- label="合同编号"
- prop="contractNo"
- min-width="150"
- align="center"
- />
- <el-table-column
- v-if="getShowStatus(4)"
- label="收款日期"
- prop="arriveDate"
- width="100"
- align="center"
- />
- <el-table-column
- v-if="getShowStatus(5)"
- label="收款时间"
- prop="paymentCause"
- align="center"
- />
- <!-- <el-table-column label="支出科目" prop="paymentSubject" align="center" /> -->
- <el-table-column
- v-if="getShowStatus(8)"
- width="80"
- label="收款金额"
- prop="amount"
- header-align="center"
- align="right"
- >
- <template #default="scope">
- <span>{{ scope.row.amount.toFixed(2) }}</span>
- </template>
- </el-table-column>
- <el-table-column
- v-if="getShowStatus(9)"
- label="申请人"
- prop="applierName"
- min-width="100"
- align="center"
- />
- <el-table-column
- v-if="getShowStatus(11)"
- label="审核状态"
- prop="status"
- min-width="90"
- align="center"
- >
- <template #header>
- <!-- <el-badge v-if="unVerifiedNum > 0 && verifiable" is-dot>审核状态</el-badge> -->
- <div>审核状态</div>
- </template>
- <template #default="scope">
- <span v-if="scope.row.status === 0" style="color: #cd853f"
- >未审核</span
- >
- <span v-else-if="scope.row.status === 1" style="color: #32cd32"
- >审核通过</span
- >
- <span v-else-if="scope.row.status === 2" style="color: #dc143c"
- >审核不通过</span
- >
- </template>
- </el-table-column>
- <el-table-column
- v-if="getShowStatus(12)"
- label="支付状态"
- min-width="90"
- prop="arriveStatus"
- align="center"
- >
- <template #default="scope">
- <span v-if="scope.row.arriveStatus === 0" style="color: #dc143c"
- >未支付</span
- >
- <span v-else-if="scope.row.arriveStatus === 1" style="color: #32cd32"
- >已支付</span
- >
- <span v-else-if="scope.row.arriveStatus === 2" style="color: #cd853f"
- >部分支付</span
- >
- </template>
- </el-table-column>
- <el-table-column
- v-if="getShowStatus(14)"
- label="确认到账时间"
- prop="actuallyDate"
- align="center"
- >
- <template #default="scope">
- {{ scope.row.actuallyDate }}
- </template>
- </el-table-column>
- <el-table-column
- v-if="getShowStatus(13)"
- label="备注"
- prop="remark"
- align="center"
- min-width="100"
- />
- <el-table-column label="操作" width="80" align="center">
- <template #default="scope">
- <el-button
- type="primary"
- size="small"
- link
- @click="handleView(scope.row.id)"
- >查看</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <contract-form ref="contractRef" :get-list="getList" />
- <import-excel-dialog ref="importExcelDialogRef" :get-list="getList" />
- <pagination
- v-show="total > 0"
- :total="total"
- v-model:page="queryParams.pageNum"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- />
- </div>
- </template>
- <script setup name="Company">
- import contractForm from "./form";
- import { listCollection } from "@/api/business/financial/collection";
- import importExcelDialog from "./importExcelDialog.vue";
- const { proxy } = getCurrentInstance();
- /** 字典数组区 */
- /** 查询 对象 */
- const orderList = ref([]);
- const loading = ref(true);
- const ids = ref([]);
- const single = ref(true);
- const multiple = ref(true);
- const total = ref(0);
- const showRows = ref([2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13]);
- const importExcelDialogRef = ref(null);
- const rows = ref([
- {
- key: 2,
- label: "客户名称",
- },
- {
- key: 3,
- label: "合同编号",
- },
- {
- key: 4,
- label: "收款日期",
- },
- {
- key: 5,
- label: "收款时间",
- },
- {
- key: 9,
- label: "申请人",
- },
- {
- key: 11,
- label: "审核状态",
- },
- {
- key: 12,
- label: "支付状态",
- },
- {
- key: 14,
- label: "确认到账时间",
- },
- {
- key: 13,
- label: "备注",
- },
- ]);
- const { contract_verify_status } = proxy.useDict("contract_verify_status");
- const { contract_status } = proxy.useDict("contract_status");
- /** 查询对象 */
- const queryParams = ref({
- pageNum: 1,
- orderByColumn: "create_time",
- pageSize: 10,
- });
- /*********************** 方法区 ****************************/
- /** 查询company列表 */
- function getList() {
- loading.value = true;
- listCollection(queryParams.value).then((response) => {
- orderList.value = response.rows;
- total.value = response.total;
- loading.value = false;
- });
- }
- function getSummaries(param) {
- // console.log("计算", param);
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (column.label != "收款金额") {
- return;
- }
- const values = [];
- data.map((item) => {
- if (item.arriveStatus == 1) {
- console.log(item);
- if (item.paymentAmount) {
- values.push(item.paymentAmount);
- }
- }
- });
- if (!values.every((value) => Number.isNaN(value))) {
- sums[index] = ` ${values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!Number.isNaN(value)) {
- return Number(Number(prev) + value).toFixed(2);
- } else {
- return Number(prev).toFixed(2);
- }
- }, 0)}`;
- }
- });
- return sums;
- }
- /** 搜索按钮操作 */
- function handleQuery() {
- queryParams.value.pageNum = 1;
- getList();
- }
- /** 重置按钮操作 */
- function resetQuery() {
- // proxy.resetForm("queryRef");
- queryParams.value = {
- pageNum: 1,
- pageSize: 10,
- nonpayment: true,
- };
- handleQuery();
- }
- // 多选框选中数据
- function handleSelectionChange(selection) {
- ids.value = selection.map((item) => item.id);
- single.value = selection.length != 1;
- multiple.value = !selection.length;
- }
- /** 新增按钮操作 */
- function handleView(id) {
- proxy.$refs.contractRef.open(id);
- }
- /** 删除按钮操作 */
- function handleDelete(row) {
- const _ids = row.id || ids.value;
- proxy.$modal
- .confirm("是否确认删除选中的数据项?")
- .then(function () {
- return delOrder(_ids);
- })
- .then(() => {
- getList();
- proxy.$modal.msgSuccess("删除成功!");
- })
- .catch(() => {});
- }
- function handleAlter(row) {
- const id = row.id || ids.value;
- proxy.$refs.contractRef.openSimple(id, "alterOrder");
- }
- function handleDissolution() {
- const row = orderList.value.find((item) => item.id === ids.value[0]);
- proxy.$modal
- .confirm("是否确认解除合同?")
- .then(function () {
- return dissolutionOrder(row);
- })
- .then(() => {
- getList();
- proxy.$modal.msgSuccess("删除成功!");
- })
- .catch(() => {});
- }
- /** 导出按钮操作 */
- function handleExport() {
- exportOrder(queryParams.value);
- }
- function handleImport() {
- importExcelDialogRef.value.open();
- }
- function getShowStatus(key) {
- const index = showRows.value.findIndex((l) => l === key);
- return index >= 0;
- }
- getList();
- </script>
|