Commit 63f3b89b by liangzhen

反馈提交

1 parent 33572eb1
......@@ -186,4 +186,21 @@ export function wtqdqselect(params) {
//项目后评估资料
export function clqdselect(params) {
return post(`/api/select/clqd`, params)
}
//申诉辅助确认
// 申诉辅助确认分页查询
export function appealAssistanceConfirmatio(params) {
return post(`/api/appealAssistanceConfirmation/`, params)
}
//问题复核保存
export function wtfhappealAssistanceConfirmatio(params) {
return post(`/api/appealAssistanceConfirmation/wtfh`, params)
}
//问题复核下发
export function xfappealAssistanceConfirmatio(params) {
return post(`/api/appealAssistanceConfirmation/wtfhxf`, params)
}
//申诉查询
export function wtssSelAssistanceConfirmatio(params) {
return post(`/api/appealAssistanceConfirmation/wtssSel`, params)
}
\ No newline at end of file
<template>
<div class="main">
<el-form :model="ruleForm" label-width="100px" class="demo-ruleForm">
<el-form :model="ruleForm" label-width="100px" class="demo-ruleForm" ref="formName">
<el-form-item label="批次年度:" prop="batchYear" class="fromItem">
<el-select v-model="ruleForm.batchYear" placeholder="请选择">
<el-option label="2024年" value="2024"></el-option>
......@@ -101,7 +101,7 @@
label-width="100px"
class="demo-ruleForm"
:rules="rules"
ref="formName"
>
<el-form-item
label="问题申诉截止时间:"
......@@ -208,7 +208,7 @@ export default {
}
},
resetForm() {
this.$refs[formName].resetFields();
this.$refs.formName.resetFields();
this.currentPage = 1;
this.pageSize = 10;
this.submitForm();
......
<template>
<div class="main">
<el-form :model="ruleForm" label-width="100px" class="demo-ruleForm">
<el-form :model="ruleForm" label-width="100px" class="demo-ruleForm" ref="formName">
<el-form-item label="批次年度:" prop="batchYear" class="fromItem">
<el-select v-model="ruleForm.batchYear" placeholder="请选择">
<el-option label="2024年" value="2024"></el-option>
......@@ -99,7 +99,7 @@
label-width="100px"
class="demo-ruleForm"
:rules="rules"
ref="formName"
>
<el-form-item
label="问题申诉截止时间:"
......@@ -181,7 +181,7 @@
this.submitForm();
},
methods: {
async submitForm(formName) {
async submitForm() {
let params = {
current: this.currentPage,
pageSize: this.pageSize,
......@@ -204,7 +204,7 @@
}
},
resetForm() {
this.$refs[formName].resetFields();
this.$refs.formName.resetFields();
this.currentPage = 1;
this.pageSize = 10;
this.submitForm();
......@@ -213,7 +213,7 @@
//问题下发
detailsForm() {
if (this.checkedList.length != 1) {
this.$message("请选择一条数据进行下发");
this.$message("请选择一条数据");
return;
} else {
let params = {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!