2020-11-19 15:15:23 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
<el-form-item label="收款时间" prop="collectAt">
|
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
2020-11-19 15:52:46 +08:00
|
|
|
v-model="queryParams.collectAt"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择收款时间">
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="结算时间" prop="settlementAt">
|
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
2020-11-19 15:52:46 +08:00
|
|
|
v-model="queryParams.settlementAt"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择结算时间">
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="结算标志" prop="settlementFlag">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.settlementFlag"
|
|
|
|
placeholder="请输入结算标志"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
2020-11-19 15:52:46 +08:00
|
|
|
<el-form-item label="预付费金额" prop="prepaid">
|
|
|
|
<el-input
|
|
|
|
v-model="queryParams.prepaid"
|
|
|
|
placeholder="请输入预付费金额"
|
|
|
|
clearable
|
|
|
|
size="small"
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="预付费时间" prop="prepaidAt">
|
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
|
v-model="queryParams.prepaidAt"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择预付费时间">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
2020-11-19 15:15:23 +08:00
|
|
|
<el-form-item>
|
|
|
|
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-plus"
|
|
|
|
size="mini"
|
|
|
|
@click="handleAdd"
|
|
|
|
v-hasPermi="['fantang:prepayment:add']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>新增
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="success"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
size="mini"
|
|
|
|
:disabled="single"
|
|
|
|
@click="handleUpdate"
|
|
|
|
v-hasPermi="['fantang:prepayment:edit']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>修改
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="danger"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
size="mini"
|
|
|
|
:disabled="multiple"
|
|
|
|
@click="handleDelete"
|
|
|
|
v-hasPermi="['fantang:prepayment:remove']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>删除
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button
|
|
|
|
type="warning"
|
|
|
|
icon="el-icon-download"
|
|
|
|
size="mini"
|
|
|
|
@click="handleExport"
|
|
|
|
v-hasPermi="['fantang:prepayment:export']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>导出
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-col>
|
2020-11-19 15:52:46 +08:00
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="prepaymentList" @selection-change="handleSelectionChange">
|
2020-11-19 15:52:46 +08:00
|
|
|
<el-table-column type="selection" width="55" align="center"/>
|
2020-11-19 15:15:23 +08:00
|
|
|
<el-table-column label="预付费id" align="center" prop="prepaymentId" v-if="false"/>
|
|
|
|
<el-table-column label="收款时间" align="center" prop="collectAt" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.collectAt, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="结算时间" align="center" prop="settlementAt" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.settlementAt, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2020-11-19 15:52:46 +08:00
|
|
|
<el-table-column label="结算标志" align="center" prop="settlementFlag"/>
|
|
|
|
<el-table-column label="预付费金额" align="center" prop="prepaid"/>
|
|
|
|
<el-table-column label="预付费时间" align="center" prop="prepaidAt" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.prepaidAt, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2020-11-19 15:15:23 +08:00
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-edit"
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
v-hasPermi="['fantang:prepayment:edit']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>修改
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
<el-button
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-delete"
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['fantang:prepayment:remove']"
|
2020-11-19 15:52:46 +08:00
|
|
|
>删除
|
|
|
|
</el-button>
|
2020-11-19 15:15:23 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2020-11-19 15:52:46 +08:00
|
|
|
|
2020-11-19 15:15:23 +08:00
|
|
|
<pagination
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- 添加或修改收费管理对话框 -->
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
2020-11-19 15:52:46 +08:00
|
|
|
<el-form-item label="病人id" prop="patientId">
|
|
|
|
<el-input v-model="form.patientId" placeholder="请输入病人id"/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="预付费金额" prop="prepaid">
|
|
|
|
<el-input v-model="form.prepaid" placeholder="请输入预付费金额"/>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="预付费时间" prop="prepaidAt">
|
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
|
v-model="form.prepaidAt"
|
|
|
|
type="date"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
placeholder="选择预付费时间">
|
|
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
2020-11-19 15:15:23 +08:00
|
|
|
</el-form>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-11-19 15:52:46 +08:00
|
|
|
import {
|
|
|
|
addPrepayment,
|
|
|
|
delPrepayment,
|
|
|
|
exportPrepayment,
|
|
|
|
getPrepayment,
|
|
|
|
listPrepayment,
|
|
|
|
updatePrepayment
|
|
|
|
} from "@/api/fantang/prepayment";
|
2020-11-19 15:15:23 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Prepayment",
|
2020-11-19 15:52:46 +08:00
|
|
|
components: {},
|
2020-11-19 15:15:23 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 收费管理表格数据
|
|
|
|
prepaymentList: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
collectAt: null,
|
|
|
|
settlementAt: null,
|
2020-11-19 15:52:46 +08:00
|
|
|
settlementFlag: null,
|
|
|
|
prepaid: null,
|
|
|
|
prepaidAt: null
|
2020-11-19 15:15:23 +08:00
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
rules: {
|
2020-11-19 15:52:46 +08:00
|
|
|
patientId: [
|
|
|
|
{required: true, message: "病人id不能为空", trigger: "blur"}
|
|
|
|
],
|
|
|
|
prepaid: [
|
|
|
|
{required: true, message: "预付费金额不能为空", trigger: "blur"}
|
|
|
|
],
|
|
|
|
prepaidAt: [
|
|
|
|
{required: true, message: "预付费时间不能为空", trigger: "blur"}
|
|
|
|
]
|
2020-11-19 15:15:23 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/** 查询收费管理列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
listPrepayment(this.queryParams).then(response => {
|
|
|
|
this.prepaymentList = response.rows;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
// 表单重置
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
prepaymentId: null,
|
|
|
|
patientId: null,
|
|
|
|
collectAt: null,
|
|
|
|
collectBy: null,
|
|
|
|
settlementAt: null,
|
|
|
|
settlementBy: null,
|
|
|
|
settlementId: null,
|
2020-11-19 15:52:46 +08:00
|
|
|
settlementFlag: null,
|
|
|
|
prepaid: null,
|
|
|
|
prepaidAt: null
|
2020-11-19 15:15:23 +08:00
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
// 多选框选中数据
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
this.ids = selection.map(item => item.prepaymentId)
|
2020-11-19 15:52:46 +08:00
|
|
|
this.single = selection.length !== 1
|
2020-11-19 15:15:23 +08:00
|
|
|
this.multiple = !selection.length
|
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
handleAdd() {
|
|
|
|
this.reset();
|
|
|
|
this.open = true;
|
|
|
|
this.title = "添加收费管理";
|
|
|
|
},
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row) {
|
|
|
|
this.reset();
|
|
|
|
const prepaymentId = row.prepaymentId || this.ids
|
|
|
|
getPrepayment(prepaymentId).then(response => {
|
|
|
|
this.form = response.data;
|
|
|
|
this.open = true;
|
|
|
|
this.title = "修改收费管理";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
if (valid) {
|
|
|
|
if (this.form.prepaymentId != null) {
|
|
|
|
updatePrepayment(this.form).then(response => {
|
|
|
|
this.msgSuccess("修改成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
addPrepayment(this.form).then(response => {
|
|
|
|
this.msgSuccess("新增成功");
|
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const prepaymentIds = row.prepaymentId || this.ids;
|
|
|
|
this.$confirm('是否确认删除收费管理编号为"' + prepaymentIds + '"的数据项?', "警告", {
|
2020-11-19 15:52:46 +08:00
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning"
|
|
|
|
}).then(function () {
|
|
|
|
return delPrepayment(prepaymentIds);
|
|
|
|
}).then(() => {
|
|
|
|
this.getList();
|
|
|
|
this.msgSuccess("删除成功");
|
|
|
|
})
|
2020-11-19 15:15:23 +08:00
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
const queryParams = this.queryParams;
|
|
|
|
this.$confirm('是否确认导出所有收费管理数据项?', "警告", {
|
2020-11-19 15:52:46 +08:00
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning"
|
|
|
|
}).then(function () {
|
|
|
|
return exportPrepayment(queryParams);
|
|
|
|
}).then(response => {
|
|
|
|
this.download(response.msg);
|
|
|
|
})
|
2020-11-19 15:15:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|