同步6/16
This commit is contained in:
@@ -1,316 +1,617 @@
|
||||
<template>
|
||||
<div class="p-2 h-full flex flex-col">
|
||||
<Pageheader title="收银台管理"></Pageheader>
|
||||
<div class="" v-if="isSearch">
|
||||
<p class="actionsmain">
|
||||
功能说明:可根据住户姓名、房屋号、手机号,快速搜索对应的未缴费用,修改未缴费用的优惠及滞纳金金额,完成对未缴费用的收取。
|
||||
</p>
|
||||
<div class="contanier flex-center">
|
||||
<div class="h-full flex-1 flex flex-items-start">
|
||||
<div class="typebox">
|
||||
<el-select v-model="searchType" @change="handleChangeSearchType">
|
||||
<el-option v-for="(item, index) in com_cashier_type" :key="index" :label="item.label" :value="item.value"></el-option>
|
||||
</el-select>
|
||||
<PageHeader></PageHeader>
|
||||
<div class="mb-[10px]">
|
||||
<el-card shadow="hover">
|
||||
<el-form ref="queryFormRef" :model="queryParams" @submit.prevent="handleQuery" :inline="true">
|
||||
<div>
|
||||
<el-form-item label="小区" prop="villageId">
|
||||
<el-select @change="handleChangeVillage" v-model="queryParams.villageId" placeholder="请选择小区">
|
||||
<el-option v-for="(item, index) in villageList" :key="index" :value="item.villageId" :label="item.villageName"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="楼栋" prop="buildingId">
|
||||
<el-select @change="handleChangeBuilding" v-model="queryParams.buildingId" placeholder="请选择楼栋">
|
||||
<el-option v-for="(item, index) in buildingList" :key="index" :value="item.id" :label="item.buildingName"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="单元" prop="unitNoId">
|
||||
<el-select @change="handleChangeUnit" v-model="queryParams.unitNoId" placeholder="请选择单元">
|
||||
<el-option v-for="(item, index) in unitList" :key="index" :value="item.unitNoId" :label="item.unitNoName"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item @change="handleChangeHouseNo" label="房号" prop="houseId">
|
||||
<el-select v-model="queryParams.houseId" placeholder="请选择收费项目">
|
||||
<el-option-group v-for="group in houseList" :key="group.floorNo" :label="String(group.floorNo) + ' 楼'">
|
||||
<el-option v-for="item in group.houses" :key="item.houseId" :label="item.houseNo" :value="item.houseId" />
|
||||
</el-option-group>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</div>
|
||||
<div class="searchBox">
|
||||
<el-input clearable v-model="searchValue" @keyup.enter="getlist">
|
||||
<template #suffix>
|
||||
<el-icon @click="getlist" class="cursor-pointer">
|
||||
<Search></Search>
|
||||
</el-icon>
|
||||
</template>
|
||||
</el-input>
|
||||
|
||||
<div class="listbox" v-if="onceSearch || Searching">
|
||||
<div class="list_item">
|
||||
<div class="title">
|
||||
<DictTag :options="com_cashier_type" :value="LazysearchType"></DictTag>
|
||||
</div>
|
||||
<div class="list_body" v-loading="Searching" v-if="list.length > 0 || Searching">
|
||||
<div class="list_value" @click="searchclick(item)" v-for="(item, index) in list" :key="index">
|
||||
{{ item.houseName }}-{{ item.residentName }}-{{ item.phone }}
|
||||
</div>
|
||||
</div>
|
||||
<div v-else class="flex h-full items-center justify-center">
|
||||
<span class="noData">暂无数据</span>
|
||||
</div>
|
||||
<div>
|
||||
<el-form-item label="收费项目" prop="itemId">
|
||||
<el-select v-model="queryParams.chargeItemId" placeholder="请选择收费项目">
|
||||
<el-option v-for="(item, index) in chargeItems" :key="index" :value="item.id" :label="item.itemName"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="缴费周期" prop="period">
|
||||
<el-select v-model="queryParams.period" placeholder="请选择收费项目">
|
||||
<el-option v-for="(item, index) in com_bill_charge_period" :key="index" :value="item.value" :label="item.label"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="业主姓名" prop="residentName">
|
||||
<el-input v-model.trim="queryParams.residentName"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<div style="text-align: right">
|
||||
<el-button type="primary" @click="handleQuery">搜索</el-button>
|
||||
<el-button @click="resetQuery">重置</el-button>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</div>
|
||||
</el-form>
|
||||
</el-card>
|
||||
</div>
|
||||
<div class="actionsBox">
|
||||
<div class="tabs-box">
|
||||
<div
|
||||
class="tabs-items"
|
||||
v-for="(item, index) in tabs"
|
||||
:key="index"
|
||||
:class="{
|
||||
active: activeTabs === item.value
|
||||
}"
|
||||
@click="changeTabs(item.value)"
|
||||
>
|
||||
{{ item.type }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="actions">
|
||||
<el-button @click="handleIncome(false)">收费</el-button>
|
||||
<el-button @click="printPIaoJuByOnly(false)">打印票据</el-button>
|
||||
</div>
|
||||
</div>
|
||||
<el-card class="flex-1" shadow="never">
|
||||
<el-table v-loading="loading" border :data="tableData" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="收费项目" align="center" prop="billCode">
|
||||
<template #default="scope">
|
||||
{{ scope.row.chargeItemName }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="收费名称" align="center" prop="detailsName">
|
||||
<template #default="scope">
|
||||
<div style="text-align: left">
|
||||
<span>{{ scope.row.detailsName }}</span>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="收费周期" width="80" align="center" prop="chargePeriod">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="com_bill_charge_period" :value="scope.row.chargePeriod"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="单价" width="100" align="center" prop="fixedPrice">
|
||||
<template #default="scope">
|
||||
<div class="flex justify-center">
|
||||
<span>
|
||||
{{ scope.row.fixedPrice }}
|
||||
</span>
|
||||
<span> / </span>
|
||||
<dict-tag :options="com_charge_item_unit" :value="scope.row.chargePeriod"></dict-tag>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="应收金额" width="100" align="center" prop="amount" />
|
||||
<el-table-column label="缴费状态" width="80" align="center" prop="payStatus">
|
||||
<template #default="scope">
|
||||
<DictTag :options="com_pay_status" :value="scope.row.payStatus"></DictTag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="应缴金额" width="100" align="center" prop="amount" />
|
||||
<el-table-column label="实缴金额" width="100" align="center" prop="amount" />
|
||||
<el-table-column label="缴费人" align="center" prop="residentName" />
|
||||
<el-table-column label="缴费时间" align="center" prop="" />
|
||||
<el-table-column label="操作" width="220" align="center" fixed="right" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" v-if="scope.row.payStatus === '0'" @click="handleIncome(scope.row)" v-hasPermi="['bill:bill:edit']"
|
||||
>收费</el-button
|
||||
>
|
||||
<el-button link type="primary" v-if="scope.row.payStatus === '1'" @click="printPIaoJuByOnly(scope.row)" v-hasPermi="['bill:bill:query']"
|
||||
>打印票据</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||
</el-card>
|
||||
|
||||
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
||||
<div class="payInfo">
|
||||
<div>
|
||||
<div>缴费人: {{ inComeFrom.residentName }}</div>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<span>收费名称: </span>
|
||||
<div>
|
||||
<div v-for="(item, index) in inComeFrom.billResidentId" :key="index" style="text-wrap: wrap; margin-bottom: 5px">
|
||||
<span style="text-decoration: underline">{{ item.detailsName }} ;</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<span>应收合计:¥{{ inComeFrom.allCost }}</span>
|
||||
</div>
|
||||
<div>
|
||||
<span>应缴合计:¥{{ inComeFrom.allCost }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<el-form ref="formRef" :model="inComeFrom" label-width="100px">
|
||||
<el-form-item label="费用合计" prop="allCost">
|
||||
<el-input v-model="inComeFrom.allCost" disabled>
|
||||
<template #suffix>
|
||||
<span>元</span>
|
||||
</template>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="缴纳状态" prop="payStatus">
|
||||
<el-radio-group v-model="inComeFrom.payStatus">
|
||||
<el-radio v-for="dict in com_pay_status" :key="dict.value" :label="dict.label" :value="dict.value"></el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="支付方式" prop="payType">
|
||||
<el-select v-model="inComeFrom.payType" placeholder="请选择">
|
||||
<el-option v-for="dict in com_pay_method" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input type="textarea" :rows="5" v-model="inComeFrom.remark"></el-input>
|
||||
</el-form-item>
|
||||
<div class="flex justify-end">
|
||||
<el-button @click="closer">取消</el-button>
|
||||
<el-button @click="submitForm" :loading="buttonLoading" type="primary">提交</el-button>
|
||||
</div>
|
||||
</el-form>
|
||||
</el-dialog>
|
||||
<el-dialog :title="dialog_print.title" v-model="dialog_print.visible" width="1200px" append-to-body>
|
||||
<template #header>
|
||||
<div class="flex" style="justify-content: space-between; padding: 0 20px">
|
||||
<div class="title">票据打印</div>
|
||||
<el-button type="primary" :loading="isLoading" @click="conFimPrint">打印</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div class="printBox" id="printBox-Bill">
|
||||
<div class="title">{{ print_form.title }}</div>
|
||||
<div class="nav gridBox">
|
||||
<div>单据日期:{{ print_form.printDate }}</div>
|
||||
<div>房号:{{ print_form.HouseName }}</div>
|
||||
<div>产权人:{{ print_form.residentName }}</div>
|
||||
<div>No.</div>
|
||||
</div>
|
||||
<div class="tableBox">
|
||||
<table class="printTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>收费项目</th>
|
||||
<th>收费标准</th>
|
||||
<th>账单时间</th>
|
||||
<th>面积</th>
|
||||
<th style="width: 80px">应收金额</th>
|
||||
<th style="width: 80px">实收金额</th>
|
||||
<th>收款方式</th>
|
||||
<th style="width: 80px">备注</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(item, index) in print_form.detailsList" :key="index">
|
||||
<td>{{ item.chargeItemName }}</td>
|
||||
<td>{{ item.billName }}</td>
|
||||
<td>{{ item.detailsTime }}</td>
|
||||
<td>{{ item.useCount }}</td>
|
||||
<td style="width: 80px">{{ item.account }}</td>
|
||||
<td style="width: 80px">{{ item.account }}</td>
|
||||
<td>{{ item.payType }}</td>
|
||||
<td style="width: 80px">{{ item.remark }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>合计</td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td style="width: 80px">{{ print_form.totalAccount }}</td>
|
||||
<td style="width: 80px">{{ print_form.totalAccount }}</td>
|
||||
<td style="width: 80px"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p style="font-size: 10px">说明:本收据收款单位和收款具签章方为有效,本收据手写无效</p>
|
||||
<div class="flex flex-items-center" style="font-size: 12px">
|
||||
<div class="flex-1">交款人:</div>
|
||||
<div class="flex-1 flex flex-items-center">
|
||||
<span style="white-space: nowrap">收款人: </span>
|
||||
<el-input v-model="inHomelyUse" v-if="!isPrint" placeholder="请输入收款人姓名" style="width: 150px"></el-input>
|
||||
<span style="white-space: nowrap" v-else> {{ inHomelyUse }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else style="margin-top: 20px; height: calc(100% - 210px)">
|
||||
<div class="tabsbox">
|
||||
<div
|
||||
@click="handleChecout(item.value)"
|
||||
v-for="(item, index) in tabs"
|
||||
:key="index"
|
||||
class="tabs_item"
|
||||
:class="{ active: checkouttabs === item.value }"
|
||||
>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="h-full">
|
||||
<cashier :query="checkeditem" @Back="handleBack" v-if="checkouttabs === 'cashier'"></cashier>
|
||||
<history :query="checkeditem" v-if="checkouttabs === 'history'"></history>
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// TODO 预存
|
||||
import { Search } from '@element-plus/icons-vue';
|
||||
import { Component, ref } from 'vue';
|
||||
|
||||
import cashier from './cashier.vue';
|
||||
import history from './history.vue';
|
||||
import { cashQuery } from '@/api/system/SdbCashier';
|
||||
|
||||
/** 当前状态 搜索后 搜索前 */
|
||||
const isSearch = ref(true);
|
||||
/** 为了loading 搜索结果 添加防抖 */
|
||||
const Searching = ref(false);
|
||||
const onceSearch = ref(false);
|
||||
import PageHeader from '@/components/Pageheader/index.vue';
|
||||
import pagination from '@/components/Pagination/index.vue';
|
||||
import DictTag from '@/components/DictTag/index.vue';
|
||||
import { getBuildinglists, getHouselistAPI } from '@/api/system/house';
|
||||
import { getCommunitylistAPI } from '@/api/system/community';
|
||||
import { billEdit, billlistType, billPrint, BillPrintType, billQuery } from '@/api/system/SdbCashier';
|
||||
import { listChargeItem } from '@/api/system/SdbChargeItem';
|
||||
import { ref } from 'vue';
|
||||
import { printTicketDiv } from '@/utils/print';
|
||||
import { moneyAdd } from '@/utils/money';
|
||||
import { BuildingUnitlist, BuildingVo, FloorsType, HouseType } from '@/api/system/house/type';
|
||||
import { ChargeItemVO } from '@/api/system/SdbChargeItem/type';
|
||||
import { communitylist_rows_type } from '@/api/system/community/type';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { com_cashier_type } = toRefs<any>(proxy?.useDict('com_cashier_type'));
|
||||
console.log(com_cashier_type);
|
||||
/** 房屋 住户 车辆 车位 */
|
||||
const com_cashier_type_list = ref(['houseName', 'residentName']);
|
||||
const searchform = ref();
|
||||
const searchValue = ref('');
|
||||
const searchType = ref('houseName');
|
||||
const LazysearchType = ref('');
|
||||
function handleChangeSearchType() {
|
||||
list.value = [];
|
||||
searchValue.value = '';
|
||||
}
|
||||
const { com_bill_charge_period } = toRefs<any>(proxy?.useDict('com_bill_charge_period'));
|
||||
const { com_charge_item_unit } = toRefs<any>(proxy?.useDict('com_charge_item_unit'));
|
||||
const { com_pay_status, com_pay_method } = toRefs<any>(proxy?.useDict('com_pay_status', 'com_pay_method'));
|
||||
|
||||
const list = ref<querytype[]>([]);
|
||||
// ! ===================================================================================
|
||||
// 先定义 Tab 项类型
|
||||
type TabValue = 'cashier' | 'history';
|
||||
interface TabItem {
|
||||
name: string;
|
||||
value: TabValue;
|
||||
component: Component;
|
||||
}
|
||||
const checkouttabs = ref<TabValue>('cashier');
|
||||
const tabs: TabItem[] = [
|
||||
const loading = ref(false);
|
||||
const ids = ref<Array<billlistType>>([]);
|
||||
const total = ref(0);
|
||||
const queryFormRef = ref<ElFormInstance>();
|
||||
const activeTabs = ref(null);
|
||||
const tabs = [
|
||||
{
|
||||
name: '收银台',
|
||||
value: 'cashier',
|
||||
component: cashier
|
||||
value: null,
|
||||
type: '全部'
|
||||
},
|
||||
{
|
||||
name: '历史缴费',
|
||||
value: 'history',
|
||||
component: history
|
||||
value: 0,
|
||||
type: '待缴纳'
|
||||
},
|
||||
{
|
||||
value: 1,
|
||||
type: '已缴纳'
|
||||
}
|
||||
];
|
||||
type querytype = {
|
||||
residentId: string;
|
||||
residentName: string;
|
||||
houseName: string;
|
||||
phone: string;
|
||||
};
|
||||
const checkeditem = ref<querytype>({
|
||||
'residentId': '',
|
||||
'residentName': '',
|
||||
'houseName': '',
|
||||
'phone': ''
|
||||
const queryParams = ref({
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
payStatus: null,
|
||||
villageId: undefined,
|
||||
buildingId: undefined,
|
||||
unitNoId: undefined,
|
||||
houseId: undefined,
|
||||
residentName: undefined,
|
||||
chargeItemId: undefined,
|
||||
period: undefined
|
||||
});
|
||||
const searchclick = (row: querytype) => {
|
||||
checkeditem.value = row;
|
||||
isSearch.value = false;
|
||||
handleChecout('cashier');
|
||||
};
|
||||
function handleChecout(index: TabValue) {
|
||||
checkouttabs.value = index;
|
||||
const villageList = ref<communitylist_rows_type[]>([]);
|
||||
const buildingList = ref<BuildingVo[]>([]);
|
||||
const unitList = ref<BuildingUnitlist[]>([]);
|
||||
const houseList = ref<FloorsType[]>([]);
|
||||
const chargeItems = ref<ChargeItemVO[]>([]);
|
||||
|
||||
const tableData = ref([]);
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
// 切换 账单类型
|
||||
function changeTabs(value: number) {
|
||||
activeTabs.value = value;
|
||||
queryParams.value.payStatus = value;
|
||||
getList();
|
||||
}
|
||||
// 选择小区
|
||||
function handleChangeVillage(val: string) {
|
||||
queryParams.value.unitNoId = undefined;
|
||||
queryParams.value.buildingId = undefined;
|
||||
buildingList.value = [];
|
||||
unitList.value = [];
|
||||
if (val) {
|
||||
getBuildinglists({
|
||||
villageId: val
|
||||
}).then((res) => {
|
||||
buildingList.value = res.rows;
|
||||
handleChargeItem(val);
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// ! ===================================================================================
|
||||
// 用于追踪最新请求的标识
|
||||
let latestRequestId = 0;
|
||||
function getlist() {
|
||||
// 生成当前请求的唯一ID
|
||||
const currentRequestId = ++latestRequestId;
|
||||
const currenttime = Date.now();
|
||||
// 获取收费项目
|
||||
function handleChargeItem(id: string) {
|
||||
listChargeItem({
|
||||
villageId: id
|
||||
}).then((res) => {
|
||||
chargeItems.value = res.rows;
|
||||
});
|
||||
}
|
||||
|
||||
Searching.value = true;
|
||||
searchform.value = {};
|
||||
searchform.value[searchType.value] = searchValue.value;
|
||||
// 选择楼栋
|
||||
function handleChangeBuilding(val: string): void {
|
||||
queryParams.value.unitNoId = undefined;
|
||||
unitList.value = [];
|
||||
getHouselistAPI(val).then((res) => {
|
||||
unitList.value = res.data.units;
|
||||
});
|
||||
}
|
||||
// 选择 单元
|
||||
function handleChangeUnit(val: string) {
|
||||
const find = unitList.value.find((item) => item.unitNoId === val);
|
||||
houseList.value = [];
|
||||
if (find) {
|
||||
houseList.value = find.floors;
|
||||
}
|
||||
}
|
||||
// 选择房屋
|
||||
function handleChangeHouseNo() {}
|
||||
|
||||
let lastdata = [];
|
||||
cashQuery(searchform.value)
|
||||
// 获取列表
|
||||
function getList() {
|
||||
loading.value = true;
|
||||
billQuery(queryParams.value)
|
||||
.then((res) => {
|
||||
// 检查是否是最新的请求,防止竞态条件
|
||||
if (currentRequestId === latestRequestId) {
|
||||
lastdata = res.data;
|
||||
}
|
||||
tableData.value = res.rows;
|
||||
total.value = res.total;
|
||||
})
|
||||
.finally(() => {
|
||||
if (currentRequestId === latestRequestId) {
|
||||
LazysearchType.value = searchType.value;
|
||||
onceSearch.value = true;
|
||||
// 计算已过去的时间
|
||||
const elapsedTime = Date.now() - currenttime;
|
||||
const minLoadingTime = 300;
|
||||
if (elapsedTime < minLoadingTime) {
|
||||
setTimeout(() => {
|
||||
// 再次检查,防止在等待期间发起了新请求
|
||||
if (currentRequestId === latestRequestId) {
|
||||
list.value = lastdata;
|
||||
Searching.value = false;
|
||||
}
|
||||
}, minLoadingTime - elapsedTime);
|
||||
} else {
|
||||
list.value = lastdata;
|
||||
Searching.value = false;
|
||||
}
|
||||
}
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
// ! ===================================================================================
|
||||
const handleBack = () => {
|
||||
isSearch.value = true;
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
// ! ===================================================================================
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
queryParams.value = {
|
||||
pageNum: 1,
|
||||
pageSize: 20,
|
||||
payStatus: null,
|
||||
villageId: undefined,
|
||||
buildingId: undefined,
|
||||
unitNoId: undefined,
|
||||
houseId: undefined,
|
||||
chargeItemId: undefined,
|
||||
period: undefined,
|
||||
residentName: undefined
|
||||
};
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: billlistType[]) => {
|
||||
ids.value = selection.map((item) => item);
|
||||
};
|
||||
const buttonLoading = ref(false);
|
||||
// 收费表单
|
||||
const inComeFrom = ref({
|
||||
allCost: null, // 金额
|
||||
billResidentId: [], // 账单id
|
||||
payStatus: '0', // 0:未缴 1:已缴
|
||||
payType: '0', // 0:微信 1:支付宝 2 线下
|
||||
remark: '',
|
||||
residentName: '' // 缴费人
|
||||
});
|
||||
// 收费 --------------------------------------------------------------
|
||||
/** 收费 */
|
||||
function handleIncome(row: billlistType | false) {
|
||||
console.log(ids.value);
|
||||
inComeFrom.value.allCost = 0;
|
||||
inComeFrom.value.billResidentId = [];
|
||||
inComeFrom.value.residentName = '';
|
||||
if (row) {
|
||||
inComeFrom.value.allCost = row.amount;
|
||||
inComeFrom.value.billResidentId = [row];
|
||||
inComeFrom.value.residentName = row.residentName;
|
||||
} else {
|
||||
const set = new Set();
|
||||
ids.value.forEach((item) => {
|
||||
set.add(item.residentId);
|
||||
});
|
||||
if (set.size > 1) {
|
||||
ElMessage.warning('缴费人不一致,重新选择');
|
||||
return;
|
||||
} else if (set.size === 1) {
|
||||
inComeFrom.value.residentName = ids.value[0].residentName;
|
||||
ids.value.forEach((item) => {
|
||||
inComeFrom.value.billResidentId.push(item);
|
||||
inComeFrom.value.allCost = moneyAdd(inComeFrom.value.allCost, item.amount);
|
||||
});
|
||||
console.log(inComeFrom.value);
|
||||
}
|
||||
}
|
||||
dialog.visible = true;
|
||||
}
|
||||
const closer = () => {
|
||||
dialog.visible = false;
|
||||
dialog.title = '';
|
||||
};
|
||||
const submitForm = () => {
|
||||
buttonLoading.value = true;
|
||||
const obj = {
|
||||
'detailsId': inComeFrom.value.billResidentId.map((item) => item.detailsId),
|
||||
'payType': inComeFrom.value.payType,
|
||||
'payStatus': inComeFrom.value.payStatus
|
||||
};
|
||||
billEdit(obj)
|
||||
.then(() => {
|
||||
ElMessage.success('缴费成功');
|
||||
getList();
|
||||
closer();
|
||||
})
|
||||
.finally(() => {
|
||||
buttonLoading.value = false;
|
||||
});
|
||||
};
|
||||
|
||||
// 打印票据--------------------------------------------------------------
|
||||
const isPrint = ref(false);
|
||||
const dialog_print = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: '票据打印'
|
||||
});
|
||||
// 收款人
|
||||
const inHomelyUse = ref('');
|
||||
const print_form = ref<BillPrintType>({
|
||||
'totalAccount': '',
|
||||
'residentName': '',
|
||||
'detailsList': [],
|
||||
'printDate': '',
|
||||
'HouseName': '',
|
||||
'title': ''
|
||||
});
|
||||
|
||||
function printPIaoJuByOnly(row: billlistType | false) {
|
||||
isPrint.value = false;
|
||||
inHomelyUse.value = '';
|
||||
let query = null;
|
||||
if (row) {
|
||||
query = {
|
||||
'residentId': row.residentId,
|
||||
'detailsIds': [row.detailsId]
|
||||
};
|
||||
} else {
|
||||
let residentId = null;
|
||||
const set = new Set();
|
||||
ids.value.forEach((item) => {
|
||||
set.add(item.residentId);
|
||||
});
|
||||
if (set.size > 1) {
|
||||
ElMessage.warning('缴费人不一致,重新选择');
|
||||
return;
|
||||
} else if (set.size === 1) {
|
||||
residentId = Array.from(set).at(0);
|
||||
query = {
|
||||
'residentId': residentId,
|
||||
'detailsIds': ids.value.map((item) => item.detailsId)
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
billPrint(query).then((res) => {
|
||||
print_form.value = res.data;
|
||||
dialog_print.visible = true;
|
||||
});
|
||||
}
|
||||
const isLoading = ref(false);
|
||||
function conFimPrint() {
|
||||
isLoading.value = true;
|
||||
isPrint.value = true;
|
||||
setTimeout(() => {
|
||||
printTicketDiv('printBox-Bill', '票据打印', () => {
|
||||
isPrint.value = false;
|
||||
isLoading.value = false;
|
||||
});
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
// 全部小区
|
||||
getCommunitylistAPI().then((res) => {
|
||||
villageList.value = res.rows;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.noData {
|
||||
color: #999999;
|
||||
<style lang="scss" scoped>
|
||||
.el-table {
|
||||
height: calc(100% - 80px);
|
||||
}
|
||||
.tabsbox {
|
||||
height: 60px;
|
||||
.actionsBox {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: #fff;
|
||||
height: 50px;
|
||||
box-sizing: border-box;
|
||||
padding: 0 20px;
|
||||
margin-bottom: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.tabs-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20px;
|
||||
.tabs_item {
|
||||
|
||||
.tabs-items {
|
||||
width: 70px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding: 0 10px;
|
||||
margin-right: 40px;
|
||||
font-size: 0.8rem;
|
||||
border-bottom: 2px solid transparent;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
margin-right: 10px;
|
||||
|
||||
&:hover {
|
||||
color: #40a0ff98;
|
||||
border-bottom-color: #40a0ff98;
|
||||
opacity: 0.5;
|
||||
color: #1a75ff;
|
||||
border-bottom-color: #1a75ff;
|
||||
}
|
||||
&.active {
|
||||
color: #409eff;
|
||||
border-bottom-color: #409eff;
|
||||
border-bottom: 1px solid;
|
||||
border-bottom-color: #1a75ff;
|
||||
color: #1a75ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.actionsmain {
|
||||
font-size: 0.9rem;
|
||||
color: #000;
|
||||
padding-left: 30px;
|
||||
.payInfo {
|
||||
color: rgba(0, 0, 0, 1);
|
||||
margin-top: 20px;
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid #d2d2d2;
|
||||
& > div {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
.contanier {
|
||||
width: 900px;
|
||||
min-height: 200px;
|
||||
margin: 100px auto;
|
||||
.typebox {
|
||||
width: 140px;
|
||||
height: 40px;
|
||||
:deep(.el-select__wrapper) {
|
||||
width: 140px;
|
||||
height: 50px;
|
||||
line-height: 20px;
|
||||
border-radius: 5px 0px 0px 5px;
|
||||
background-color: rgba(255, 255, 255, 1);
|
||||
color: rgba(16, 16, 16, 1);
|
||||
font-size: 14px;
|
||||
outline: none;
|
||||
.printBox {
|
||||
color: rgba(0, 0, 0, 1);
|
||||
padding-top: 5px;
|
||||
.title {
|
||||
font-weight: bold;
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 10px;
|
||||
text-indent: 5em;
|
||||
}
|
||||
.nav {
|
||||
font-size: 12px;
|
||||
&.gridBox {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
grid-gap: 10px;
|
||||
grid-template-rows: 1fr;
|
||||
}
|
||||
&.flexbox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
.searchBox {
|
||||
flex: 1;
|
||||
background-color: #fff;
|
||||
&:deep(.el-input__wrapper) {
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
border-radius: 0px 5px 5px 0px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.listbox {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
min-height: 200px;
|
||||
margin-top: -2px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0px 0px 5px 5px;
|
||||
background-color: rgba(255, 255, 255, 1);
|
||||
color: rgba(16, 16, 16, 1);
|
||||
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
|
||||
|
||||
.list_item {
|
||||
padding-bottom: 30px;
|
||||
height: 400px;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
|
||||
flex-direction: column;
|
||||
.title {
|
||||
color: rgba(48, 49, 51, 1);
|
||||
font-size: 1rem;
|
||||
font-weight: 450;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
border-bottom: 1px solid rgba(204, 204, 204, 1);
|
||||
}
|
||||
.list_body {
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
overflow-x: hidden;
|
||||
.list_value {
|
||||
min-height: 40px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
border-bottom: 1px solid rgba(204, 204, 204, 1);
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
background-color: #cccccc33;
|
||||
}
|
||||
}
|
||||
}
|
||||
.tableBox {
|
||||
font-size: 10px;
|
||||
.printTable {
|
||||
border-collapse: collapse;
|
||||
border: 1px solid #000;
|
||||
th,
|
||||
td {
|
||||
text-align: center;
|
||||
min-width: 140px;
|
||||
height: 40px;
|
||||
border: 1px solid #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
.cashierbox {
|
||||
font-size: 0.8rem;
|
||||
.el-button {
|
||||
width: 100px;
|
||||
height: 35px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.actionsbox {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.tablebox {
|
||||
margin-top: 20px;
|
||||
height: 100%;
|
||||
.el-table {
|
||||
height: calc(100% - 80px);
|
||||
}
|
||||
}
|
||||
}
|
||||
//
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user