Compare commits

...

57 Commits
master ... dev

Author SHA1 Message Date
wangxy 20968e70c5 feat:修改提示信息
11 months ago
wangxy f5001e398e feat:修改提示信息
11 months ago
dshclm 6eda7b604a 提交修改
11 months ago
dshclm 3f65f54661 提交修改
11 months ago
wangxy f6bccff7c7 fix:密码加密
11 months ago
wangxy 86c2177602 fix:登录实现滑块
11 months ago
wangxy 7e0928924a fix:登录实现滑块
11 months ago
wangxy f925c7b081 fix:头像
11 months ago
wangxy 42d3dc75f2 fix:头像
11 months ago
dsh 0ec7a17e8d 提交修改
11 months ago
wangxy cbf94f773e fix:头像
11 months ago
dsh 9127b8ef66 提交修改
11 months ago
dsh dcf26047ff 提交修改
11 months ago
dsh af30550823 提交修改
11 months ago
dsh 8bc3db61b0 提交修改
12 months ago
dsh f91460c08b 提交修改
12 months ago
dsh 777c69e55b 提交修改
12 months ago
dsh 02f0765c2b Merge remote-tracking branch 'origin/dev' into dev
12 months ago
dsh 0f9ab54b8b 提交修改
12 months ago
wangxy 1d2c349b7c fix:头像
12 months ago
wangxy ca1147b12d fix:头像
12 months ago
dsh 983305066f 提交修改
12 months ago
dsh c221b57f9c 提交修改
12 months ago
dsh 9d960acbad 提交修改
12 months ago
dsh 7cea12a706 提交修改
12 months ago
dsh 774685ad8e 提交修改
12 months ago
dsh 6ce0d0a755 教师奖、校长奖提交
12 months ago
dsh 80e6df34cb 提交修改
12 months ago
dsh 72b9d69a1e 优秀学校奖(培训机构类)提交
12 months ago
dsh 2e6d9368b7 提交修改
12 months ago
dsh be3cb0865a 提交修改
12 months ago
dsh c35aac1d6b 提交修改
12 months ago
dsh 491d7b00cc 提交修改
12 months ago
dsh dc8f9c988e 提交修改
12 months ago
dsh 684f82eb76 评分提交
12 months ago
dsh 597f879758 审核提交修改
12 months ago
dsh c1906e73d0 审核提交修改
12 months ago
dsh 41faac0bae 审核提交修改
12 months ago
dsh d4461fdc9f 审核提交修改
12 months ago
dsh 6f517b5891 审核提交
12 months ago
dsh 154d974f76 提交修改
12 months ago
dsh e8ccb41072 提交修改
12 months ago
dsh 5e2ed571d7 提交修改
12 months ago
dsh 6d6a2cc3f3 提交修改
12 months ago
dsh 1c2803cd16 提交修改
12 months ago
dsh 5365472b18 申请提交
12 months ago
wangxy 3f4838a562 fix:用户注册添加申报类型
12 months ago
wangxy b19a311099 fix:用户注册添加申报类型
12 months ago
wangxy 322a3d6563 fix:用户注册添加申报类型
12 months ago
wangxy 9846d18420 fix:添加用户账号校验
12 months ago
wangxy e7f148745d fix:添加用户账号校验
12 months ago
wangxy 213628a0fd fix:测试
12 months ago
wangxy 89407f0d97 fix:测试
12 months ago
wangxy cf59532b30 fix:测试
12 months ago
wangxy 069a88b81c 测试
12 months ago
wangxy 594972eefa 测试
12 months ago
wangxy ed36f0d1ab 代码提交
1 year ago

@ -40,6 +40,7 @@
"axios": "0.24.0",
"clipboard": "2.0.8",
"core-js": "3.25.3",
"crypto-js": "4.1.1",
"echarts": "5.4.0",
"element-ui": "2.15.14",
"file-saver": "2.0.5",

@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<link rel="icon" href="<%= BASE_URL %>logo.png">
<title><%= webpackConfig.name %></title>
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

@ -0,0 +1,8 @@
import request from "@/utils/request";
export function getNotice() {
return request({
url: "/system/notice/getNotice",
method: "get",
});
}

