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.
hyp-front/src/views/reward/apply/index.vue

467 lines
14 KiB

1 year ago
<template>
<div class="app-container">
12 months ago
<!-- 搜索部分-->
1 year ago
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
12 months ago
<el-form-item label="创建者" prop="createBy">
1 year ago
<el-input
v-model="queryParams.createBy"
12 months ago
placeholder="请输入创建者"
1 year ago
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
11 months ago
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
12 months ago
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
1 year ago
<el-option
12 months ago
v-for="dict in dict.type.rew_apply_status"
1 year ago
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" 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>
12 months ago
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>申请</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
12 months ago
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@handleAdd="handleAdd"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
1 year ago
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
12 months ago
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
12 months ago
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
1 year ago
<el-row>
12 months ago
<el-col :span="24">
12 months ago
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
12 months ago
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
1 year ago
</el-form-item>
</el-col>
12 months ago
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
12 months ago
:isShowButton="isShowButton"
12 months ago
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
10 months ago
:dialog-type="dialogType"
:modal-type="modalType"
12 months ago
>
</Update>
1 year ago
</el-form-item>
</el-col>
12 months ago
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
12 months ago
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
12 months ago
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
12 months ago
<el-row>
1 year ago
<el-col :span="24">
12 months ago
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
12 months ago
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
1 year ago
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
12 months ago
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
12 months ago
:isShowButton="isShowButton"
12 months ago
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
10 months ago
:modal-type="modalType"
12 months ago
ref="childComponent"
>
</Update>
1 year ago
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitForm"> </el-button>
1 year ago
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
12 months ago
import {checkUploadFile, delApply, getApplyId, getDetail, listApply, updateApply} from "@/api/reward/apply";
12 months ago
import CustomTable from "@/components/CustomTable/CustomTable.vue";
12 months ago
import Update from '@/components/AllTypeFile/update.vue'
12 months ago
1 year ago
export default {
12 months ago
name: "apply",
components: {CustomTable,Update},
12 months ago
dicts: ['rew_apply_status','rew_excellent_category'],
1 year ago
data() {
return {
12 months ago
templateType:'apply',
12 months ago
dialogType:'edit',
10 months ago
modalType:'',
12 months ago
isShowUploadButton:false,
12 months ago
//列数据
tableColumns: [
{ label: '创建者', prop: 'createBy', align: 'center' },
{ label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true },
{ label: '状态', prop: 'applyStatus', align: 'center',slotName: 'customSlotName' },
{ label: '创建时间', prop: 'createTime', align: 'center' },
{ label: '提交时间', prop: 'appTime', align: 'center',type:'date' },
],
//操作列
tableActions: [
12 months ago
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
12 months ago
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
12 months ago
],
//文件上传配置项
12 months ago
fileData:[],
1 year ago
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 公告表格数据
noticeList: [],
12 months ago
isReadOnly:false,
12 months ago
isShowButton:true,
12 months ago
isView:false,
1 year ago
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
12 months ago
editOpen:false,
1 year ago
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
12 months ago
applyName: undefined,
1 year ago
createBy: undefined,
12 months ago
applyStatus: undefined,
1 year ago
},
// 表单参数
12 months ago
form:{},
1 year ago
// 表单校验
rules: {
12 months ago
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
1 year ago
],
12 months ago
isReward: [
{ required: true, message: "请选择", trigger: "change" }
1 year ago
]
12 months ago
},
applyParam:{
applyType:''
},
12 months ago
applyId:'',
isDisabled:false,
1 year ago
};
12 months ago
},
computed: {
1 year ago
},
created() {
12 months ago
},
mounted() {
if(this.$route.path.includes('reward') === true){
this.$store.dispatch('apply/setApplyType', { key: 'applyType', value: 'rew_excellent_category' });
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
1 year ago
},
methods: {
/** 查询公告列表 */
12 months ago
getList(item) {
1 year ago
this.loading = true;
12 months ago
let queryObj = {
pageNum: 1,
pageSize: 10,
12 months ago
applyStatus:undefined,
12 months ago
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
1 year ago
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
12 months ago
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
1 year ago
});
},
// 取消按钮
cancel() {
this.open = false;
12 months ago
this.editOpen = false
1 year ago
this.reset();
12 months ago
this.fileData.forEach((item)=>{
item.childrenList = []
})
1 year ago
},
// 表单重置
reset() {
this.form = {
12 months ago
// applyName: undefined,
isReward: undefined,
1 year ago
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
12 months ago
// 查询参数
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
12 months ago
};
1 year ago
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
12 months ago
this.ids = selection.map(item => item.applyId)
1 year ago
this.single = selection.length!=1
this.multiple = !selection.length
},
12 months ago
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
12 months ago
/**查看按钮 */
handleView(row){
12 months ago
this.editOpen = true;
this.title = "查看申请";
12 months ago
const applyId = row.applyId || this.ids
12 months ago
this.isShowUploadButton = false
10 months ago
this.isShowButton = true
this.modalType = 'score'
this.templateType = 'applyView'
12 months ago
getDetail(applyId).then(response => {
this.form = response.data;
12 months ago
this.editOpen = true;
12 months ago
this.isReadOnly = true
this.isView = false
12 months ago
this.fileData.forEach((item)=>{
item.childrenList = []
})
if (response.code === 200) {
response.data.fileRelationVOList.forEach((item) => {
let index = this.fileData.findIndex(i => i.fileCode === item.fileCode);
if (index !== -1) {
this.fileData[index].childrenList.push({
name: item.fileName,
12 months ago
fileName:item.realName,
12 months ago
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
12 months ago
});
},
1 year ago
/** 新增按钮操作 */
12 months ago
handleAdd(applyType) {
1 year ago
this.reset();
this.isView=true;
1 year ago
this.open = true;
12 months ago
this.isReadOnly = false
this.isShowButton = true
12 months ago
this.isShowUploadButton = true
10 months ago
this.modalType = 'apply'
this.templateType = 'apply'
this.title = "添加申请";
12 months ago
// if(this.noticeList.length === 0){
12 months ago
getApplyId(this.applyParam).then(response => {
12 months ago
if (response.code === 200){
this.$store.dispatch('apply/setApplyId', { key: 'applyId', value: response.data.applyId });
this.applyId = localStorage.getItem('applyId')
this.getList()
}
}).catch((err)=>{
this.isDisabled = true
12 months ago
});
12 months ago
// }
1 year ago
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
12 months ago
this.applyId = row.applyId
12 months ago
this.isReadOnly = false
this.isShowButton = true
12 months ago
this.isShowUploadButton = true
10 months ago
this.modalType = 'apply'
this.templateType = 'apply'
12 months ago
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
12 months ago
this.fileData.forEach((item)=>{
item.childrenList = []
})
if (response.code === 200) {
response.data.fileRelationVOList.forEach((item) => {
12 months ago
let index = this.fileData.findIndex(i => i.fileCode === item.fileCode);
if (index !== -1) {
this.fileData[index].childrenList.push({
name: item.fileName,
12 months ago
fileName:item.realName,
12 months ago
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
12 months ago
});
1 year ago
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
12 months ago
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
12 months ago
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
11 months ago
this.$modal.msgSuccess("提交成功");
12 months ago
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
1 year ago
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
12 months ago
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
12 months ago
return delApply(applyId);
1 year ago
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
12 months ago
localStorage.removeItem('applyId');
1 year ago
}).catch(() => {});
}
}
};
</script>
12 months ago
<style scoped lang="scss">
12 months ago
::v-deep .el-table__cell{
padding: 8px 0;
}
12 months ago
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
12 months ago
::v-deep .el-dialog__footer{
padding: 0;
}
12 months ago
.fullscreen-dialog {
.el-dialog__wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.5); /* 遮罩层透明度 */
}
.el-dialog {
width: 100%;
height: 100%;
margin: 0;
border: none;
border-radius: 0;
}
}
</style>