7/4新增公安备案底部链接
This commit is contained in:
@@ -111,13 +111,13 @@
|
||||
<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="缴费时间" align="center" prop="payTime" />
|
||||
<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-has-permi="['bill:bill:edit']"
|
||||
>收费</el-button
|
||||
>
|
||||
<el-button link type="primary" v-if="scope.row.payStatus === '1'" @click="printPIaoJuByOnly(scope.row)" v-has-permi="['bill:bill:query']"
|
||||
<el-button link type="success" v-if="scope.row.payStatus === '1'" @click="printPIaoJuByOnly(scope.row)" v-has-permi="['bill:bill:query']"
|
||||
>打印票据</el-button
|
||||
>
|
||||
</template>
|
||||
@@ -482,6 +482,9 @@ function printPIaoJuByOnly(row: billlistType | false) {
|
||||
'detailsIds': [row.detailsId]
|
||||
};
|
||||
} else {
|
||||
if (ids.value.length <= 0) {
|
||||
return ElMessage.warning('请选择账单!');
|
||||
}
|
||||
let residentId = null;
|
||||
const set = new Set();
|
||||
ids.value.forEach((item) => {
|
||||
|
||||
Reference in New Issue
Block a user