@ -1,12 +1,13 @@
import request from '@/utils/request'
import { encrypt } from '@/utils/jsencrypt'
// 登录方法
export function login(username, password, code, uuid) {
export function login(username, password, code) {
password = encrypt(password);
const data = {
username,
password,
code,
uuid
code
}
return request({
url: '/login',
@ -47,14 +48,10 @@ export function logout() {
})
}
// 获取验证码
export function getCodeImg() {
// 获取验证码开关
export function isCaptchaEnabled() {
return request({
url: '/captchaImage',
headers: {
isToken: false
},
method: 'get',
timeout: 20000
url: '/captchaEnabled',
method: 'get'
})
}
}

@ -0,0 +1,53 @@
import request from '@/utils/request'
// 查询公告列表
export function listAduit(query) {
return request({
url: '/reward/audit/list',
method: 'get',
params: query
})
}
//查询详细
export function getDetail(query) {
return request({
url: '/reward/apply/detail/' + query,
method: 'get'
})
}
//审核通过/不通过
export function filePass(fileId,fileState) {
return request({
url: '/reward/file/filePass',
method: 'get',
params:{
fileId :fileId ,
fileState:fileState,
}
})
}
//材料校验
export function checkFile(applyId ){
return request({
url: '/reward/file/checkFile/'+applyId,
method: 'get',
})
}
//审核提交
export function approved(applyId){
return request({
url: '/reward/audit/approved/'+ applyId,
method: 'get',
})
}
//退回
export function applyBack(applyId,applyMsg){
return request({
url: '/reward/audit/applyBack',
method: 'get',
params:{
applyId:applyId,
applyMsg:applyMsg
}
})
}

@ -0,0 +1,66 @@
import request from '@/utils/request'
// 查询公告列表
export function listApply(query) {
return request({
url: '/reward/apply/list',
method: 'get',
params: query
})
}
//根据奖项类型生成applyId
export function getApplyId(query) {
return request({
url: '/reward/apply/getApplyId',
method: 'get',
params: query
})
}
//查询详细
export function getDetail(query) {
return request({
url: '/reward/apply/detail/' + query,
method: 'get'
})
}
// 修改
export function updateApply(data) {
return request({
url: '/reward/apply/submit',
method: 'post',
data: data
})
}
// 删除公告
export function delApply(applyId) {
return request({
url: '/reward/apply/delete/' + applyId,
method: 'delete'
})
}
// 删除文件
export function delFile(fileId) {
return request({
url: '/reward/file/delFile/' + fileId,
method: 'get'
})
}
// 查询文件列表
export function listFile(query) {
return request({
url: '/reward/file/getFileInfo',
method: 'get',
params: {applyId:query}
})
}
//材料申请校验
export function checkUploadFile(applyId,applyType) {
return request({
url: '/reward/apply/checkUploadFile',
method: 'get',
params:{
applyId:applyId,
applyType:applyType
}
})
}

@ -0,0 +1,60 @@
import request from '@/utils/request'
// 查询公告列表
export function listScore(query) {
return request({
url: '/reward/score/list',
method: 'get',
params: query
})
}
//查询详细
export function getScoreInfo(query) {
return request({
url: '/reward/score/getScoreInfo/',
method: 'get',
params:{
applyId:query
}
})
}
//查询详细
export function getDetail(query) {
return request({
url: '/reward/apply/detail/' + query,
method: 'get'
})
}
// 修改
export function scoreSave(data) {
return request({
url: '/reward/score/save',
method: 'post',
data: data
})
}
//材料校验
export function checkFile(applyId ){
return request({
url: '/reward/file/checkFile/'+applyId,
method: 'get',
})
}
//审核提交
export function approved(applyId){
return request({
url: '/reward/audit/approved/'+ applyId,
method: 'get',
})
}
//退回
export function applyBack(applyId,applyMsg){
return request({
url: '/reward/audit/applyBack',
method: 'get',
params:{
applyId:applyId,
applyMsg:applyMsg
}
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1008 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 13 KiB

@ -0,0 +1,328 @@
<template>
<div>
<el-table
:data="tableData"
class="uploadClass"
style="width: 100%;height: 630px;overflow: auto;"
@expand-change="handleExpand"
>
<el-table-column type="expand">
<template v-slot:default="scope">
<el-table
class="down"
:data="scope.row.childrenList"
stripe
style="width: 100%;"
:show-header="false"
ref="table"
>
<el-table-column prop="name" align="left" label="文件名称">
<template slot-scope="scope">
<el-link style="margin-right: auto;" :href="`${scope.row.url}`" :underline="false" target="_blank">
<span class="el-icon-document"> {{ getFileName(scope.row.fileName) }} </span>
</el-link>
</template>
</el-table-column>
<el-table-column v-if="isShowUploadButton">
</el-table-column>
<el-table-column label="审核状态" align="center" >
<template slot-scope="scope" class="button-cell" >
<el-tag v-if="scope.row.state === 1" type="success"></el-tag>
<el-tag v-else-if="scope.row.state === 2" type="warning">不通过</el-tag>
<el-tag v-else type="warning">未审核</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" align="center" >
<template slot-scope="scope" v-if="isShowButton">
<el-button size="small" type="text" icon="el-icon-download" @click="downloadFile(scope.row.fileId,scope.row.name)"></el-button>
<el-button size="small" type="text" icon="el-icon-check" @click="filePassMethod(scope.row,'pass')" v-if="templateType==='aduit'"></el-button>
<el-button size="small" type="text" icon="el-icon-close" @click="filePassMethod(scope.row,'nopass')" v-if="templateType==='aduit'"></el-button>
<el-button size="small" type="text" icon="el-icon-delete" @click="deleteHandle(scope.row.fileId,scope)" v-if="templateType==='apply'"></el-button>
</template>
</el-table-column>
</el-table>
</template>
</el-table-column>
<el-table-column label="文件名称" prop="name"></el-table-column>
<el-table-column label="上传文件" v-if="isShowUploadButton">
<template v-slot:default="scope" v-if="isShowUploadButton">
<el-upload
class="upload-demo"
ref="upload"
:action="uploadUrl + '?applyId=' + applyId + '&fileCode=' + scope.row.fileCode"
:headers="header"
:file-list="scope.row.childrenList"
:show-file-list="false"
:on-error="handleUploadError"
:on-success="uploadSuccess(scope.row)"
>
<el-button size="small" type="primary">上传文件</el-button>
</el-upload>
</template>
</el-table-column>
<el-table-column label="状态" prop="status">
<template v-slot:default="scope">
<el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag>
<el-tag v-else type="success">已上传</el-tag>
</template>
</el-table-column>
<el-table-column label="操作">
<template v-slot:default="scope">
{{ scope.row.expanded ? '已展开' : '已收起' }}
</template>
</el-table-column>
</el-table>
<!-- 其他内容 -->
<slot name="tableSlot"></slot>
<!-- 其他内容 -->
</div>
</template>
<script>
import {getToken} from "@/utils/auth";
import {Loading, Message} from "element-ui";
import {blobValidate, tansParams} from "@/utils/ruoyi";
import errorCode from "@/utils/errorCode";
import service from "@/utils/request";
import {delFile, listFile} from "@/api/reward/apply";
import {approved, filePass} from "@/api/reward/aduit";
export default {
props:{
applyId:{
type:String,
default:'',
require:true,
},
dialogType:{
type:String,
default: '',
},
tableData:{
type:Array,
default:()=>[],
require:true,
},
isShowButton:{
type:Boolean,
},
templateType:{
type:String,
},
isShowUploadButton:{
type:Boolean,
},
},
data() {
return {
header:{ Authorization: "Bearer " + getToken() },
uploadUrl:process.env.VUE_APP_BASE_API + "/reward/file/upload",
baseUrl: process.env.VUE_APP_BASE_API,
}
},
mounted() {
console.log(this.templateType)
},
methods:{
filePassMethod(row,status){
if (status === 'pass'){
filePass(row.fileId,'1').then((res) => {
if (res.code === 200) {
this.$message({
message: "审核通过",
type: "success",
});
this.$set(row, 'state', 1);
} else {
this.$message.error(res.msg);
}
});
}else if (status === 'nopass'){
filePass(row.fileId,'2').then((res) => {
if (res.code === 200) {
this.$message({
message: "审核不通过",
type: "warning",
});
this.$set(row, 'state', 2);
}else {
this.$message.error(res.msg);
}
})
}
},
//
handleUploadError(err) {
this.$modal.msgError("文件上传失败,请重试");
this.$modal.closeLoading();
},
uploadSuccess(row) {
return (response, file) => {
if (response.code === 200) {
row.childrenList.push({
name: file.raw.name,
fileName:response.data.realName,
url: response.data.filePath,
state:response.data.fileState,
fileId:response.data.fileId,
fileCode:response.data.fileCode,
});
this.$modal.msgSuccess("文件上传成功");
}
};
},
handleExpand(row, expandedRows) {
row.expanded = !!expandedRows.includes(row);
},
//
handleDelete(index) {
this.fileList.splice(index, 1);
this.$emit("input", this.listToString(this.fileList));
},
//
getFileName(name) {
// url
if (name.lastIndexOf("/") > -1) {
return name.slice(name.lastIndexOf("/") + 1);
} else {
return name;
}
},
previewFile(file) {
debugger
const fileType = this.getFileType(file.name);
switch (fileType) {
case 'image':
this.$router.push(`${this.baseUrl}/${file.url}`);
break;
case 'pdf':
this.$router.push(`/preview/pdf/${file.url}`);
break;
case 'excel':
this.$router.push(`/preview/excel/${file.url}`);
break;
case 'word':
this.$router.push(`/preview/word/${file.url}`);
break;
default:
//
break;
}
},
getFileType(fileName) {
const extension = fileName.split('.').pop().toLowerCase();
if (['jpg', 'jpeg', 'png', 'gif'].includes(extension)) {
return 'image';
} else if (['pdf'].includes(extension)) {
return 'pdf';
} else if (['xlsx', 'xls'].includes(extension)) {
return 'excel';
} else if (['doc', 'docx'].includes(extension)) {
return 'word';
} else {
return 'unknown';
}
},
//
listToString(list, separator) {
let strs = "";
separator = separator || ",";
for (let i in list) {
strs += list[i].url + separator;
}
return strs != '' ? strs.substr(0, strs.length - 1) : '';
},
downloadFile(fileId, fileName) {
let downloadLoadingInstance = Loading.service({ text: "正在下载数据,请稍候", spinner: "el-icon-loading", background: "rgba(0, 0, 0, 0.7)", })
// URLURL
const url = `/reward/file/download?fileId=${fileId}`;
return service.get(url, {
responseType: 'blob',
}).then(async (data) => {
const isBlob = blobValidate(data);
if (isBlob) {
const blob = new Blob([data])
saveAs(blob, fileName)
} else {
const resText = await data.text();
const rspObj = JSON.parse(resText);
const errMsg = errorCode[rspObj.code] || rspObj.msg || errorCode['default']
Message.error(errMsg);
}
downloadLoadingInstance.close();
}).catch((r) => {
console.error(r)
Message.error('下载文件出现错误,请联系管理员!')
downloadLoadingInstance.close();
})
},
deleteHandle(fileId,scope) {
let index = this.tableData.findIndex(item => item.fileCode === scope.row.fileCode);
let findIndex = this.tableData[index].childrenList.findIndex(item => item.fileId === fileId)
this.$confirm(`确定删除该文件吗?`, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
delFile(fileId).then((res) => {
if (res.code === 200) {
this.$message({
message: "删除成功",
type: "success",
});
if (findIndex !== -1) {
this.tableData[index].childrenList.splice(findIndex, 1);
}
} else {
this.$message.error(res.msg);
}
});
});
},
},
}
</script>
<style scoped lang="scss">
::v-deep .el-table::before {
left: 0;
bottom: 0;
width: 0;
height: 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .cell{
text-align: center;
}
.el\-upload\-list__item{
display: flex;
justify-content: space-around;
}
.demo-table-expand {
font-size: 0;
}
.demo-table-expand label {
width: 90px;
color: #99a9bf;
}
.demo-table-expand .el-form-item {
margin-right: 0;
margin-bottom: 0;
width: 100%;
::v-deep .el-form-item__content{
width: 100%;
display: flex;
justify-content: space-around;
.action{
width: 45%;
text-align: center;
box-sizing: border-box;
padding-left: 123px;
}
}
}
</style>

@ -0,0 +1,126 @@
<template>
<div class="app-container">
<!-- 表格部分-->
<el-table v-loading="loading" :row-selection="true" :data="tableData" @select="handleSelectionChange">
<el-table-column v-for="(column, index) in columns" :key="index" :label="column.label" :prop="column.prop" :align="column.align" :width="column.width">
<template v-if="column.type === 'date'" v-slot:default="scope">
<span>{{ parseTime(scope.row[column.prop], '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
<template v-else-if="column.slotName === 'customSlotName'" v-slot:default="scope">
<dict-tag :options="dict.type.rew_apply_status" :value="scope.row[column.prop]"/>
</template>
<template v-else-if="column.slotName === 'scoreStatus'" v-slot:default="scope">
<el-tag v-for="(item,index) in scoreStatus" :key="index" :type="item.type" v-if="item.dictValue === scope.row.scoreStatus">{{item.dictLabel}}</el-tag>
</template>
<template v-else v-slot:default="scope">
<span>{{ scope.row[column.prop] }}</span>
</template>
</el-table-column>
<!-- Actions Column -->
<el-table-column v-if="actions.length > 0 && modalType !== 'score'" label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button v-for="(action, index) in filteredActions(scope.row.applyStatus)" :key="index" size="mini" type="text" :icon="action.icon" @click="action.handler(scope.row)">{{ action.text }}</el-button>
</template>
</el-table-column>
<el-table-column v-else label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button v-for="(action, index) in actions" :key="index" size="mini" type="text" :icon="action.icon" @click="action.handler(scope.row)">{{ action.text }}</el-button>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
import {parseTime} from "@/utils/ruoyi";
export default {
dicts: ['rew_apply_status'],
props: {
columns: {
type: Array,
required: true
},
tableData: {
type: Array,
required: true
},
loading: {
type: Boolean,
default: false
},
actions: {
type: Array,
default: () => []
},
//
queryParams:{
type:Object,
default:()=>{}
},
//
showSearch:{
type: Boolean,
default: true
},
applyType:{
type:String,
default:'',
},
modalType:{
type:String,
}
},
data(){
return {
scoreStatus:[
{
dictLabel:"未评分",
dictValue:0,
type:"danger"
},
{
dictLabel:"已评分",
dictValue:1,
type:"success",
}
]
}
},
mounted() {
},
methods: {
parseTime,
filteredActions(applyStatus) {
if(applyStatus === 0 || applyStatus === 1){
return this.actions.filter(action => action.text !== '退回意见');
}
if (applyStatus === 3) {
return this.actions
} else if(applyStatus === 2 || applyStatus === 4){
return this.actions.filter(action => action.text === '查看');
}
},
//
getList(query){
this.$emit('getList', query);
},
//
handleAdd(applyType){
this.$emit('handleAdd', applyType);
},
//
handleQuery(query){
this.$emit('handleQuery', query);
},
resetQuery(query){
this.$emit('resetQuery', query);
},
handleSelectionChange(selection) {
this.$emit('handleSelectionChange', selection);
},
}
}
</script>

File diff suppressed because one or more lines are too long

@ -0,0 +1,290 @@
<template>
<div style="position: relative">
<div class="verify-img-out">
<div
class="verify-img-panel"
:style="{
width: setSize.imgWidth,
height: setSize.imgHeight,
'background-size': setSize.imgWidth + ' ' + setSize.imgHeight,
'margin-bottom': vSpace + 'px',
}"
>
<div
class="verify-refresh"
style="z-index: 3"
@click="refresh"
v-show="showRefresh"
>
<i class="iconfont icon-refresh"></i>
</div>
<img
:src="
pointBackImgBase
? 'data:image/png;base64,' + pointBackImgBase
: defaultImg
"
ref="canvas"
alt=""
style="width: 100%; height: 100%; display: block"
@click="bindingClick ? canvasClick($event) : undefined"
/>
<div
v-for="(tempPoint, index) in tempPoints"
:key="index"
class="point-area"
:style="{
'background-color': '#1abd6c',
color: '#fff',
'z-index': 9999,
width: '20px',
height: '20px',
'text-align': 'center',
'line-height': '20px',
'border-radius': '50%',
position: 'absolute',
top: parseInt(tempPoint.y - 10) + 'px',
left: parseInt(tempPoint.x - 10) + 'px',
}"
>
{{ index + 1 }}
</div>
</div>
</div>
<!-- 'height': this.barSize.height, -->
<div
class="verify-bar-area"
:style="{
width: setSize.imgWidth,
color: this.barAreaColor,
'border-color': this.barAreaBorderColor,
'line-height': this.barSize.height,
}"
>
<span class="verify-msg">{{ text }}</span>
</div>
</div>
</template>
<script type="text/babel">
/**
* VerifyPoints
* @description 点选
* */
import {
resetSize,
_code_chars,
_code_color1,
_code_color2,
} from "./../utils/util";
import { aesEncrypt } from "./../utils/ase";
import { reqGet, reqCheck } from "./../api/index";
export default {
name: "VerifyPoints",
props: {
//popfixed
mode: {
type: String,
default: "fixed",
},
captchaType: {
type: String,
},
//
vSpace: {
type: Number,
default: 5,
},
imgSize: {
type: Object,
default() {
return {
width: "310px",
height: "155px",
};
},
},
barSize: {
type: Object,
default() {
return {
width: "310px",
height: "40px",
};
},
},
defaultImg: {
type: String,
default: "",
},
},
data() {
return {
secretKey: "", //ase
checkNum: 3, //
fontPos: [], //
checkPosArr: [], //
num: 1, //
pointBackImgBase: "", //
poinTextList: [], //
backToken: "", //token
setSize: {
imgHeight: 0,
imgWidth: 0,
barHeight: 0,
barWidth: 0,
},
tempPoints: [],
text: "",
barAreaColor: undefined,
barAreaBorderColor: undefined,
showRefresh: true,
bindingClick: true,
};
},
computed: {
resetSize() {
return resetSize;
},
},
methods: {
init() {
//
this.fontPos.splice(0, this.fontPos.length);
this.checkPosArr.splice(0, this.checkPosArr.length);
this.num = 1;
this.getPictrue();
this.$nextTick(() => {
this.setSize = this.resetSize(this); //
this.$parent.$emit("ready", this);
});
},
canvasClick(e) {
this.checkPosArr.push(this.getMousePos(this.$refs.canvas, e));
if (this.num == this.checkNum) {
this.num = this.createPoint(this.getMousePos(this.$refs.canvas, e));
//
this.checkPosArr = this.pointTransfrom(this.checkPosArr, this.setSize);
//
setTimeout(() => {
// var flag = this.comparePos(this.fontPos, this.checkPosArr);
//
var captchaVerification = this.secretKey
? aesEncrypt(
this.backToken + "---" + JSON.stringify(this.checkPosArr),
this.secretKey
)
: this.backToken + "---" + JSON.stringify(this.checkPosArr);
let data = {
captchaType: this.captchaType,
pointJson: this.secretKey
? aesEncrypt(JSON.stringify(this.checkPosArr), this.secretKey)
: JSON.stringify(this.checkPosArr),
token: this.backToken,
};
reqCheck(data).then((res) => {
if (res.repCode == "0000") {
this.barAreaColor = "#4cae4c";
this.barAreaBorderColor = "#5cb85c";
this.text = "验证成功";
this.bindingClick = false;
if (this.mode == "pop") {
setTimeout(() => {
this.$parent.clickShow = false;
this.refresh();
}, 1500);
}
this.$parent.$emit("success", { captchaVerification });
} else {
this.$parent.$emit("error", this);
this.barAreaColor = "#d9534f";
this.barAreaBorderColor = "#d9534f";
this.text = "验证失败";
setTimeout(() => {
this.refresh();
}, 700);
}
});
}, 400);
}
if (this.num < this.checkNum) {
this.num = this.createPoint(this.getMousePos(this.$refs.canvas, e));
}
},
//
getMousePos: function (obj, e) {
var x = e.offsetX;
var y = e.offsetY;
return { x, y };
},
//
createPoint: function (pos) {
this.tempPoints.push(Object.assign({}, pos));
return ++this.num;
},
refresh: function () {
this.tempPoints.splice(0, this.tempPoints.length);
this.barAreaColor = "#000";
this.barAreaBorderColor = "#ddd";
this.bindingClick = true;
this.fontPos.splice(0, this.fontPos.length);
this.checkPosArr.splice(0, this.checkPosArr.length);
this.num = 1;
this.getPictrue();
this.text = "验证失败";
this.showRefresh = true;
},
//
getPictrue() {
let data = {
captchaType: this.captchaType,
clientUid: localStorage.getItem("point"),
ts: Date.now(), //
};
reqGet(data).then((res) => {
if (res.repCode == "0000") {
this.pointBackImgBase = res.repData.originalImageBase64;
this.backToken = res.repData.token;
this.secretKey = res.repData.secretKey;
this.poinTextList = res.repData.wordList;
this.text = "请依次点击【" + this.poinTextList.join(",") + "】";
} else {
this.text = res.repMsg;
}
//
if (res.repCode == "6201") {
this.pointBackImgBase = null;
}
});
},
//
pointTransfrom(pointArr, imgSize) {
var newPointArr = pointArr.map((p) => {
let x = Math.round((310 * p.x) / parseInt(imgSize.imgWidth));
let y = Math.round((155 * p.y) / parseInt(imgSize.imgHeight));
return { x, y };
});
return newPointArr;
},
},
watch: {
// type
type: {
immediate: true,
handler() {
this.init();
},
},
},
mounted() {
//
this.$el.onselectstart = function () {
return false;
};
},
};
</script>

@ -0,0 +1,433 @@
<template>
<div style="position: relative">
<div
v-if="type === '2'"
class="verify-img-out"
:style="{ height: parseInt(setSize.imgHeight) + vSpace + 'px' }"
>
<div
class="verify-img-panel"
:style="{ width: setSize.imgWidth, height: setSize.imgHeight }"
>
<img
:src="
backImgBase ? 'data:image/png;base64,' + backImgBase : defaultImg
"
alt=""
style="width: 100%; height: 100%; display: block"
/>
<div class="verify-refresh" @click="refresh" v-show="showRefresh">
<i class="iconfont icon-refresh"></i>
</div>
<transition name="tips">
<span
class="verify-tips"
v-if="tipWords"
:class="passFlag ? 'suc-bg' : 'err-bg'"
>{{ tipWords }}</span
>
</transition>
</div>
</div>
<!-- 公共部分 -->
<div
class="verify-bar-area"
:style="{
width: setSize.imgWidth,
height: barSize.height,
'line-height': barSize.height,
}"
>
<span class="verify-msg" v-text="text"></span>
<div
class="verify-left-bar"
:style="{
width: leftBarWidth !== undefined ? leftBarWidth : barSize.height,
height: barSize.height,
'border-color': leftBarBorderColor,
transaction: transitionWidth,
}"
>
<span class="verify-msg" v-text="finishText"></span>
<div
class="verify-move-block"
@touchstart="start"
@mousedown="start"
:style="{
width: barSize.height,
height: barSize.height,
'background-color': moveBlockBackgroundColor,
left: moveBlockLeft,
transition: transitionLeft,
}"
>
<i
:class="['verify-icon iconfont', iconClass]"
:style="{ color: iconColor }"
></i>
<div
v-if="type === '2'"
class="verify-sub-block"
:style="{
width: Math.floor((parseInt(setSize.imgWidth) * 47) / 310) + 'px',
height: setSize.imgHeight,
top: '-' + (parseInt(setSize.imgHeight) + vSpace) + 'px',
'background-size': setSize.imgWidth + ' ' + setSize.imgHeight,
}"
>
<img
:src="'data:image/png;base64,' + blockBackImgBase"
alt=""
style="width: 100%; height: 100%; display: block"
/>
</div>
</div>
</div>
</div>
</div>
</template>
<script type="text/babel">
/**
* VerifySlide
* @description 滑块
* */
import { aesEncrypt } from "./../utils/ase";
import { resetSize } from "./../utils/util";
import { reqGet, reqCheck } from "./../api/index";
// "captchaType":"blockPuzzle",
export default {
name: "VerifySlide",
props: {
captchaType: {
type: String,
},
type: {
type: String,
default: "1",
},
//popfixed
mode: {
type: String,
default: "fixed",
},
vSpace: {
type: Number,
default: 5,
},
explain: {
type: String,
default: "向右滑动完成验证",
},
imgSize: {
type: Object,
default() {
return {
width: "310px",
height: "155px",
};
},
},
blockSize: {
type: Object,
default() {
return {
width: "50px",
height: "50px",
};
},
},
barSize: {
type: Object,
default() {
return {
width: "310px",
height: "40px",
};
},
},
defaultImg: {
type: String,
default: "",
},
},
data() {
return {
secretKey: "", //
passFlag: "", //
backImgBase: "", //
blockBackImgBase: "", //
backToken: "", //token
startMoveTime: "", //
endMovetime: "", //
tipsBackColor: "", //
tipWords: "",
text: "",
finishText: "",
setSize: {
imgHeight: 0,
imgWidth: 0,
barHeight: 0,
barWidth: 0,
},
top: 0,
left: 0,
moveBlockLeft: undefined,
leftBarWidth: undefined,
//
moveBlockBackgroundColor: undefined,
leftBarBorderColor: "#ddd",
iconColor: undefined,
iconClass: "icon-right",
status: false, //
isEnd: false, //
showRefresh: true,
transitionLeft: "",
transitionWidth: "",
};
},
computed: {
barArea() {
return this.$el.querySelector(".verify-bar-area");
},
resetSize() {
return resetSize;
},
},
methods: {
init() {
this.text = this.explain;
this.getPictrue();
this.$nextTick(() => {
let setSize = this.resetSize(this); //
for (let key in setSize) {
this.$set(this.setSize, key, setSize[key]);
}
this.$parent.$emit("ready", this);
});
var _this = this;
window.removeEventListener("touchmove", function (e) {
_this.move(e);
});
window.removeEventListener("mousemove", function (e) {
_this.move(e);
});
//
window.removeEventListener("touchend", function () {
_this.end();
});
window.removeEventListener("mouseup", function () {
_this.end();
});
window.addEventListener("touchmove", function (e) {
_this.move(e);
});
window.addEventListener("mousemove", function (e) {
_this.move(e);
});
//
window.addEventListener("touchend", function () {
_this.end();
});
window.addEventListener("mouseup", function () {
_this.end();
});
},
//
start: function (e) {
e = e || window.event;
if (!e.touches) {
//PC
var x = e.clientX;
} else {
//
var x = e.touches[0].pageX;
}
this.startLeft = Math.floor(
x - this.barArea.getBoundingClientRect().left
);
this.startMoveTime = +new Date(); //
if (this.isEnd == false) {
this.text = "";
this.moveBlockBackgroundColor = "#337ab7";
this.leftBarBorderColor = "#337AB7";
this.iconColor = "#fff";
e.stopPropagation();
this.status = true;
}
},
//
move: function (e) {
e = e || window.event;
if (this.status && this.isEnd == false) {
if (!e.touches) {
//PC
var x = e.clientX;
} else {
//
var x = e.touches[0].pageX;
}
var bar_area_left = this.barArea.getBoundingClientRect().left;
var move_block_left = x - bar_area_left; //left
if (
move_block_left >=
this.barArea.offsetWidth -
parseInt(parseInt(this.blockSize.width) / 2) -
2
) {
move_block_left =
this.barArea.offsetWidth -
parseInt(parseInt(this.blockSize.width) / 2) -
2;
}
if (move_block_left <= 0) {
move_block_left = parseInt(parseInt(this.blockSize.width) / 2);
}
//left
this.moveBlockLeft = move_block_left - this.startLeft + "px";
this.leftBarWidth = move_block_left - this.startLeft + "px";
}
},
//
end: function () {
this.endMovetime = +new Date();
var _this = this;
//
if (this.status && this.isEnd == false) {
var moveLeftDistance = parseInt(
(this.moveBlockLeft || "").replace("px", "")
);
moveLeftDistance =
(moveLeftDistance * 310) / parseInt(this.setSize.imgWidth);
let data = {
captchaType: this.captchaType,
pointJson: this.secretKey
? aesEncrypt(
JSON.stringify({ x: moveLeftDistance, y: 5.0 }),
this.secretKey
)
: JSON.stringify({ x: moveLeftDistance, y: 5.0 }),
token: this.backToken,
};
reqCheck(data).then((res) => {
if (res.repCode == "0000") {
this.moveBlockBackgroundColor = "#5cb85c";
this.leftBarBorderColor = "#5cb85c";
this.iconColor = "#fff";
this.iconClass = "icon-check";
this.showRefresh = false;
this.isEnd = true;
this.passFlag = true;
this.tipWords = `${(
(this.endMovetime - this.startMoveTime) /
1000
).toFixed(2)}s验证成功`;
var captchaVerification = this.secretKey
? aesEncrypt(
this.backToken +
"---" +
JSON.stringify({ x: moveLeftDistance, y: 5.0 }),
this.secretKey
)
: this.backToken +
"---" +
JSON.stringify({ x: moveLeftDistance, y: 5.0 });
setTimeout(() => {
this.tipWords = "";
this.$parent.closeBox();
this.$parent.$emit("success", { captchaVerification });
}, 1000);
} else {
this.moveBlockBackgroundColor = "#d9534f";
this.leftBarBorderColor = "#d9534f";
this.iconColor = "#fff";
this.iconClass = "icon-close";
this.passFlag = false;
setTimeout(function () {
_this.refresh();
}, 1000);
this.$parent.$emit("error", this);
this.tipWords = "验证失败";
setTimeout(() => {
this.tipWords = "";
}, 1000);
}
});
this.status = false;
}
},
refresh: function () {
this.showRefresh = true;
this.finishText = "";
this.transitionLeft = "left .3s";
this.moveBlockLeft = 0;
this.leftBarWidth = undefined;
this.transitionWidth = "width .3s";
this.leftBarBorderColor = "#ddd";
this.moveBlockBackgroundColor = "#fff";
this.iconColor = "#000";
this.iconClass = "icon-right";
this.isEnd = false;
this.getPictrue();
setTimeout(() => {
this.transitionWidth = "";
this.transitionLeft = "";
this.text = this.explain;
}, 300);
},
//
getPictrue() {
let data = {
captchaType: this.captchaType,
clientUid: localStorage.getItem("slider"),
ts: Date.now(), //
};
reqGet(data).then((res) => {
if (res.repCode == "0000") {
this.backImgBase = res.repData.originalImageBase64;
this.blockBackImgBase = res.repData.jigsawImageBase64;
this.backToken = res.repData.token;
this.secretKey = res.repData.secretKey;
} else {
this.tipWords = res.repMsg;
}
//
if (res.repCode == "6201") {
this.backImgBase = null;
this.blockBackImgBase = null;
}
});
},
},
watch: {
// type
type: {
immediate: true,
handler() {
this.init();
},
},
},
mounted() {
//
this.$el.onselectstart = function () {
return false;
};
},
};
</script>

@ -0,0 +1,19 @@
import request from '@/utils/request'
//获取验证图片
export function reqGet(data) {
return request({
url: '/captcha/get',
method: 'post',
data
})
}
//滑动或者点选验证
export function reqCheck(data) {
return request({
url: '/captcha/check',
method: 'post',
data
})
}

@ -0,0 +1,11 @@
import CryptoJS from 'crypto-js'
/**
* @word 要加密的内容
* @keyWord String 服务器随机返回的关键字
* */
export function aesEncrypt(word, keyWord = "XwKsGlMcdPMEhR1B") {
var key = CryptoJS.enc.Utf8.parse(keyWord);
var srcs = CryptoJS.enc.Utf8.parse(word);
var encrypted = CryptoJS.AES.encrypt(srcs, key, { mode: CryptoJS.mode.ECB, padding: CryptoJS.pad.Pkcs7 });
return encrypted.toString();
}

@ -0,0 +1,36 @@
export function resetSize(vm) {
var img_width, img_height, bar_width, bar_height; //图片的宽度、高度,移动条的宽度、高度
var parentWidth = vm.$el.parentNode.offsetWidth || window.offsetWidth
var parentHeight = vm.$el.parentNode.offsetHeight || window.offsetHeight
if (vm.imgSize.width.indexOf('%') != -1) {
img_width = parseInt(this.imgSize.width) / 100 * parentWidth + 'px'
} else {
img_width = this.imgSize.width;
}
if (vm.imgSize.height.indexOf('%') != -1) {
img_height = parseInt(this.imgSize.height) / 100 * parentHeight + 'px'
} else {
img_height = this.imgSize.height
}
if (vm.barSize.width.indexOf('%') != -1) {
bar_width = parseInt(this.barSize.width) / 100 * parentWidth + 'px'
} else {
bar_width = this.barSize.width
}
if (vm.barSize.height.indexOf('%') != -1) {
bar_height = parseInt(this.barSize.height) / 100 * parentHeight + 'px'
} else {
bar_height = this.barSize.height
}
return { imgWidth: img_width, imgHeight: img_height, barWidth: bar_width, barHeight: bar_height }
}
export const _code_chars = [1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
export const _code_color1 = ['#fffff0', '#f0ffff', '#f0fff0', '#fff0f0']
export const _code_color2 = ['#FF0033', '#006699', '#993366', '#FF9900', '#66CC66', '#FF33CC']

@ -9,13 +9,13 @@
<template v-if="device!=='mobile'">
<search id="header-search" class="right-menu-item" />
<el-tooltip content="源码地址" effect="dark" placement="bottom">
<!-- <el-tooltip content="源码地址" effect="dark" placement="bottom">
<ruo-yi-git id="ruoyi-git" class="right-menu-item hover-effect" />
</el-tooltip>
</el-tooltip>-->
<el-tooltip content="文档地址" effect="dark" placement="bottom">
<!-- <el-tooltip content="文档地址" effect="dark" placement="bottom">
<ruo-yi-doc id="ruoyi-doc" class="right-menu-item hover-effect" />
</el-tooltip>
</el-tooltip>-->
<screenfull id="screenfull" class="right-menu-item hover-effect" />

@ -3,6 +3,8 @@ const getters = {
size: state => state.app.size,
device: state => state.app.device,
dict: state => state.dict.dict,
applyType:state => state.apply.applyType,
applyId:state => state.apply.applyId,
visitedViews: state => state.tagsView.visitedViews,
cachedViews: state => state.tagsView.cachedViews,
token: state => state.user.token,

@ -3,6 +3,7 @@ import Vuex from 'vuex'
import app from './modules/app'
import dict from './modules/dict'
import user from './modules/user'
import apply from './modules/reward'
import tagsView from './modules/tagsView'
import permission from './modules/permission'
import settings from './modules/settings'
@ -15,6 +16,7 @@ const store = new Vuex.Store({
app,
dict,
user,
apply,
tagsView,
permission,
settings

@ -0,0 +1,36 @@
const state = {
applyType:'',
applyId:''
}
const mutations = {
SET_APPLYTYPE: (state, { key, value }) => {
if (key !== null && key !== "") {
state.applyType = value
}
},
SET_APPLYID: (state, { key, value }) => {
if (key !== null && key !== "") {
state.applyId = value
}
}
}
const actions = {
// 设置字典
setApplyType({ commit }, data) {
commit('SET_APPLYTYPE', data)
},
// 设置字典
setApplyId({ commit }, data) {
localStorage.setItem('applyId', data.value)
commit('SET_APPLYID', data)
},
}
export default {
namespaced: true,
state,
mutations,
actions
}

@ -0,0 +1,36 @@
const state = {
applyType:'',
applyId:''
}
const mutations = {
SET_APPLYTYPE: (state, { key, value }) => {
if (key !== null && key !== "") {
state.applyType = value
}
},
SET_APPLYID: (state, { key, value }) => {
if (key !== null && key !== "") {
state.applyId = value
}
}
}
const actions = {
// 设置字典
setApplyType({ commit }, data) {
commit('SET_APPLYTYPE', data)
},
// 设置字典
setApplyId({ commit }, data) {
localStorage.setItem('applyId', data.value)
commit('SET_APPLYID', data)
},
}
export default {
namespaced: true,
state,
mutations,
actions
}

@ -38,9 +38,8 @@ const user = {
const username = userInfo.username.trim()
const password = userInfo.password
const code = userInfo.code
const uuid = userInfo.uuid
return new Promise((resolve, reject) => {
login(username, password, code, uuid).then(res => {
login(username, password, code).then(res => {
setToken(res.token)
commit('SET_TOKEN', res.token)
resolve()
@ -50,6 +49,7 @@ const user = {
})
},
// 获取用户信息
GetInfo({ commit, state }) {
return new Promise((resolve, reject) => {

@ -0,0 +1,389 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button type="danger" v-if="isView === true" @click="callback">退 </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listAduit,
getDetail,
checkFile,
approved, applyBack
} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_contribution_award'],
data() {
return {
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
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: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
]
},
applyParam: {
applyType: ''
},
applyId: ''
};
},
created() {
},
mounted() {
if (this.$route.path.includes('contributionAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_contribution_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '1',
applyType: this.applyParam.applyType
}
listAduit(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_contribution_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "申请审核";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
submitAduit(){
checkFile(this.applyId).then(res => {
if(res.code === 200){
approved(this.applyId).then(resp => {
if (resp.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}
})
}else{
this.$modal.msgError(res.msg)
}
});
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style lang="scss">
.custom-prompt{
.el-textarea__inner{
min-height: 120px !important;
}
}
</style>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,463 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
<el-option
v-for="dict in dict.type.rew_apply_status"
: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>
<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>
<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>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
<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>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</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>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listApply,
getDetail,
getApplyId,
updateApply,
delApply, listFile, checkUploadFile
} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status','rew_contribution_award'],
data() {
return {
templateType:'apply',
dialogType:'edit',
isShowUploadButton:false,
//
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: [
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly:false,
isShowButton:true,
isView:false,
//
title: "",
//
open: false,
editOpen:false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType:undefined,
},
//
form:{},
//
rules: {
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
],
isReward: [
{ required: true, message: "请选择", trigger: "change" }
]
},
applyParam:{
applyType:''
},
applyId:'',
isDisabled:false,
};
},
computed: {
},
created() {
},
mounted() {
if(this.$route.path.includes('contributionAward') === true){
this.$store.dispatch('apply/setApplyType', { key: 'applyType', value: 'rew_contribution_award' });
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_contribution_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
this.fileData.forEach((item)=>{
item.childrenList = []
})
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length!=1
this.multiple = !selection.length
},
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
/**查看按钮 */
handleView(row){
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowUploadButton = false
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 新增按钮操作 */
handleAdd(applyType) {
this.reset();
this.isView=true;
this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
this.title = "添加申请";
// if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => {
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
});
// }
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
this.$modal.msgSuccess("提交成功");
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .el-dialog__footer{
padding: 0;
}
.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>

@ -0,0 +1,466 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
:modal-type="'score'"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
>
</custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改查看对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
<template v-slot:tableSlot v-if="isView === false">
<div v-if="avgScore !== null">
平均分{{avgScore}}
</div>
<el-table
:data="scoreData"
style="width: 100%">
<el-table-column
prop="createBy"
label="评分人">
</el-table-column>
<el-table-column
prop="createTime"
label="评分时间">
</el-table-column>
<el-table-column
prop="score"
label="分数">
</el-table-column>
<!-- 其他列 -->
</el-table>
</template>
</Update>
</el-form-item>
</el-col>
</el-row>
<el-row v-if="isView === true" >
<el-col :span="12">
<el-form-item label="评分" prop="score">
<el-input
type="text"
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getDetail,
applyBack, listScore, getScoreInfo, scoreSave
} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_contribution_award'],
data() {
return {
scoreData:[],
avgScore:null,
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
tableColumns: [
{label: '创建者', prop: 'createBy', align: 'center'},
{label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true},
{label: '状态', prop: 'scoreStatus', align: 'center', slotName: 'scoreStatus'},
{label: '创建时间', prop: 'createTime', align: 'center'},
{label: '提交时间', prop: 'appTime', align: 'center', type: 'date'},
{label: '审核时间', prop: 'authTime', align: 'center', type: 'date'},
],
//
tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType:undefined,
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
],
score:[
{required: true, message: "请进行评分", trigger: "blur"}
]
},
applyParam: {
applyType: ''
},
applyId: '',
scoreId:null
};
},
created() {
},
mounted() {
this.$store.dispatch('GetInfo').then((res) => {
let filterData = this.tableActions
if (res.user.userId === 1){
let ratingIndex = filterData.findIndex(action => action.text === '评分');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
}
})
if (this.$route.path.includes('contributionAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_contribution_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '2,4',
applyType: this.applyParam.applyType
}
listScore(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_contribution_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
score:undefined
};
this.resetForm("form");
this.scoreData=[]
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
this.isReadOnly = true
this.isView = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{
if (res.data.rewScoreInfos.length > 0){
this.scoreId = res.data.rewScoreInfos[0].scoreId
this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "评分";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
submitAduit(){
let saveParams = {
applyId: this.applyId,
score: this.form.score,
scoreId: this.scoreId
}
this.$refs["form"].validate(valid => {
if (valid) {
scoreSave(saveParams).then(response => {
this.$modal.msgSuccess("提交成功");
this.editOpen = false
this.getList();
});
}
});
// scoreSave().then(resp => {
// if (resp.code === 200){
// this.$modal.msgSuccess(res.msg)
// this.editOpen = false
// this.getList('mounted')
// }
// })
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
.el-dialog{
.el-dialog__body{
.el-form{
.el-row{
::v-deep .uploadClass{
height: 510px !important;
}
}
}
}
}
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
<template>
<div class="login">
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
<h3 class="title">黄炎培职业教育奖网上申报系统</h3>
<h3 class="title">甘肃省黄炎培职业教育奖网上申报系统</h3>
<el-form-item prop="username">
<el-input
v-model="loginForm.username"
@ -23,20 +23,13 @@
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
</el-input>
</el-form-item>
<el-form-item prop="code" v-if="captchaEnabled">
<el-input
v-model="loginForm.code"
auto-complete="off"
placeholder="验证码"
style="width: 63%"
@keyup.enter.native="handleLogin"
>
<svg-icon slot="prefix" icon-class="validCode" class="el-input__icon input-icon" />
</el-input>
<div class="login-code">
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
</div>
</el-form-item>
<Verify
@success="capctchaCheckSuccess"
:mode="'pop'"
:captchaType="'blockPuzzle'"
:imgSize="{ width: '330px', height: '155px' }"
ref="verify"
></Verify>
<el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;"></el-checkbox>
<el-form-item style="width:100%;">
<el-button
@ -56,27 +49,26 @@
</el-form>
<!-- 底部 -->
<div class="el-login-footer">
<span>Copyright ©黄炎培职业教育奖网上申报系统 All Rights Reserved.</span>
<span>Copyright ©甘肃省黄炎培职业教育奖网上申报系统 All Rights Reserved.</span>
</div>
</div>
</template>
<script>
import { getCodeImg } from "@/api/login";
import Cookies from "js-cookie";
import { encrypt, decrypt } from '@/utils/jsencrypt'
import { encrypt, decrypt } from "@/utils/jsencrypt";
import Verify from "@/components/Verifition/Verify";
export default {
components: { Verify },
name: "Login",
data() {
return {
codeUrl: "",
loginForm: {
username: "admin",
password: "admin123",
username: "",
password: "",
rememberMe: false,
code: "",
uuid: ""
},
loginRules: {
username: [
@ -85,11 +77,8 @@ export default {
password: [
{ required: true, trigger: "blur", message: "请输入您的密码" }
],
code: [{ required: true, trigger: "change", message: "请输入验证码" }]
},
loading: false,
//
captchaEnabled: true,
//
register: true,
redirect: undefined
@ -104,54 +93,45 @@ export default {
}
},
created() {
this.getCode();
this.getCookie();
},
methods: {
getCode() {
getCodeImg().then(res => {
this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled;
if (this.captchaEnabled) {
this.codeUrl = "data:image/gif;base64," + res.img;
this.loginForm.uuid = res.uuid;
}
});
},
getCookie() {
const username = Cookies.get("username");
const password = Cookies.get("password");
const rememberMe = Cookies.get('rememberMe')
const rememberMe = Cookies.get("rememberMe");
this.loginForm = {
username: username === undefined ? this.loginForm.username : username,
password: password === undefined ? this.loginForm.password : decrypt(password),
rememberMe: rememberMe === undefined ? false : Boolean(rememberMe)
};
},
capctchaCheckSuccess(params) {
this.loginForm.code = params.captchaVerification;
this.loading = true;
if (this.loginForm.rememberMe) {
Cookies.set("username", this.loginForm.username, { expires: 30 });
Cookies.set("password", encrypt(this.loginForm.password), { expires: 30, });
Cookies.set("rememberMe", this.loginForm.rememberMe, { expires: 30 });
} else {
Cookies.remove("username");
Cookies.remove("password");
Cookies.remove("rememberMe");
}
this.$store.dispatch("Login", this.loginForm).then(() => {
this.$router.push({ path: this.redirect || "/" }).catch(() => {});
}).catch(() => {
this.loading = false;
});
},
handleLogin() {
this.$refs.loginForm.validate(valid => {
this.$refs.loginForm.validate((valid) => {
if (valid) {
this.loading = true;
if (this.loginForm.rememberMe) {
Cookies.set("username", this.loginForm.username, { expires: 30 });
Cookies.set("password", encrypt(this.loginForm.password), { expires: 30 });
Cookies.set('rememberMe', this.loginForm.rememberMe, { expires: 30 });
} else {
Cookies.remove("username");
Cookies.remove("password");
Cookies.remove('rememberMe');
}
this.$store.dispatch("Login", this.loginForm).then(() => {
this.$router.push({ path: this.redirect || "/" }).catch(()=>{});
}).catch(() => {
this.loading = false;
if (this.captchaEnabled) {
this.getCode();
}
});
this.$refs.verify.show();
}
});
}
}
},
},
};
</script>
@ -192,15 +172,6 @@ export default {
text-align: center;
color: #bfbfbf;
}
.login-code {
width: 33%;
height: 38px;
float: right;
img {
cursor: pointer;
vertical-align: middle;
}
}
.el-login-footer {
height: 40px;
line-height: 40px;
@ -213,7 +184,4 @@ export default {
font-size: 12px;
letter-spacing: 1px;
}
.login-code-img {
height: 38px;
}
</style>

@ -0,0 +1,383 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button type="danger" v-if="isView === true" @click="callback">退 </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listAduit,
getDetail,
checkFile,
approved, applyBack
} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_principal_award'],
data() {
return {
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
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: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
]
},
applyParam: {
applyType: ''
},
applyId: ''
};
},
created() {
},
mounted() {
if (this.$route.path.includes('principalAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_principal_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '1',
applyType: this.applyParam.applyType
}
listAduit(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_principal_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "申请审核";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
submitAduit(){
checkFile(this.applyId).then(res => {
if(res.code === 200){
approved(this.applyId).then(resp => {
if (resp.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}
})
}else{
this.$modal.msgError(res.msg)
}
});
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,463 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
<el-option
v-for="dict in dict.type.rew_apply_status"
: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>
<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>
<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>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
<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>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</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>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listApply,
getDetail,
getApplyId,
updateApply,
delApply, listFile, checkUploadFile
} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status','rew_principal_award'],
data() {
return {
templateType:'apply',
dialogType:'edit',
isShowUploadButton:false,
//
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: [
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly:false,
isShowButton:true,
isView:false,
//
title: "",
//
open: false,
editOpen:false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType:undefined,
},
//
form:{},
//
rules: {
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
],
isReward: [
{ required: true, message: "请选择", trigger: "change" }
]
},
applyParam:{
applyType:''
},
applyId:'',
isDisabled:false,
};
},
computed: {
},
created() {
},
mounted() {
if(this.$route.path.includes('principalAward') === true){
this.$store.dispatch('apply/setApplyType', { key: 'applyType', value: 'rew_principal_award' });
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_principal_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
this.fileData.forEach((item)=>{
item.childrenList = []
})
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length!=1
this.multiple = !selection.length
},
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
/**查看按钮 */
handleView(row){
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowUploadButton = false
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 新增按钮操作 */
handleAdd(applyType) {
this.reset();
this.isView=true;
this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
this.title = "添加申请";
// if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => {
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
});
// }
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
this.$modal.msgSuccess("提交成功");
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .el-dialog__footer{
padding: 0;
}
.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>

@ -0,0 +1,455 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
:modal-type="'score'"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
>
</custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改查看对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
<template v-slot:tableSlot v-if="isView === false">
<div v-if="avgScore !== null">
平均分{{avgScore}}
</div>
<el-table
:data="scoreData"
style="width: 100%">
<el-table-column
prop="createBy"
label="评分人">
</el-table-column>
<el-table-column
prop="createTime"
label="评分时间">
</el-table-column>
<el-table-column
prop="score"
label="分数">
</el-table-column>
<!-- 其他列 -->
</el-table>
</template>
</Update>
</el-form-item>
</el-col>
</el-row>
<el-row v-if="isView === true" >
<el-col :span="12">
<el-form-item label="评分" prop="score">
<el-input
type="text"
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getDetail,
applyBack, listScore, getScoreInfo, scoreSave
} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_principal_award'],
data() {
return {
scoreData:[],
avgScore:null,
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
tableColumns: [
{label: '创建者', prop: 'createBy', align: 'center'},
{label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true},
{label: '状态', prop: 'scoreStatus', align: 'center', slotName: 'scoreStatus'},
{label: '创建时间', prop: 'createTime', align: 'center'},
{label: '提交时间', prop: 'appTime', align: 'center', type: 'date'},
{label: '审核时间', prop: 'authTime', align: 'center', type: 'date'},
],
//
tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType:undefined,
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
],
score:[
{required: true, message: "请进行评分", trigger: "blur"}
]
},
applyParam: {
applyType: ''
},
applyId: '',
scoreId:null
};
},
created() {
},
mounted() {
this.$store.dispatch('GetInfo').then((res) => {
let filterData = this.tableActions
if (res.user.userId === 1){
let ratingIndex = filterData.findIndex(action => action.text === '评分');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
}
})
if (this.$route.path.includes('principalAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_principal_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '2,4',
applyType: this.applyParam.applyType
}
listScore(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_principal_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
score:undefined
};
this.resetForm("form");
this.scoreData=[]
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
this.isReadOnly = true
this.isView = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{
if (res.data.rewScoreInfos.length > 0){
this.scoreId = res.data.rewScoreInfos[0].scoreId
this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "评分";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
submitAduit(){
let saveParams = {
applyId: this.applyId,
score: this.form.score,
scoreId: this.scoreId
}
this.$refs["form"].validate(valid => {
if (valid) {
scoreSave(saveParams).then(response => {
this.$modal.msgSuccess("提交成功");
this.editOpen = false
this.getList();
});
}
});
// scoreSave().then(resp => {
// if (resp.code === 200){
// this.$modal.msgSuccess(res.msg)
// this.editOpen = false
// this.getList('mounted')
// }
// })
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -2,8 +2,18 @@
<div class="register">
<el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
<h3 class="title">黄炎培职业教育奖网上申报系统</h3>
<el-form-item prop="roleKey">
<el-select v-model="registerForm.roleKey" style="width: 348px;" placeholder="请选择申报类型">
<el-option
v-for="dict in dict.type.rew_apply_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item prop="username">
<el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
<el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号:保持和申报学校的名称一致">
<svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
</el-input>
</el-form-item>
@ -29,7 +39,7 @@
<svg-icon slot="prefix" icon-class="password" class="el-input__icon input-icon" />
</el-input>
</el-form-item>
<el-form-item prop="code" v-if="captchaEnabled">
<!-- <el-form-item prop="code" v-if="captchaEnabled">
<el-input
v-model="registerForm.code"
auto-complete="off"
@ -42,7 +52,7 @@
<div class="register-code">
<img :src="codeUrl" @click="getCode" class="register-code-img"/>
</div>
</el-form-item>
</el-form-item>-->
<el-form-item style="width:100%;">
<el-button
:loading="loading"
@ -68,9 +78,9 @@
<script>
import { getCodeImg, register } from "@/api/login";
export default {
name: "Register",
dicts: [ 'rew_apply_type'],
data() {
const equalToPassword = (rule, value, callback) => {
if (this.registerForm.password !== value) {
@ -86,12 +96,14 @@ export default {
password: "",
confirmPassword: "",
code: "",
uuid: ""
uuid: "",
roleKey:""
},
registerRules: {
username: [
{ required: true, trigger: "blur", message: "请输入您的账号" },
{ min: 2, max: 20, message: '用户账号长度必须介于 2 和 20 之间', trigger: 'blur' }
{ required: true, trigger: "blur", message: "请输入您的账号(保持和申报学校的名称一致)" },
{ min: 2, max: 20, message: '用户账号长度必须介于 2 和 20 之间', trigger: 'blur' },
{ pattern: /^[\u4e00-\u9fa5]+$/, message: "只能输入中文", trigger: "blur" }
],
password: [
{ required: true, trigger: "blur", message: "请输入您的密码" },
@ -102,7 +114,8 @@ export default {
{ required: true, trigger: "blur", message: "请再次输入您的密码" },
{ required: true, validator: equalToPassword, trigger: "blur" }
],
code: [{ required: true, trigger: "change", message: "请输入验证码" }]
// code: [{ required: true, trigger: "change", message: "" }],
roleKey: [{ required: true, trigger: "change", message: "请选择申报类型" }]
},
loading: false,
captchaEnabled: true

@ -0,0 +1,379 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button type="danger" v-if="isView === true" @click="callback">退 </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {applyBack, approved, checkFile, getDetail, listAduit} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
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: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData: [],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
]
},
applyParam: {
applyType: ''
},
applyId: ''
};
},
created() {
},
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');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '1',
applyType: this.applyParam.applyType
}
listAduit(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "申请审核";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
submitAduit(){
checkFile(this.applyId).then(res => {
if(res.code === 200){
approved(this.applyId).then(resp => {
if (resp.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}
})
}else{
this.$modal.msgError(res.msg)
}
});
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,456 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
<el-option
v-for="dict in dict.type.rew_apply_status"
: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>
<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>
<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>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
<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>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</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>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {checkUploadFile, delApply, getApplyId, getDetail, listApply, updateApply} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
templateType:'apply',
dialogType:'edit',
isShowUploadButton:false,
//
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: [
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly:false,
isShowButton:true,
isView:false,
//
title: "",
//
open: false,
editOpen:false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
},
//
form:{},
//
rules: {
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
],
isReward: [
{ required: true, message: "请选择", trigger: "change" }
]
},
applyParam:{
applyType:''
},
applyId:'',
isDisabled:false,
};
},
computed: {
},
created() {
},
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');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
this.fileData.forEach((item)=>{
item.childrenList = []
})
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length!=1
this.multiple = !selection.length
},
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
/**查看按钮 */
handleView(row){
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowUploadButton = false
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 新增按钮操作 */
handleAdd(applyType) {
this.reset();
this.isView=true;
this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
this.title = "添加申请";
// if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => {
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
});
// }
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
this.$modal.msgSuccess("提交成功");
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .el-dialog__footer{
padding: 0;
}
.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>

@ -0,0 +1,452 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
:modal-type="'score'"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
>
</custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改查看对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
<template v-slot:tableSlot v-if="isView === false">
<div v-if="avgScore !== null">
平均分{{avgScore}}
</div>
<el-table
:data="scoreData"
style="width: 100%">
<el-table-column
prop="createBy"
label="评分人">
</el-table-column>
<el-table-column
prop="createTime"
label="评分时间">
</el-table-column>
<el-table-column
prop="score"
label="分数">
</el-table-column>
<!-- 其他列 -->
</el-table>
</template>
</Update>
</el-form-item>
</el-col>
</el-row>
<el-row v-if="isView === true" >
<el-col :span="12">
<el-form-item label="评分" prop="score">
<el-input
type="text"
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {applyBack, getDetail, getScoreInfo, listScore, scoreSave} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_excellent_category'],
data() {
return {
scoreData:[],
avgScore:null,
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
tableColumns: [
{label: '创建者', prop: 'createBy', align: 'center'},
{label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true},
{label: '状态', prop: 'scoreStatus', align: 'center', slotName: 'scoreStatus'},
{label: '创建时间', prop: 'createTime', align: 'center'},
{label: '提交时间', prop: 'appTime', align: 'center', type: 'date'},
{label: '审核时间', prop: 'authTime', align: 'center', type: 'date'},
],
//
tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData: [],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType:undefined,
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
],
score:[
{required: true, message: "请进行评分", trigger: "blur"}
]
},
applyParam: {
applyType: ''
},
applyId: '',
scoreId:null
};
},
created() {
},
mounted() {
this.$store.dispatch('GetInfo').then((res) => {
let filterData = this.tableActions
if (res.user.userId === 1){
let ratingIndex = filterData.findIndex(action => action.text === '评分');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
}
})
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');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '2,4',
applyType: this.applyParam.applyType
}
listScore(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_category.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
score:undefined
};
this.resetForm("form");
this.scoreData=[]
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
this.isReadOnly = true
this.isView = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{
if (res.data.rewScoreInfos.length > 0){
this.scoreId = res.data.rewScoreInfos[0].scoreId
this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "评分";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
submitAduit(){
let saveParams = {
applyId: this.applyId,
score: this.form.score,
scoreId: this.scoreId
}
this.$refs["form"].validate(valid => {
if (valid) {
scoreSave(saveParams).then(response => {
this.$modal.msgSuccess("提交成功");
this.editOpen = false
this.getList();
});
}
});
// scoreSave().then(resp => {
// if (resp.code === 200){
// this.$modal.msgSuccess(res.msg)
// this.editOpen = false
// this.getList('mounted')
// }
// })
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,384 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button type="danger" v-if="isView === true" @click="callback">退 </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listAduit,
getDetail,
checkFile,
approved, applyBack
} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_teacher_award'],
data() {
return {
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
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: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
]
},
applyParam: {
applyType: ''
},
applyId: ''
};
},
created() {
},
mounted() {
if (this.$route.path.includes('teacherAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_teacher_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '1',
applyType: this.applyParam.applyType
}
listAduit(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_teacher_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "申请审核";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
submitAduit(){
checkFile(this.applyId).then(res => {
if(res.code === 200){
approved(this.applyId).then(resp => {
if (resp.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}
})
}else{
this.$modal.msgError(res.msg)
}
});
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,463 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
<el-option
v-for="dict in dict.type.rew_apply_status"
: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>
<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>
<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>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
<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>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</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>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listApply,
getDetail,
getApplyId,
updateApply,
delApply, listFile, checkUploadFile
} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status','rew_teacher_award'],
data() {
return {
templateType:'apply',
dialogType:'edit',
isShowUploadButton:false,
//
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: [
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly:false,
isShowButton:true,
isView:false,
//
title: "",
//
open: false,
editOpen:false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType:undefined,
},
//
form:{},
//
rules: {
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
],
isReward: [
{ required: true, message: "请选择", trigger: "change" }
]
},
applyParam:{
applyType:''
},
applyId:'',
isDisabled:false,
};
},
computed: {
},
created() {
},
mounted() {
if(this.$route.path.includes('teacherAward') === true){
this.$store.dispatch('apply/setApplyType', { key: 'applyType', value: 'rew_teacher_award' });
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_teacher_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
this.fileData.forEach((item)=>{
item.childrenList = []
})
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length!=1
this.multiple = !selection.length
},
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
/**查看按钮 */
handleView(row){
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowUploadButton = false
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 新增按钮操作 */
handleAdd(applyType) {
this.reset();
this.isView=true;
this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
this.title = "添加申请";
// if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => {
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
});
// }
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
this.$modal.msgSuccess("提交成功");
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .el-dialog__footer{
padding: 0;
}
.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>

@ -0,0 +1,455 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
:modal-type="'score'"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
>
</custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改查看对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
<template v-slot:tableSlot v-if="isView === false">
<div v-if="avgScore !== null">
平均分{{avgScore}}
</div>
<el-table
:data="scoreData"
style="width: 100%">
<el-table-column
prop="createBy"
label="评分人">
</el-table-column>
<el-table-column
prop="createTime"
label="评分时间">
</el-table-column>
<el-table-column
prop="score"
label="分数">
</el-table-column>
<!-- 其他列 -->
</el-table>
</template>
</Update>
</el-form-item>
</el-col>
</el-row>
<el-row v-if="isView === true" >
<el-col :span="12">
<el-form-item label="评分" prop="score">
<el-input
type="text"
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getDetail,
applyBack, listScore, getScoreInfo, scoreSave
} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_teacher_award'],
data() {
return {
scoreData:[],
avgScore:null,
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
tableColumns: [
{label: '创建者', prop: 'createBy', align: 'center'},
{label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true},
{label: '状态', prop: 'scoreStatus', align: 'center', slotName: 'scoreStatus'},
{label: '创建时间', prop: 'createTime', align: 'center'},
{label: '提交时间', prop: 'appTime', align: 'center', type: 'date'},
{label: '审核时间', prop: 'authTime', align: 'center', type: 'date'},
],
//
tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType:undefined,
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
],
score:[
{required: true, message: "请进行评分", trigger: "blur"}
]
},
applyParam: {
applyType: ''
},
applyId: '',
scoreId:null
};
},
created() {
},
mounted() {
this.$store.dispatch('GetInfo').then((res) => {
let filterData = this.tableActions
if (res.user.userId === 1){
let ratingIndex = filterData.findIndex(action => action.text === '评分');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
}
})
if (this.$route.path.includes('teacherAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_teacher_award'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '2,4',
applyType: this.applyParam.applyType
}
listScore(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_teacher_award.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
score:undefined
};
this.resetForm("form");
this.scoreData=[]
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
this.isReadOnly = true
this.isView = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{
if (res.data.rewScoreInfos.length > 0){
this.scoreId = res.data.rewScoreInfos[0].scoreId
this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "评分";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
submitAduit(){
let saveParams = {
applyId: this.applyId,
score: this.form.score,
scoreId: this.scoreId
}
this.$refs["form"].validate(valid => {
if (valid) {
scoreSave(saveParams).then(response => {
this.$modal.msgSuccess("提交成功");
this.editOpen = false
this.getList();
});
}
});
// scoreSave().then(resp => {
// if (resp.code === 200){
// this.$modal.msgSuccess(res.msg)
// this.editOpen = false
// this.getList('mounted')
// }
// })
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,384 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
></custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button type="danger" v-if="isView === true" @click="callback">退 </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listAduit,
getDetail,
checkFile,
approved, applyBack
} from "@/api/reward/aduit";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "aduit",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
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: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '审核', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
]
},
applyParam: {
applyType: ''
},
applyId: ''
};
},
created() {
},
mounted() {
if (this.$route.path.includes('trainAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_excellent_training'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '1',
applyType: this.applyParam.applyType
}
listAduit(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: '1',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "申请审核";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
});
},
submitAduit(){
checkFile(this.applyId).then(res => {
if(res.code === 200){
approved(this.applyId).then(resp => {
if (resp.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}
})
}else{
this.$modal.msgError(res.msg)
}
});
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -0,0 +1,463 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="状态" prop="applyStatus">
<el-select v-model="queryParams.applyStatus" placeholder="状态" clearable>
<el-option
v-for="dict in dict.type.rew_apply_status"
: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>
<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>
<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>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或查看公告对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="open" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
>
</Update>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" :disabled="isDisabled" @click="submitForm"> </el-button>
<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>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
</Update>
</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>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listApply,
getDetail,
getApplyId,
updateApply,
delApply, listFile, checkUploadFile
} from "@/api/reward/apply";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "apply",
components: {CustomTable,Update},
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
templateType:'apply',
dialogType:'edit',
isShowUploadButton:false,
//
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: [
{ text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{ text: '修改', icon: 'el-icon-edit', handler: this.handleUpdate, },
{ text: '删除', icon: 'el-icon-delete', handler: this.handleDelete,},
{ text: '退回意见', icon: 'el-icon-s-comment', handler: this.applyMsg,}
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly:false,
isShowButton:true,
isView:false,
//
title: "",
//
open: false,
editOpen:false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType:undefined,
},
//
form:{},
//
rules: {
applyName: [
{ required: true, message: "奖项名称不能为空", trigger: "blur" }
],
isReward: [
{ required: true, message: "请选择", trigger: "change" }
]
},
applyParam:{
applyType:''
},
applyId:'',
isDisabled:false,
};
},
computed: {
},
created() {
},
mounted() {
if(this.$route.path.includes('trainAward') === true){
this.$store.dispatch('apply/setApplyType', { key: 'applyType', value: 'rew_excellent_training' });
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus:undefined,
applyType: this.applyParam.applyType
}
listApply(item ==='mounted' ? queryObj:this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
this.fileData.forEach((item)=>{
item.childrenList = []
})
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
createBy: undefined,
applyStatus: undefined,
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length!=1
this.multiple = !selection.length
},
applyMsg(row){
let applyMsg = row.applyMsg
this.$alert(applyMsg, '退回意见', {
confirmButtonText: '确定',
});
},
/**查看按钮 */
handleView(row){
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowUploadButton = false
this.isShowButton = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
this.editOpen = true;
this.isReadOnly = true
this.isView = false
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 新增按钮操作 */
handleAdd(applyType) {
this.reset();
this.isView=true;
this.open = true;
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
this.title = "添加申请";
// if(this.noticeList.length === 0){
getApplyId(this.applyParam).then(response => {
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
});
// }
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView=true;
this.applyId = row.applyId
this.isReadOnly = false
this.isShowButton = true
this.isShowUploadButton = true
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "修改申请";
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,
fileName:item.realName,
url: item.filePath,
state:item.fileState,
fileId:item.fileId,
fileCode:item.fileCode,
});
}
});
}
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.applyId = this.applyId
if (this.form.applyId !== '') {
checkUploadFile(this.applyId,this.applyParam.applyType).then((res)=>{
if (res.code === 200){
updateApply(this.form).then(response => {
this.$modal.msgSuccess("提交成功");
this.open = false;
this.editOpen = false
this.getList();
});
}else{
this.$modal.msgError(res.msg);
}
})
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function() {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-table__cell{
padding: 8px 0;
}
::v-deep .el-dialog--center .el-dialog__body{
padding-bottom: 0;
}
::v-deep .el-dialog__footer{
padding: 0;
}
.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>

@ -0,0 +1,455 @@
<template>
<div class="app-container">
<!-- 搜索部分-->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="创建者" prop="createBy">
<el-input
v-model="queryParams.createBy"
placeholder="请输入创建者"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="奖项名称" prop="applyName">
<el-input
v-model="queryParams.applyName"
placeholder="请输入奖项名称"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
<custom-table
:columns="tableColumns"
:tableData="noticeList"
:loading="loading"
:actions="tableActions"
:query-params="queryParams"
:apply-type="applyParam.applyType"
:modal-type="'score'"
@handleQuery="handleQuery"
@resetQuery="resetQuery"
@handleView="handleView"
@getList="getList"
@handleSelectionChange="handleSelectionChange"
>
</custom-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 修改查看对话框 -->
<el-dialog :title="title" :fullscreen="true" center :visible.sync="editOpen" top="0" width="100%" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="260px">
<el-row>
<el-col :span="24">
<el-form-item label="是否获得过黄炎培职业教育奖" prop="isReward">
<el-radio-group :disabled="isReadOnly" v-model="form.isReward">
<el-radio :label="0"></el-radio>
<el-radio :label="1"></el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item>
<Update
:applyId="applyId"
:dialog-type="dialogType"
:table-data="fileData"
:isShowButton="isShowButton"
:isShowUploadButton="isShowUploadButton"
:template-type="templateType"
ref="childComponent"
>
<template v-slot:tableSlot v-if="isView === false">
<div v-if="avgScore !== null">
平均分{{avgScore}}
</div>
<el-table
:data="scoreData"
style="width: 100%">
<el-table-column
prop="createBy"
label="评分人">
</el-table-column>
<el-table-column
prop="createTime"
label="评分时间">
</el-table-column>
<el-table-column
prop="score"
label="分数">
</el-table-column>
<!-- 其他列 -->
</el-table>
</template>
</Update>
</el-form-item>
</el-col>
</el-row>
<el-row v-if="isView === true" >
<el-col :span="12">
<el-form-item label="评分" prop="score">
<el-input
type="text"
v-model="form.score"
placeholder="请进行评分"
clearable
oninput="this.value = this.value.replace(/[^\d.]/g, '').replace(/^(\d*\.\d{0,1}).*$/,'$1');"
/>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" v-if="isView === true" @click="submitAduit"></el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
getDetail,
applyBack, listScore, getScoreInfo, scoreSave
} from "@/api/reward/score";
import CustomTable from "@/components/CustomTable/CustomTable.vue";
import Update from '@/components/AllTypeFile/update.vue'
export default {
name: "score",
components: {CustomTable, Update},
dicts: ['rew_apply_status','rew_excellent_training'],
data() {
return {
scoreData:[],
avgScore:null,
templateType:'aduit',
dialogType: 'edit',
isShowUploadButton:false,
//
tableColumns: [
{label: '创建者', prop: 'createBy', align: 'center'},
{label: '奖项名称', prop: 'applyName', align: 'center', showOverflowTooltip: true},
{label: '状态', prop: 'scoreStatus', align: 'center', slotName: 'scoreStatus'},
{label: '创建时间', prop: 'createTime', align: 'center'},
{label: '提交时间', prop: 'appTime', align: 'center', type: 'date'},
{label: '审核时间', prop: 'authTime', align: 'center', type: 'date'},
],
//
tableActions: [
{text: '查看', icon: 'el-icon-view', handler: this.handleView,},
{text: '评分', icon: 'el-icon-edit', handler: this.handleUpdate,},
],
//
fileData:[],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
noticeList: [],
isReadOnly: false,
isShowButton: true,
isView: false,
//
title: "",
//
open: false,
editOpen: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType:undefined,
},
//
form: {},
//
rules: {
applyName: [
{required: true, message: "奖项名称不能为空", trigger: "blur"}
],
isReward: [
{required: true, message: "请选择", trigger: "change"}
],
score:[
{required: true, message: "请进行评分", trigger: "blur"}
]
},
applyParam: {
applyType: ''
},
applyId: '',
scoreId:null
};
},
created() {
},
mounted() {
this.$store.dispatch('GetInfo').then((res) => {
let filterData = this.tableActions
if (res.user.userId === 1){
let ratingIndex = filterData.findIndex(action => action.text === '评分');
if (ratingIndex !== -1) {
// 使 splice
filterData.splice(ratingIndex, 1);
}
}
})
if (this.$route.path.includes('trainAward') === true) {
this.$store.dispatch('apply/setApplyType', {key: 'applyType', value: 'rew_excellent_training'});
this.applyParam.applyType = this.$store.state.apply.applyType;
this.queryParams.applyType = this.$store.state.apply.applyType;
}
this.getList('mounted');
},
methods: {
/** 查询公告列表 */
getList(item) {
this.loading = true;
let queryObj = {
pageNum: 1,
pageSize: 10,
applyStatus: '2,4',
applyType: this.applyParam.applyType
}
listScore(item === 'mounted' ? queryObj : this.queryParams).then(response => {
this.noticeList = response.rows;
this.total = response.total;
this.loading = false;
this.fileData = this.dict.type.rew_excellent_training.map(item => {
return {
name: item.label,
fileCode: item.value,
status: '',
expanded: false,
childrenList: []
};
})
});
},
//
cancel() {
this.open = false;
this.editOpen = false
this.reset();
},
//
reset() {
this.form = {
// applyName: undefined,
isReward: undefined,
score:undefined
};
this.resetForm("form");
this.scoreData=[]
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
//
this.queryParams = {
pageNum: 1,
pageSize: 10,
applyName: undefined,
applyStatus: '2,4',
applyType: this.applyParam.applyType
};
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.applyId)
this.single = selection.length != 1
this.multiple = !selection.length
},
/**查看按钮 */
handleView(row) {
this.editOpen = true;
this.title = "查看申请";
const applyId = row.applyId || this.ids
this.isShowButton = false
this.isReadOnly = true
this.isView = false
getDetail(applyId).then(response => {
this.form = response.data;
console.log(this.form)
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
getScoreInfo(row){
getScoreInfo(row.applyId).then((res)=>{
if (res.data.rewScoreInfos.length > 0){
this.scoreId = res.data.rewScoreInfos[0].scoreId
this.form.score = res.data.rewScoreInfos[0].score
this.scoreData = res.data.rewScoreInfos
}
this.avgScore = res.data.avgScore
})
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
this.isView = true;
this.applyId = row.applyId
this.isReadOnly = true
this.isShowButton = true
this.isShowUploadButton = false
const applyId = row.applyId || this.ids
getDetail(applyId).then(response => {
this.form.isReward = response.data.isReward;
this.editOpen = true;
this.title = "评分";
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,
fileName: item.realName,
url: item.filePath,
state: item.fileState,
fileId: item.fileId,
fileCode: item.fileCode,
});
}
});
}
this.getScoreInfo(row)
});
},
submitAduit(){
let saveParams = {
applyId: this.applyId,
score: this.form.score,
scoreId: this.scoreId
}
this.$refs["form"].validate(valid => {
if (valid) {
scoreSave(saveParams).then(response => {
this.$modal.msgSuccess("提交成功");
this.editOpen = false
this.getList();
});
}
});
// scoreSave().then(resp => {
// if (resp.code === 200){
// this.$modal.msgSuccess(res.msg)
// this.editOpen = false
// this.getList('mounted')
// }
// })
},
callback(){
this.$prompt('请输入退回意见', '退回意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputType: 'textarea',
customClass: 'custom-prompt'
}).then(({ value }) => {
applyBack(this.applyId, value).then(res => {
if (res.code === 200){
this.$modal.msgSuccess(res.msg)
this.editOpen = false
this.getList('mounted')
}else{
this.$modal.msgSuccess(res.msg)
}
})
}).catch(() => {
});
},
/** 删除按钮操作 */
handleDelete(row) {
const applyId = row.applyId || this.ids
this.$modal.confirm('是否确认删除申请?').then(function () {
return delApply(applyId);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
localStorage.removeItem('applyId');
}).catch(() => {
});
}
}
};
</script>
<style scoped lang="scss">
::v-deep .el-dialog--center .el-dialog__body {
padding-bottom: 0;
}
::v-deep .el-dialog__footer {
padding: 0;
}
.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>

@ -35,7 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://192.168.254.83:8081`,
target: `http://192.168.110.216:8081`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''

Loading…
Cancel
Save