Browse Source

资金支付预计补充

master
xzt 2 weeks ago
parent
commit
9b383cb778
  1. 488
      jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/applyInfo.vue
  2. 12
      jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/index.vue
  3. 14
      jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/list.vue

488
jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/applyInfo.vue

@ -0,0 +1,488 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
<el-form-item label="支付期数" prop="payPeriods">
<el-input
v-model="queryParams.data.payPeriods"
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:payInfo: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:payInfo: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:payInfo: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:payInfo:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="payInfoList" @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"/>
<el-table-column label="项目编号" align="center" prop="proNo" min-width="120"/> -->
<el-table-column label="支付期数" align="center" prop="payPeriods" min-width="120"/>
<el-table-column label="支付日期" align="center" prop="payDate" min-width="120">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.payDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="本期应付金额" align="center" prop="payAmount" min-width="120"/>
<el-table-column label="本期实付金额" align="center" prop="payActual" min-width="120"/>
<el-table-column label="本期暂扣款" align="center" prop="payDeduction" min-width="120"/>
<el-table-column label="审核意见" align="center" prop="opinion" min-width="120"/>
<el-table-column label="审核状态" align="center" prop="status" min-width="120">
<template slot-scope="scope">
<div>
{{ scope.row.status == "1" ? "审核通过" : scope.row.status == "2" ? "审核不通过" : "待审核" }}
</div>
</template>
</el-table-column>
<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:payInfo:edit']"
>审核</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['build:payInfo: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="120px">
<el-form-item label="所属项目" prop="projectName">
<el-input v-model="form.projectName" placeholder="请输入所属项目" disabled />
</el-form-item>
<el-form-item label="项目编码" prop="proCode">
<el-input v-model="form.proCode" placeholder="请输入项目编码" disabled />
</el-form-item>
<el-form-item label="项目编号" prop="proNo">
<el-input v-model="form.proNo" placeholder="请输入项目编号" disabled />
</el-form-item>
<el-form-item label="支付日期" prop="payDate">
<el-date-picker clearable size="small" style="width: 100%"
v-model="form.payDate"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择支付日期">
</el-date-picker>
</el-form-item>
<el-form-item label="支付期数" prop="payPeriods">
<el-input-number v-model="form.payPeriods" controls-position="right" :min="0" :max="100000"></el-input-number>
<!-- <el-input v-model="form.payPeriods" placeholder="请输入支付期数" /> -->
</el-form-item>
<el-form-item label="本期应付金额" prop="payAmount">
<el-input-number v-model="form.payAmount" controls-position="right" :min="0" :max="100000"></el-input-number>
<!-- <el-input v-model="form.payAmount" placeholder="请输入本期应付金额" /> -->
</el-form-item>
<el-form-item label="本期实付金额" prop="payActual">
<el-input-number v-model="form.payActual" controls-position="right" :min="0" :max="100000"></el-input-number>
<!-- <el-input v-model="form.payActual" placeholder="请输入本期实付金额" /> -->
</el-form-item>
<el-form-item label="本期暂扣款" prop="payDeduction">
<el-input-number v-model="form.payDeduction" controls-position="right" :min="0" :max="100000"></el-input-number>
<!-- <el-input v-model="form.payDeduction" placeholder="请输入本期暂扣款" /> -->
</el-form-item>
<el-form-item v-if="form.id" label="审核意见" prop="opinion">
<el-input v-model="form.opinion" type="textarea" :rows="5" placeholder="请输入审核意见" />
</el-form-item>
<!-- <el-form-item label="状态">
<el-radio-group v-model="form.status">
<el-radio label="1">请选择字典生成</el-radio>
</el-radio-group>
</el-form-item> -->
</el-form>
<div slot="footer" class="dialog-footer">
<div v-if="!form.id">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
<div v-else>
<el-button type="primary" @click="handlePass"> </el-button>
<el-button type="danger" @click="handleNoPass"> </el-button>
</div>
</div>
</el-dialog>
</div>
</template>
<script>
import { listPayInfo, getPayInfo, delPayInfo, addPayInfo, updatePayInfo, exportPayInfo } from "@/api/build/payInfo";
import { getInfo } from "@/api/build/projectInfo";
export default {
name: "PayInfo",
props: {
projectInfo: {
type: Object,
default: true
},
},
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// -
payInfoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
ids:null,
data:{
projectName: null,
proCode: null,
proNo: null,
payPeriods: null,
payDate: null,
payAmount: null,
payActual: null,
payDeduction: null,
status: null,
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
},
//
params: {
//
orderBy: "create_time",
// descasc
sortBy: "desc",
},
},
//
form: {},
//
rules: {
payPeriods: [
{
required: true,
message: "请输入支付期数",
trigger: "blur",
}
],
payDate: [
{
required: true,
message: "请输入支付日期",
trigger: "change",
}
],
payAmount: [
{
required: true,
message: "请输入本期应付金额",
trigger: "blur",
}
],
payActual: [
{
required: true,
message: "请输入本期实付金额",
trigger: "blur",
}
],
payDeduction: [
{
required: true,
message: "请输入本期暂扣款",
trigger: "blur",
}
],
opinion: [
{
required: true,
message: "请输入审核意见",
trigger: "blur",
}
],
},
formData: {},
};
},
created() {
this.getList()
this.getProjectInfo()
},
methods: {
//
getProjectInfo() {
getInfo(this.$route.query.baseDataId).then((response) => {
this.formData = response.data
});
},
/** 查询资金支付-立项列表 */
getList() {
this.loading = true;
listPayInfo(this.queryParams).then(response => {
this.payInfoList = response.records;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
projectName: this.projectInfo.projectName,
proCode: this.projectInfo.proCode,
proNo: this.projectInfo.proNo,
payPeriods: null,
payDate: null,
payAmount: null,
payActual: null,
payDeduction: null,
status: "0",
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,
payPeriods: null,
payDate: null,
payAmount: null,
payActual: null,
payDeduction: null,
status: "0",
createUid: null,
createTime: null,
updateUid: null,
updateTime: null,
remark: null
},
//
params: {
//
orderBy: "create_time",
// descasc
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
getPayInfo(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改资金支付-立项";
});
},
//
handlePass() {
this.form.status = '2'
this.submitForm()
},
//
handlePass() {
this.form.status = '1'
this.submitForm()
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updatePayInfo(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
console.log(this.form)
addPayInfo(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 delPayInfo(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 exportPayInfo(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>

12
jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/index.vue

@ -161,10 +161,10 @@
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-setting" icon="el-icon-circle-plus-outline"
@click="handleToList('1', scope.row)" @click="handleToList('1', scope.row)"
v-hasPermi="['build:xmgcgl:edit']" v-hasPermi="['build:xmgcgl:edit']"
>预警配置</el-button >上报</el-button
> >
<el-button <el-button
size="mini" size="mini"
@ -172,6 +172,14 @@
icon="el-icon-setting" icon="el-icon-setting"
@click="handleToList('2', scope.row)" @click="handleToList('2', scope.row)"
v-hasPermi="['build:xmgcgl:edit']" v-hasPermi="['build:xmgcgl:edit']"
>预警配置</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-setting"
@click="handleToList('3', scope.row)"
v-hasPermi="['build:xmgcgl:edit']"
>预警信息</el-button >预警信息</el-button
> >
</template> </template>

14
jwtech-admin-page/src/views/building/projectInfo/fundPayWarning/list.vue

@ -3,17 +3,24 @@
<div style="font-size: 24px;margin-bottom: 16px;">{{ formData.projectName }}</div> <div style="font-size: 24px;margin-bottom: 16px;">{{ formData.projectName }}</div>
<el-tabs v-model="activeName" style="margin-bottom: 20px"> <el-tabs v-model="activeName" style="margin-bottom: 20px">
<el-tab-pane <el-tab-pane
label="预警配置" label="上报信息"
name="one" name="one"
>
<apply-info :projectInfo="formData" />
</el-tab-pane>
<el-tab-pane
label="预警配置"
name="two"
> >
<fund-setting :projectInfo="formData" /> <fund-setting :projectInfo="formData" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
label="预警信息" label="预警信息"
name="two" name="three"
> >
<fund-info :projectInfo="formData" /> <fund-info :projectInfo="formData" />
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
</template> </template>
@ -22,9 +29,10 @@
import { getInfo } from "@/api/build/projectInfo" import { getInfo } from "@/api/build/projectInfo"
import FundSetting from './fundSetting' import FundSetting from './fundSetting'
import FundInfo from './fundInfo' import FundInfo from './fundInfo'
import ApplyInfo from './applyInfo'
export default { export default {
name: "WarningRule", name: "WarningRule",
components: { FundSetting, FundInfo }, components: { FundSetting, FundInfo, ApplyInfo },
data() { data() {
return { return {
activeName: 'one', activeName: 'one',

Loading…
Cancel
Save