Commit 63f3b89b by liangzhen

反馈提交

1 parent 33572eb1
...@@ -187,3 +187,20 @@ export function wtqdqselect(params) { ...@@ -187,3 +187,20 @@ export function wtqdqselect(params) {
export function clqdselect(params) { export function clqdselect(params) {
return post(`/api/select/clqd`, 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> <template>
<div class="main"> <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-form-item label="批次年度:" prop="batchYear" class="fromItem">
<el-select v-model="ruleForm.batchYear" placeholder="请选择"> <el-select v-model="ruleForm.batchYear" placeholder="请选择">
<el-option label="2024年" value="2024"></el-option> <el-option label="2024年" value="2024"></el-option>
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
label-width="100px" label-width="100px"
class="demo-ruleForm" class="demo-ruleForm"
:rules="rules" :rules="rules"
ref="formName"
> >
<el-form-item <el-form-item
label="问题申诉截止时间:" label="问题申诉截止时间:"
...@@ -208,7 +208,7 @@ export default { ...@@ -208,7 +208,7 @@ export default {
} }
}, },
resetForm() { resetForm() {
this.$refs[formName].resetFields(); this.$refs.formName.resetFields();
this.currentPage = 1; this.currentPage = 1;
this.pageSize = 10; this.pageSize = 10;
this.submitForm(); this.submitForm();
......
<template> <template>
<div class="main"> <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-form-item label="批次年度:" prop="batchYear" class="fromItem">
<el-select v-model="ruleForm.batchYear" placeholder="请选择"> <el-select v-model="ruleForm.batchYear" placeholder="请选择">
<el-option label="2024年" value="2024"></el-option> <el-option label="2024年" value="2024"></el-option>
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
label-width="100px" label-width="100px"
class="demo-ruleForm" class="demo-ruleForm"
:rules="rules" :rules="rules"
ref="formName"
> >
<el-form-item <el-form-item
label="问题申诉截止时间:" label="问题申诉截止时间:"
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
this.submitForm(); this.submitForm();
}, },
methods: { methods: {
async submitForm(formName) { async submitForm() {
let params = { let params = {
current: this.currentPage, current: this.currentPage,
pageSize: this.pageSize, pageSize: this.pageSize,
...@@ -204,7 +204,7 @@ ...@@ -204,7 +204,7 @@
} }
}, },
resetForm() { resetForm() {
this.$refs[formName].resetFields(); this.$refs.formName.resetFields();
this.currentPage = 1; this.currentPage = 1;
this.pageSize = 10; this.pageSize = 10;
this.submitForm(); this.submitForm();
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
//问题下发 //问题下发
detailsForm() { detailsForm() {
if (this.checkedList.length != 1) { if (this.checkedList.length != 1) {
this.$message("请选择一条数据进行下发"); this.$message("请选择一条数据");
return; return;
} else { } else {
let params = { let params = {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!