You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
512 lines
17 KiB
512 lines
17 KiB
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
|
|
<el-form-item label="原因" prop="reason">
|
|
<el-input
|
|
v-model="queryParams.data.reason"
|
|
placeholder="请输入原因"
|
|
clearable
|
|
size="small"
|
|
@keyup.enter.native="handleQuery"
|
|
>
|
|
<el-button
|
|
type="primary"
|
|
slot="append"
|
|
icon="el-icon-search"
|
|
size="small"
|
|
@click="handleQuery"
|
|
></el-button>
|
|
</el-input>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<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="['build:fundPayWarning:add']"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
v-hasPermi="['build:fundPayWarning:edit']"
|
|
>修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-hasPermi="['build:fundPayWarning:remove']"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-hasPermi="['build:fundPayWarning:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="fundPayWarningList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" fixed/>
|
|
<el-table-column label="序号" type="index" width="50" align="center" fixed/>
|
|
|
|
<el-table-column label="所属项目" align="center" prop="projectName" min-width="120">
|
|
<template slot-scope="scope">
|
|
{{ formData.projectName }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目编码" align="center" prop="proCode" min-width="120">
|
|
<template slot-scope="scope">
|
|
{{ formData.proCode }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120">
|
|
<template slot-scope="scope">
|
|
{{ formData.proNo }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="支付时间范围" align="center" prop="payDateRange" min-width="120"/>
|
|
<el-table-column label="支付金额" align="center" prop="payAmount" min-width="120"/>
|
|
<el-table-column label="预警描述" align="center" prop="ruleMsg" min-width="120"/>
|
|
<el-table-column label="说明情况" align="center" prop="describe" min-width="120"/>
|
|
<el-table-column label="原因" align="center" prop="reason" min-width="120"/>
|
|
<el-table-column label="状态" align="center" prop="status" :formatter="statusFormat" min-width="120"/>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['build:fundPayWarning:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['build:fundPayWarning:remove']"
|
|
>删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<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="650px" append-to-body :close-on-click-modal="false">
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="110px">
|
|
<el-form-item label="支付时间范围" prop="payDateRange">
|
|
<!-- <el-input v-model="form.payDateRange" placeholder="请输入支付时间范围" /> -->
|
|
<el-date-picker
|
|
v-model="timeRange"
|
|
type="daterange"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
style="width: 100%;">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="支付金额" prop="payAmount">
|
|
<el-input v-model="form.payAmount" placeholder="请输入支付金额" />
|
|
</el-form-item>
|
|
<el-form-item label="预警描述" prop="ruleMsg">
|
|
<el-input v-model="form.ruleMsg" placeholder="请输入预警描述" />
|
|
</el-form-item>
|
|
<el-form-item label="说明情况" prop="describe">
|
|
<el-input v-model="form.describe" placeholder="请输入说明情况" />
|
|
</el-form-item>
|
|
<el-form-item label="原因" prop="reason">
|
|
<el-input v-model="form.reason" placeholder="请输入原因" />
|
|
</el-form-item>
|
|
<el-form-item label="预警状态" prop="status">
|
|
<el-select v-model="form.status" placeholder="请选择预警状态" style="width: 100%">
|
|
<el-option
|
|
v-for="dict in warningStatusOptions"
|
|
:key="dict.dictValue"
|
|
:label="dict.dictLabel"
|
|
:value="dict.dictValue"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="处置状态" prop="handle">
|
|
<el-select v-model="form.handle" placeholder="请选择处置状态" style="width: 100%">
|
|
<el-option
|
|
v-for="dict in handleStatusOptions"
|
|
:key="dict.dictValue"
|
|
:label="dict.dictLabel"
|
|
:value="dict.dictValue"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</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>
|
|
import { listFundPayWarning, getFundPayWarning, delFundPayWarning, addFundPayWarning, updateFundPayWarning, exportFundPayWarning } from "@/api/build/fundPayWarning";
|
|
import {
|
|
getInfo
|
|
} from "@/api/build/projectInfo";
|
|
export default {
|
|
name: "FundPayWarning",
|
|
props: {
|
|
projectInfo: {
|
|
type: Object,
|
|
default: true
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 资金支付预警管理表格数据
|
|
fundPayWarningList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
ids:null,
|
|
data:{
|
|
projectName: null,
|
|
proCode: null,
|
|
proNo: null,
|
|
payDateRange: null,
|
|
payAmount: null,
|
|
ruleMsg: null,
|
|
describe: null,
|
|
reason: null,
|
|
status: null,
|
|
handle: null,
|
|
createUid: null,
|
|
createTime: null,
|
|
updateUid: null,
|
|
updateTime: null,
|
|
},
|
|
// 排序方式
|
|
params: {
|
|
// 按哪个字段排序
|
|
orderBy: "create_time",
|
|
// desc降序,升序asc
|
|
sortBy: "desc",
|
|
},
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
// payDateRange: [
|
|
// {
|
|
// required: true,
|
|
// message: "请选择支付时间范围",
|
|
// trigger: "change",
|
|
// }
|
|
// ],
|
|
payAmount: [
|
|
{
|
|
required: true,
|
|
message: "请输入支付金额",
|
|
trigger: "blur",
|
|
}
|
|
],
|
|
ruleMsg: [
|
|
{
|
|
required: true,
|
|
message: "请输入预警描述",
|
|
trigger: "blur",
|
|
}
|
|
],
|
|
describe: [
|
|
{
|
|
required: true,
|
|
message: "请输入说明情况",
|
|
trigger: "blur",
|
|
}
|
|
],
|
|
reason: [
|
|
{
|
|
required: true,
|
|
message: "请输入说明情况",
|
|
trigger: "blur",
|
|
}
|
|
],
|
|
status: [
|
|
{
|
|
required: true,
|
|
message: "请选择预警状态",
|
|
trigger: "change",
|
|
}
|
|
],
|
|
handle: [
|
|
{
|
|
required: true,
|
|
message: "请选择处置状态",
|
|
trigger: "change",
|
|
}
|
|
],
|
|
},
|
|
formData: {},
|
|
handleStatusOptions: [],
|
|
warningStatusOptions: [],
|
|
timeRange: []
|
|
};
|
|
},
|
|
watch: {
|
|
timeRange(newVal) {
|
|
if (newVal) {
|
|
this.form.payDateRange = newVal.join(',')
|
|
} else {
|
|
this.form.payDateRange = null
|
|
}
|
|
console.log(newVal)
|
|
}
|
|
},
|
|
created() {
|
|
this.queryParams.data.proNo = this.$route.query.proNo
|
|
this.getDictList()
|
|
this.getList()
|
|
this.getProjectInfo()
|
|
},
|
|
methods: {
|
|
// 获取项目详情
|
|
getProjectInfo() {
|
|
getInfo(this.$route.query.baseDataId).then((response) => {
|
|
this.formData = response.data
|
|
});
|
|
},
|
|
/** 查询资金支付预警管理列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listFundPayWarning(this.queryParams).then(response => {
|
|
this.fundPayWarningList = response.records;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 获取字典信息
|
|
getDictList() {
|
|
this.getDicts("warning_status").then((response) => {
|
|
this.warningStatusOptions = response.data;
|
|
})
|
|
this.getDicts("handle_status").then((response) => {
|
|
this.handleStatusOptions = response.data;
|
|
})
|
|
},
|
|
// 菜单状态字典翻译
|
|
statusFormat(row, column) {
|
|
return this.selectDictLabel(this.warningStatusOptions, row.status);
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
projectName: null,
|
|
proCode: null,
|
|
proNo: null,
|
|
payDateRange: null,
|
|
payAmount: null,
|
|
ruleMsg: null,
|
|
describe: null,
|
|
reason: null,
|
|
status: null,
|
|
handle: null,
|
|
createUid: null,
|
|
createTime: null,
|
|
updateUid: null,
|
|
updateTime: null,
|
|
remark: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
// 查询表单重置
|
|
resetQueryForm() {
|
|
this.queryParams = {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
data:{
|
|
id: null,
|
|
projectName: null,
|
|
proCode: null,
|
|
proNo: null,
|
|
payDateRange: null,
|
|
payAmount: null,
|
|
ruleMsg: null,
|
|
describe: null,
|
|
reason: null,
|
|
status: "0",
|
|
handle: null,
|
|
createUid: null,
|
|
createTime: null,
|
|
updateUid: null,
|
|
updateTime: null,
|
|
remark: null
|
|
},
|
|
// 排序方式
|
|
params: {
|
|
// 按哪个字段排序
|
|
orderBy: "create_time",
|
|
// desc降序,升序asc
|
|
sortBy: "desc",
|
|
},
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetQueryForm();
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加资金支付预警管理";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id || this.ids
|
|
getFundPayWarning(id).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改资金支付预警管理";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
updateFundPayWarning(this.form).then(response => {
|
|
if (response.code === 200) {
|
|
this.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}
|
|
});
|
|
} else {
|
|
this.form.projectName = this.projectInfo.projectName
|
|
this.form.proCode = this.projectInfo.proCode
|
|
this.form.proNo = this.projectInfo.proNo
|
|
addFundPayWarning(this.form).then(response => {
|
|
if (response.code === 200) {
|
|
this.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
if(ids){
|
|
this.$confirm("是否删除选中的数据?", "警告", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
type: "warning"
|
|
}).then(function() {
|
|
return delFundPayWarning(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.msgSuccess("删除成功");
|
|
}).catch(function() {});
|
|
}else{
|
|
this.$message.warning("请选择要删除的数据!!");
|
|
}
|
|
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
const queryParams = this.queryParams;
|
|
let message = "是否确认导出所有的数据项?";
|
|
if(this.ids){
|
|
message = "是否确认导出选中的数据项?";
|
|
queryParams.ids = this.ids;
|
|
}
|
|
this.$confirm(message, "警告", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
type: "warning"
|
|
}).then(function() {
|
|
return exportFundPayWarning(queryParams);
|
|
}).then(response => {
|
|
this.downloadFile(response, true, response.msg);
|
|
// this.download(response.msg);
|
|
}).catch(function() {});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import "@/assets/css/dialog.scss";
|
|
//::v-deep {
|
|
// .el-dialog {
|
|
// margin-top: 10vh !important;
|
|
// }
|
|
//}
|
|
</style>
|
|
|