first commit

This commit is contained in:
2026-09-08 19:49:21 +08:00
commit ebffbab428
7320 changed files with 1477614 additions and 0 deletions
@@ -0,0 +1,387 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.el-select {
width: 100%;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<template>
<el-card shadow="never">
<div class="btn-group tool-button">
<div class="block">
<el-date-picker
style="width: 100px"
v-model="pageForm.year"
type="year" @change="getEvaluateByYear()"
value-format="yyyy"
placeholder="年度">
</el-date-picker>
</div>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId" style="width: 100%;"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<div class="btn-group tool-button" v-if="pageForm.honorType=='101'">
<div>
<el-input placeholder="请输入内容" v-model="pageForm.searchKeyword" clearable>
<el-select v-model="pageForm.searchName" slot="prepend" placeholder="查询类型"
style="width: 100px;">
<el-option label="工号" value="us.loginname"></el-option>
<el-option label="姓名" value="us.username"></el-option>
</el-select>
</el-input>
</div>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属工会" v-model="pageForm.unionId" style="width: 100%;"
clearable="true"
@change="flushUnits" @clear="flushUnits"
v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}"
filterable="true">
<el-option v-for="item in unions" :label="item.unionname" :value="item.id"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属单位" v-model="pageForm.unitId" style="width: 100%;"
clearable="true"
filterable="true">
<el-option v-for="item in units" :label="item.name" :value="item.id"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">-->
<!-- <el-radio-group v-model="pageForm.honorType" @change="(o) => {radioChange(o)}">-->
<!-- <el-radio-button v-for="v in honorTypeList" :label="v.id">{{v.name}}{{v.num}}-->
<!-- </el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<div class="btn-group tool-button">
<el-button type="primary" @click="doSearch" icon="el-icon-search"></el-button>
</div>
<div class="pull-right offscreen-right">
<el-radio-group v-model="pageForm.isAudit" @change="doSearch">
<el-radio-button :label="null">全部</el-radio-button>
<el-radio-button :label="true">已审核</el-radio-button>
<el-radio-button :label="false">未审核</el-radio-button>
</el-radio-group>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<vi-title2 title="申请列表"></vi-title2>
<el-table :data="tableData">
<el-table-column align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column
align="center"
header-align="center"
v-for="column in tableColumns"
:label="column.label"
:prop="column.prop" :sortable="column.sortable"
:sortable="column.sortable" show-overflow-tooltip>
</el-table-column>
<el-table-column label="申请时间" prop="applyTime" sortable header-align="center"
align="center"></el-table-column>
<el-table-column align="center" header-align="center" label="审核状态" prop="year"
show-overflow-tooltip>
<template slot-scope="{row}">
<span :style="'color: ' + row.stateColor">{{row.stateName}}</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" fixed="right" width="220px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)" type="primary">
查看
</el-button>
<el-button size="mini" @click="rollback(row)" type="danger"
v-if="pageForm.isAudit === true && row.stateId <= 1800">
撤回
</el-button>
<el-button size="mini" @click="openEdit(row)" type="primary" v-if="row.stateId == 1700">
审核
</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #edit>
<evaluate-info ref="info2" :handle="true" label="二级党组织审核" :panes="[2, 3, 4]">
<template #handle>
<vi-title title="审核信息"></vi-title>
<el-form :model="formData" ref="form" :rules="formRules" label-position="right"
label-width="120px">
<el-row gutter="20">
<el-col :span="12">
<el-form-item prop="username" label="审核人员">
<el-input v-model="formData.username"
disabled></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="time" label="审核时间">
<el-input v-model="formData.auditTime" disabled></el-input>
</el-form-item>
</el-col>
</el-row>
<el-form-item prop="auditOpinion" label="审核意见">
<el-input type="textarea" v-model="formData.auditOpinion" rows="4" maxlength="500"
placeholder="请填写您的审核意见"></el-input>
</el-form-item>
<el-form-item prop="auditSign" label="签&emsp;&emsp;字">
<sign :qz.sync="formData.auditSign"></sign>
</el-form-item>
</el-form>
<div style="float: right;margin: 20px 0">
<el-button @click="doReview(false)">
</el-button>
<!-- <el-button type="danger" @click="returnBack()">退-->
<!---->
<!-- </el-button>-->
<el-button type="primary" @click="doReview(true)">
</el-button>
</div>
</template>
</evaluate-info>
</template>
<template #view>
<evaluate-info ref="info"></evaluate-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
units: [],
unions: [],
honorLevelList: [],
honorTypeList: [],
evaluateList: [],
pageForm: {
// year: new Date().getFullYear() + "",
year: "",
isAudit: false,
searchName: 'us.username',
honorType: '',
honorLevel: ''
},
rowData: {},
tableColumns: [
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'honorName', label: '申请类型', sortable: true},
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
{prop: 'clubName', label: '协会', sortable: true},
// {prop: 'unionName', label: '加入工会时间', sortable: true},
// {prop: 'unionName', label: '担任工会职务'},
],
formRules: {
auditOpinion: [{required: true, message: '必填', trigger: ['blur', 'change']}],
auditSign: [{required: true, message: '必填', trigger: ['blur', 'change']}],
}
}
},
components: {
'evaluate-info': httpVueLoader('/components/evaluate/evaluateInfo.vue?v=1.0.0'),
},
methods: {
rollback(row) {
this.$confirm('确定要撤回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/party/rollback', {
id: row.id,
type: row.honorTypeId === HonorApi.honor_single_id,
})
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
returnBack() {
this.formData.id = this.rowData.id
this.formData.type = this.rowData.honorTypeId === HonorApi.honor_single_id
this.formData.userId = this.rowData.userId
this.$confirm('确定要退回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/party/returnBack', this.formData)
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
this.$refs.guava.index()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
radioChange(o) {
if (this.pageForm.honorType == HonorApi.honor_single_id) {
this.tableColumns = [
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'honorName', label: '申报类型', sortable: true},
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
{prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任工会职务'},
]
} else {
this.tableColumns = [
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'applyUnionName', label: '申报院级工会', sortable: true},
{prop: 'unionLeader', label: '工会主席', sortable: true},
{prop: 'memberNumber', label: '会员人数', sortable: true},
{prop: 'unionGroupNumber', label: '工会小组数', sortable: true},
]
}
this.doSearch()
},
dropdownCommand(command) {
const {type, data} = command
if (type == 'view') {
this.openView(data)
} else if (type == 'edit') {
this.openEdit(data)
}
},
async doReview(flag) {
if (!this.formData.auditSign) {
this.$message.warning("请填写签字!")
return
}
this.$refs["form"].validate(async (valid) => {
if (valid) {
this.formData.pass = flag
const resp = await $.post(loc() + "/doReview", this.formData)
if (resp.code === 0) {
this.notifySuccess(resp.msg)
this.pageData()
this.getHonorNum()
this.$refs.guava.index()
} else {
this.notifyWarning(resp.msg)
}
}
})
},
openView(data) {
this.$refs.info.getInfo(data.id)
this.$refs.guava.view()
},
openEdit(data) {
this.rowData = data
this.formData = {
id: data.id,
username: "${@shiro.getPrincipalProperty('username')}",
auditTime: moment().format('YYYY-MM-DD'),
}
this.$refs.info2.getInfo(data.id)
this.$refs.guava.edit()
if (this.$refs['form']) {
this.$refs['form'].resetFields()
}
},
async flushUnits() {
this.$set(this.pageForm, "unitId", "")
if ("${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}" === 'true') {
this.units = await getUnits(this.pageForm.unionId)
} else {
this.units = await getUnits("${@shiro.getPrincipalProperty('unit').getUnionid()}")
}
},
async getHonorNum() {
const evaluateNum = await HonorApi.getEvaluateNum(1700)
this.honorTypeList.map(v => {
if (v.code === "H1100") {
v.num = evaluateNum.gr
} else {
v.num = evaluateNum.jt
}
})
this.$forceUpdate();
},
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year})
this.evaluateList = data
}
},
async created() {
this.honorLevelList = await HonorApi.getHonorLevel()
this.honorTypeList = await HonorApi.getHonorType()
if (this.honorTypeList) {
await this.getHonorNum()
this.$set(this.pageForm, "honorType", this.honorTypeList[0].id)
}
await this.getEvaluateByYear()
this.unions = await getUnions(null)
this.flushUnits()
this.pageData()
}
})
</script>
<!--#
}
#-->
@@ -0,0 +1,491 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.el-select {
width: 100%;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<template>
<el-card shadow="never">
<div class="btn-group tool-button">
<div class="block">
<el-date-picker
style="width: 100px"
v-model="pageForm.year"
type="year" @change="getEvaluateByYear()"
value-format="yyyy"
placeholder="年度">
</el-date-picker>
</div>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId"
style="width: 100%;"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-input placeholder="请输入内容" v-model="pageForm.searchKeyword" clearable>
<el-select v-model="pageForm.searchName" slot="prepend"
placeholder="查询类型"
style="width: 100px;">
<el-option label="工号" value="us.loginname"></el-option>
<el-option label="姓名" value="us.username"></el-option>
</el-select>
</el-input>
</div>
<div class="btn-group tool-button" v-if="pageForm.honorType=== HonorApi.honor_single_id">
<el-select placeholder="所属工会" v-model="pageForm.unionId" style="width: 100%;"
clearable="true"
@change="flushUnits" @clear="flushUnits"
v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}"
filterable>
<el-option v-for="item in unions" :label="item.unionname"
:value="item.id"></el-option>
</el-select>
</div>
<div class="btn-group tool-button" v-if="pageForm.honorType=== HonorApi.honor_single_id">
<el-select placeholder="所属单位" v-model="pageForm.unitId" style="width: 100%;"
clearable="true"
filterable="true">
<el-option v-for="item in units" :label="item.name"
:value="item.id"></el-option>
</el-select>
</div>
<!-- v-if="pageForm.honorType !== HonorApi.honor_single_id"-->
<div class="btn-group tool-button">
<el-select placeholder="请选择申报协会" v-model="pageForm.clubId"
style="width: 100%;"
clearable
filterable>
<el-option v-for="item in clubs"
:label="item.name"
:value="item.stid"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">-->
<!-- <el-radio-group v-model="pageForm.honorType" @change="(o) => {radioChange(o)}">-->
<!-- <el-radio-button v-for="v in honorTypeList" :label="v.id">-->
<!-- {{v.name}}{{v.num}}-->
<!-- </el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<div class="btn-group tool-button">
<el-button type="primary" @click="doSearch" icon="el-icon-search"></el-button>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<vi-title2 title="申请列表">
<template #func>
<!-- <el-button @click="exportTableData" type="primary" size="small">导出汇总表-->
<!-- </el-button>-->
<!-- <el-button @click="exportFiles" type="primary" size="small">一键导出附件-->
<!-- </el-button>-->
<el-radio-group v-model="pageForm.isAudit" @change="doSearch" size="small"
class="ml10">
<el-radio-button :label="null">全部</el-radio-button>
<el-radio-button :label="true">已审核</el-radio-button>
<el-radio-button :label="false">未审核</el-radio-button>
</el-radio-group>
</template>
</vi-title2>
<el-table :data="tableData" ref="multipleTable"
@selection-change="handleSelectionChange">
<!-- <el-table-column type="selection" width="55"></el-table-column>-->
<el-table-column align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column align="center" header-align="center" label="评优评先名称"
prop="evaluateName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="申请类型"
prop="honorName"
show-overflow-tooltip></el-table-column>
<el-table-column
align="center"
header-align="center"
v-for="column in tableColumns"
:label="column.label"
:prop="column.prop"
:sortable="column.sortable"
show-overflow-tooltip>
<template v-if="column.prop=='unionClub'" scope="{row}">
{{row.pxxmlx===1?row.unionName:row.clubName}}
</template>
</el-table-column>
<!-- <template v-if="pageForm.honorType !== HonorApi.honor_single_id">-->
<!-- <el-table-column align="center" header-align="center" label="工会/协会"-->
<!-- prop="applyTime"-->
<!-- show-overflow-tooltip>-->
<!-- <template slot-scope="{row}">-->
<!-- <template v-if="row.pxxmlx===1">-->
<!-- {{row.applyUnionName}}-->
<!-- </template>-->
<!-- <template v-if="row.pxxmlx===2">-->
<!-- {{row.clubName}}-->
<!-- </template>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column align="center" header-align="center" label="工会主席/协会会长"-->
<!-- prop="applyTime"-->
<!-- show-overflow-tooltip>-->
<!-- <template slot-scope="{row}">-->
<!-- <template v-if="row.pxxmlx===1">-->
<!-- {{row.unionLeader}}-->
<!-- </template>-->
<!-- <template v-if="row.pxxmlx===2">-->
<!-- {{row.clubLeader}}-->
<!-- </template>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column align="center" header-align="center" label="会员人数"-->
<!-- prop="applyTime"-->
<!-- show-overflow-tooltip>-->
<!-- <template slot-scope="{row}">-->
<!-- <template v-if="row.pxxmlx===1">-->
<!-- {{row.memberNumber}}-->
<!-- </template>-->
<!-- <template v-if="row.pxxmlx===2">-->
<!-- {{row.clubNumber}}-->
<!-- </template>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- </template>-->
<!-- <el-table-column align="center" header-align="center" label="评选项目类型"-->
<!-- prop="applyTime"-->
<!-- show-overflow-tooltip>-->
<!-- <template slot-scope="{row}">-->
<!-- {{row.pxxmlx===1?'工会':'协会'}}-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="申请时间" prop="applyTime" sortable header-align="center"
align="center"></el-table-column>
<el-table-column align="center" header-align="center" label="审核状态" prop="year"
show-overflow-tooltip>
<template slot-scope="{row}">
<span :style="'color: ' + row.stateColor">{{row.stateName}}</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" fixed="right"
width="220px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)" type="primary">
查看
</el-button>
<el-button size="mini" @click="rollback(row)" type="danger"
v-if="pageForm.isAudit === true && row.stateId <= 1850">
撤回
</el-button>
<el-button size="mini" @click="openEdit(row)" type="primary"
v-if="row.stateId == 1800">
审核
</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #edit>
<evaluate-info ref="info2" :handle="true" label="校工会审核" :panes="[2, 3, 4, 5]">
<template #handle>
<vi-title title="审核信息"></vi-title>
<el-form :model="formData" ref="form" :rules="formRules" label-position="right"
style="padding: 20px 0"
label-width="120px">
<el-row gutter="20">
<el-col :span="12">
<el-form-item prop="username" label="审核人员">
<el-input v-model="formData.username"
disabled></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="time" label="审核时间">
<el-input v-model="formData.auditTime" disabled></el-input>
</el-form-item>
</el-col>
</el-row>
<el-form-item prop="auditOpinion" label="审核意见">
<el-input type="textarea" v-model="formData.auditOpinion" rows="4"
maxlength="500"
placeholder="请填写您的审核意见"></el-input>
</el-form-item>
<el-form-item prop="auditSign" label="签&emsp;&emsp;字">
<sign :qz.sync="formData.auditSign"></sign>
</el-form-item>
</el-form>
<div style="float: right;margin: 20px 0">
<el-button @click="doReview(false)">
拒绝
</el-button>
<!-- <el-button type="danger" @click="returnBack()">退-->
<!---->
<!-- </el-button>-->
<el-button type="primary" @click="doReview(true)">
通过
</el-button>
</div>
</template>
</evaluate-info>
</template>
<template #view>
<evaluate-info ref="info"></evaluate-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
clubs: [],
units: [],
unions: [],
honorLevelList: [],
evaluateList: [],
honorTypeList: [],
pageForm: {
year: new Date().getFullYear() + "",
isAudit: false,
searchName: 'us.username',
honorType: '',
honorLevel: ''
},
rowData: {},
tableColumns: [
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '分工会', sortable: true},
{prop: 'clubName', label: '协会', sortable: true},
// {prop: 'political', label: '政治面貌', sortable: true},
// {prop: 'joinTime', label: '加入工会时间', sortable: true},
// {prop: 'position', label: '担任职务'},
// {prop: 'unionClub', label: '工会/协会'},
],
multipleSelection: [],
formRules: {
auditOpinion: [{required: true, message: '必填', trigger: ['blur', 'change']}],
auditSign: [{required: true, message: '必填', trigger: ['blur', 'change']}],
}
}
},
components: {
'evaluate-info': httpVueLoader('/components/evaluate/evaluateInfo.vue?v=1.0.0'),
},
methods: {
handleSelectionChange(val) {
this.multipleSelection = val;
},
exportFiles() {
if (this.multipleSelection.length === 0) {
this.$notify.warning({title: '提示', message: '请在左侧多选框中选择再进行此操作!'});
return
}
const ids = this.multipleSelection.map(o => o.id)
window.location.href = "/platform/evaluate/audit/school/downloadAnnex?ids=" + JSON.stringify(ids)
},
exportTableData() {
this.pageForm.honorTypeBoolean = this.pageForm.honorType === HonorApi.honor_single_id
window.location.href = "/platform/evaluate/audit/school/exportTableData?data=" + JSON.stringify(this.pageForm)
},
rollback(row) {
this.$confirm('确定要撤回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/school/rollback', {
id: row.id,
type: row.honorTypeId === HonorApi.honor_single_id,
})
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
returnBack() {
this.formData.id = this.rowData.id
this.formData.type = this.rowData.honorTypeId === HonorApi.honor_single_id
this.formData.userId = this.rowData.userId
this.$confirm('确定要退回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/school/returnBack', this.formData)
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
this.$refs.guava.index()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
radioChange(o) {
if (this.pageForm.honorType == HonorApi.honor_single_id) {
this.tableColumns = [
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
// {prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任职务'},
]
} else {
this.tableColumns = [
/* {prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'applyUnionName', label: '申报院级工会', sortable: true},
{prop: 'unionLeader', label: '工会主席', sortable: true},
{prop: 'memberNumber', label: '会员人数', sortable: true},
{prop: 'unionGroupNumber', label: '工会小组数', sortable: true},*/
]
}
this.doSearch()
},
dropdownCommand(command) {
const {type, data} = command
if (type == 'view') {
this.openView(data)
} else if (type == 'edit') {
this.openEdit(data)
}
},
async doReview(flag) {
if (!this.formData.auditSign) {
this.$message.warning("请填写签字!")
return
}
this.$refs["form"].validate(async (valid) => {
if (valid) {
this.formData.pass = flag
const resp = await $.post(loc() + "/doReview", this.formData)
if (resp.code === 0) {
this.notifySuccess(resp.msg)
this.pageData()
this.getHonorNum()
this.$refs.guava.index()
} else {
this.notifyWarning(resp.msg)
}
}
})
},
openView(data) {
this.$refs.info.getInfo(data.id)
this.$refs.guava.view()
},
openEdit(data) {
this.rowData = data
this.formData = {
id: data.id,
username: "${@shiro.getPrincipalProperty('username')}",
auditTime: moment().format('YYYY-MM-DD'),
}
this.$refs.info2.getInfo(data.id)
this.$refs.guava.edit()
if (this.$refs['form']) {
this.$refs['form'].resetFields()
}
},
async flushUnits() {
this.$set(this.pageForm, "unitId", "")
if ("${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}" === 'true') {
this.units = await getUnits(this.pageForm.unionId)
} else {
this.units = await getUnits("${@shiro.getPrincipalProperty('unit').getUnionid()}")
}
},
async getHonorNum() {
const evaluateNum = await HonorApi.getEvaluateNum(1800)
this.honorTypeList.map(v => {
if (v.code === "H1100") {
v.num = evaluateNum.gr
} else {
v.num = evaluateNum.jt
}
})
this.$forceUpdate();
},
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year})
this.evaluateList = data
},
},
async created() {
this.honorLevelList = await HonorApi.getHonorLevel()
this.honorTypeList = await HonorApi.getHonorType()
if (this.honorTypeList) {
await this.getHonorNum()
this.$set(this.pageForm, "honorType", this.honorTypeList[0].id)
}
await this.getEvaluateByYear()
this.unions = await getUnions(null)
this.clubs = await getClubsByRole()
this.flushUnits()
this.pageData()
}
})
</script>
<!--#
}
#-->
@@ -0,0 +1,388 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.el-select {
width: 100%;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<template>
<el-card shadow="never">
<div class="btn-group tool-button">
<div class="block">
<el-date-picker
style="width: 100px"
v-model="pageForm.year"
type="year" @change="getEvaluateByYear()"
value-format="yyyy"
placeholder="年度">
</el-date-picker>
</div>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId" style="width: 100%;"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<div class="btn-group tool-button" v-if="pageForm.honorType=='101'">
<div>
<el-input placeholder="请输入内容" v-model="pageForm.searchKeyword" clearable>
<el-select v-model="pageForm.searchName" slot="prepend" placeholder="查询类型"
style="width: 100px;">
<el-option label="工号" value="us.loginname"></el-option>
<el-option label="姓名" value="us.username"></el-option>
</el-select>
</el-input>
</div>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属工会" v-model="pageForm.unionId" style="width: 100%;"
clearable="true"
@change="flushUnits" @clear="flushUnits"
v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')||@shiro.hasRole('H03')}"
filterable="true">
<el-option v-for="item in unions" :label="item.unionname" :value="item.id"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属单位" v-model="pageForm.unitId" style="width: 100%;"
clearable="true"
filterable="true">
<el-option v-for="item in units" :label="item.name" :value="item.id"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">-->
<!-- <el-radio-group v-model="pageForm.honorType" @change="(o) => {radioChange(o)}">-->
<!-- <el-radio-button v-for="v in honorTypeList" :label="v.id">{{v.name}}{{v.num}}-->
<!-- </el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<div class="btn-group tool-button">
<el-button type="primary" @click="doSearch" icon="el-icon-search"></el-button>
</div>
<div class="pull-right offscreen-right">
<el-radio-group v-model="pageForm.isAudit" @change="doSearch">
<el-radio-button :label="null">全部</el-radio-button>
<el-radio-button :label="true">已审核</el-radio-button>
<el-radio-button :label="false">未审核</el-radio-button>
</el-radio-group>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<vi-title2 title="申请列表"></vi-title2>
<el-table :data="tableData">
<el-table-column align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column
align="center"
header-align="center"
v-for="column in tableColumns"
:label="column.label"
:prop="column.prop" :sortable="column.sortable"
:sortable="column.sortable" show-overflow-tooltip>
</el-table-column>
<el-table-column label="申请时间" prop="applyTime" sortable header-align="center"
align="center"></el-table-column>
<el-table-column align="center" header-align="center" label="审核状态" prop="year"
show-overflow-tooltip>
<template slot-scope="{row}">
<span :style="'color: ' + row.stateColor">{{row.stateName}}</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" fixed="right" width="220px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)" type="primary">
查看
</el-button>
<el-button size="mini" @click="rollback(row)" type="danger"
v-if="pageForm.isAudit === true && row.stateId <= 1800">
撤回
</el-button>
<el-button size="mini" @click="openEdit(row)" type="primary" v-if="row.stateId == 1600">
审核
</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #edit>
<evaluate-info ref="info2" :handle="true" label="院级工会审核" :panes="[2, 3]">
<template #handle>
<vi-title title="审核信息"></vi-title>
<el-form :model="formData" ref="form" :rules="formRules" label-position="right"
style="padding: 20px 0"
label-width="120px">
<el-row gutter="20">
<el-col :span="12">
<el-form-item prop="username" label="审核人员">
<el-input v-model="formData.username"
disabled></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="time" label="审核时间">
<el-input v-model="formData.auditTime" disabled></el-input>
</el-form-item>
</el-col>
</el-row>
<el-form-item prop="auditOpinion" label="审核意见">
<el-input type="textarea" v-model="formData.auditOpinion" rows="4" maxlength="500"
placeholder="请填写您的审核意见"></el-input>
</el-form-item>
<el-form-item prop="auditSign" label="签&emsp;&emsp;字">
<sign :qz.sync="formData.auditSign"></sign>
</el-form-item>
</el-form>
<div style="float: right;margin: 20px 0">
<el-button @click="doReview(false)">
</el-button>
<!-- <el-button type="danger" @click="returnBack()">退-->
<!---->
<!-- </el-button>-->
<el-button type="primary" @click="doReview(true)">
</el-button>
</div>
</template>
</evaluate-info>
</template>
<template #view>
<evaluate-info ref="info"></evaluate-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
units: [],
unions: [],
honorLevelList: [],
evaluateList: [],
honorTypeList: [],
pageForm: {
year: new Date().getFullYear() + "",
isAudit: false,
searchName: 'us.username',
honorType: '',
honorLevel: ''
},
rowData: {},
tableColumns: [
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
{prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任工会职务'},
],
formRules: {
auditOpinion: [{required: true, message: '必填', trigger: ['blur', 'change']}],
auditSign: [{required: true, message: '必填', trigger: ['blur', 'change']}],
}
}
},
components: {
'evaluate-info': httpVueLoader('/components/evaluate/evaluateInfo.vue?v=1.0.0'),
},
methods: {
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year})
this.evaluateList = data
},
rollback(row) {
this.$confirm('确定要撤回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/union/rollback', {
id: row.id,
type: row.honorTypeId === HonorApi.honor_single_id,
})
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
returnBack() {
this.formData.id = this.rowData.id
this.formData.type = this.rowData.honorTypeId === HonorApi.honor_single_id
this.formData.userId = this.rowData.userId
this.$confirm('确定要退回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/union/returnBack', this.formData)
if (resp.code === 0) {
this.$message.success(resp.msg)
await this.getHonorNum()
this.pageData()
this.$refs.guava.index()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
radioChange(o) {
if (this.pageForm.honorType == HonorApi.honor_single_id) {
this.tableColumns = [
{prop: 'username', label: '申请人姓名', sortable: true},
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
{prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任工会职务'},
]
} else {
this.tableColumns = [
{prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'applyUnionName', label: '申报院级工会', sortable: true},
{prop: 'unionLeader', label: '工会主席', sortable: true},
{prop: 'memberNumber', label: '会员人数', sortable: true},
{prop: 'unionGroupNumber', label: '工会小组数', sortable: true},
]
}
this.doSearch()
},
dropdownCommand(command) {
const {type, data} = command
if (type == 'view') {
this.openView(data)
} else if (type == 'edit') {
this.openEdit(data)
}
},
async doReview(flag) {
if (!this.formData.auditSign){
this.$message.warning("请填写签字!")
return
}
this.$refs["form"].validate(async (valid) => {
if (valid) {
this.formData.pass = flag
const resp = await $.post(loc() + "/doReview", this.formData)
if(resp.code===0){
this.$message.success(resp.msg)
this.pageData()
this.getHonorNum()
this.$refs.guava.index()
}else{
this.$message.warning(resp.msg)
}
}
})
},
openView(data) {
this.$refs.info.getInfo(data.id)
this.$refs.guava.view()
},
openEdit(data) {
this.rowData = data
this.formData = {
id: data.id,
username: "${@shiro.getPrincipalProperty('username')}",
auditTime: moment().format('YYYY-MM-DD'),
}
this.$refs.info2.getInfo(data.id)
this.$refs.guava.edit()
if (this.$refs['form']) {
this.$refs['form'].resetFields()
}
},
async flushUnits() {
this.$set(this.pageForm, "unitId", "")
if ("${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')||@shiro.hasRole('H03')}" === 'true') {
this.units = await getUnits(this.pageForm.unionId)
} else {
this.units = await getUnits("${@shiro.getPrincipalProperty('unit').getUnionid()}")
}
},
async getHonorNum() {
const evaluateNum = await HonorApi.getEvaluateNum(1600)
this.honorTypeList.map(v => {
if (v.code === "H1100") {
v.num = evaluateNum.gr
} else {
v.num = evaluateNum.jt
}
})
this.$forceUpdate();
}
},
async created() {
this.honorLevelList = await HonorApi.getHonorLevel()
this.honorTypeList = await HonorApi.getHonorType()
if (this.honorTypeList) {
await this.getHonorNum()
this.$set(this.pageForm, "honorType", this.honorTypeList[0].id)
}
await this.getEvaluateByYear()
this.unions = await getUnions(null)
this.flushUnits()
this.pageData()
}
})
</script>
<!--#
}
#-->
@@ -0,0 +1,360 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.el-select {
width: 100%;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<template>
<el-card shadow="never">
<div class="btn-group tool-button">
<div class="block">
<el-date-picker
v-model="pageForm.year"
type="year" @change="getEvaluateByYear()"
value-format="yyyy"
placeholder="年度">
</el-date-picker>
</div>
</div>
<!--<div class="btn-group tool-button">
<el-select v-model="pageForm.honorLevel" placeholder="请选择级别" style="width: 200px"
@change="doSearch"
clearable>
<el-option v-for="o in honorLevelList"
:key="o.id"
:label="o.name"
:value="o.id"
></el-option>
</el-select>
</div>-->
<div class="btn-group tool-button">
<el-select placeholder="请选择申报协会" v-model="pageForm.clubId"
style="width: 100%;"
clearable
filterable>
<el-option v-for="item in clubs"
:label="item.name"
:value="item.stid"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId" style="width: 100%;"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">
<el-select placeholder="所属工会" v-model="pageForm.unionId" style="width: 100%;"
clearable="true"
@change="flushUnits" @clear="flushUnits"
v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}"
filterable="true">
<el-option v-for="item in unions" :label="item.unionname" :value="item.id"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属单位" v-model="pageForm.unitId" style="width: 100%;"
clearable="true"
filterable="true">
<el-option v-for="item in units" :label="item.name" :value="item.id"></el-option>
</el-select>
</div>-->
<div class="btn-group tool-button" v-if="pageForm.honorType=='101'">
<div>
<el-input placeholder="请输入内容" v-model="pageForm.searchKeyword" clearable>
<el-select v-model="pageForm.searchName" slot="prepend" placeholder="查询类型"
style="width: 100px;">
<el-option label="工号" value="us.loginname"></el-option>
<el-option label="姓名" value="us.username"></el-option>
</el-select>
</el-input>
</div>
</div>
<div class="btn-group tool-button">
<el-radio-group v-model="pageForm.honorType" @change="doSearch">
<el-radio-button v-for="v in honorTypeList" :label="v.id">{{v.name}}</el-radio-button>
</el-radio-group>
</div>
<div class="btn-group tool-button">
<el-button type="primary" @click="doSearch" icon="el-icon-search"></el-button>
</div>
<div class="pull-right offscreen-right">
<el-radio-group v-model="pageForm.isAudit" @change="doSearch">
<el-radio-button :label="null">全部</el-radio-button>
<el-radio-button :label="true">已审核</el-radio-button>
<el-radio-button :label="false">未审核</el-radio-button>
</el-radio-group>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<vi-title2 title="申请列表"></vi-title2>
<el-table :data="tableData">
<el-table-column align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column align="center" header-align="center" label="评优评先名称" prop="evaluateName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="申请类型" prop="honorName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="申请人姓名" prop="userName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="工号" prop="loginname"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="性别" prop="userSex"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="单位" prop="unitName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="协会" prop="clubName"
show-overflow-tooltip></el-table-column>
<!-- <el-table-column align="center" header-align="center" label="加入工会时间" prop="joinTime"
show-overflow-tooltip></el-table-column>-->
<!-- <el-table-column align="center" header-align="center" label="担任职务" prop="position"-->
<!-- show-overflow-tooltip></el-table-column>-->
<el-table-column align="center" header-align="center" label="申请时间" prop="applyTime"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="审核状态" prop="year"
show-overflow-tooltip>
<template slot-scope="{row}">
<span :style="'color: ' + row.stateColor">{{row.stateName}}</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" fixed="right" width="220px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)" type="primary">
查看
</el-button>
<el-button size="mini" @click="rollback(row)" type="danger"
v-if="pageForm.isAudit === true && row.stateId <= 1800">
撤回
</el-button>
<el-button size="mini" @click="openEdit(row)" type="primary" v-if="row.stateId==1450">
审核
</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #edit>
<evaluate-info ref="info2" :handle="true" label="协会审核" :panes="[2]">
<template #handle>
<vi-title title="审核信息"></vi-title>
<el-form :model="formData" ref="form" :rules="formRules" label-position="right"
label-width="120px">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item prop="username" label="审核人员">
<el-input v-model="formData.username"
disabled></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="time" label="审核时间">
<el-input v-model="formData.auditTime" disabled></el-input>
</el-form-item>
</el-col>
</el-row>
<el-form-item prop="auditOpinion" label="审核意见">
<el-input type="textarea" v-model="formData.auditOpinion" rows="4" maxlength="500"
placeholder="请填写您的审核意见"></el-input>
</el-form-item>
<el-form-item prop="auditSign" label="签&emsp;&emsp;字">
<sign :qz.sync="formData.auditSign"></sign>
</el-form-item>
</el-form>
<div style="float: right;margin: 20px 0">
<el-button @click="doReview(false)">
拒绝
</el-button>
<!-- <el-button type="danger" @click="returnBack()">退-->
<!---->
<!-- </el-button>-->
<el-button type="primary" @click="doReview(true)">
通过
</el-button>
</div>
</template>
</evaluate-info>
</template>
<template #view>
<evaluate-info ref="info"></evaluate-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
clubs: [],
units: [],
unions: [],
evaluateList: [],
honorLevelList: [],
honorTypeList: [],
pageForm: {
// year: new Date().getFullYear() + "",
year: "",
isAudit: false,
searchName: 'us.username',
honorType: '',
honorLevel: ''
},
rowData: {},
formRules: {
auditOpinion: [{required: true, message: '必填', trigger: ['blur', 'change']}],
auditSign: [{required: true, message: '必填', trigger: ['blur', 'change']}],
}
}
},
components: {
'evaluate-info': httpVueLoader('/components/evaluate/evaluateInfo.vue?v=1.0.0'),
},
methods: {
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year})
this.evaluateList = data
},
rollback(row) {
this.$confirm('确定要撤回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/unit/rollback', {
id: row.id,
type: row.honorTypeId === HonorApi.honor_single_id,
})
if (resp.code === 0) {
this.$message.success(resp.msg)
this.pageData()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
returnBack() {
this.formData.id = this.rowData.id
this.formData.type = this.rowData.honorTypeId === HonorApi.honor_single_id
this.formData.userId = this.rowData.userId
this.$confirm('确定要退回吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: async (a, b) => {
if ("confirm" == a) {//确认后再执行
const resp = await $.post('/platform/evaluate/audit/unit/returnBack', this.formData)
if (resp.code === 0) {
this.$message.success(resp.msg)
this.pageData()
this.$refs.guava.index()
} else {
this.$message.warning(resp.msg)
}
}
}
});
},
dropdownCommand(command) {
const {type, data} = command
if (type == 'view') {
this.openView(data)
} else if (type == 'edit') {
this.openEdit(data)
}
},
async doReview(flag) {
if (!this.formData.auditSign) {
this.$message.warning("请填写签字!")
return
}
this.$refs["form"].validate(async (valid) => {
if (valid) {
this.formData.pass = flag
const resp = await $.post(loc() + "/doReview", this.formData)
if (resp.code === 0) {
this.notifySuccess(resp.msg)
this.pageData()
this.$refs.guava.index()
} else {
this.notifyWarning(resp.msg)
}
}
})
},
openView(data) {
this.$refs.info.getInfo(data.id)
this.$refs.guava.view()
},
openEdit(data) {
this.rowData = data
this.formData = {
id: data.id,
username: "${@shiro.getPrincipalProperty('username')}",
auditTime: moment().format('YYYY-MM-DD'),
}
this.$refs.info2.getInfo(data.id)
this.$refs.guava.edit()
if (this.$refs['form']) {
this.$refs['form'].resetFields()
}
},
async flushUnits() {
this.$set(this.pageForm, "unitId", "")
if ("${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}" === 'true') {
this.units = await getUnits(this.pageForm.unionId)
} else {
this.units = await getUnits("${@shiro.getPrincipalProperty('unit').getUnionid()}")
}
},
},
async created() {
await this.getEvaluateByYear()
this.honorLevelList = await HonorApi.getHonorLevel()
const honorTypeList = await HonorApi.getHonorType()
this.unions = await getUnions(null)
this.flushUnits()
this.clubs = await getClubsByRole()
this.pageData()
}
})
</script>
<!--#
}
#-->
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,304 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.table_fixed {
table-layout: fixed !important;
}
.btn-group {
margin-right: 6px;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<el-card shadow="never">
<div class="search">
<div class="btn-group tool-button">
<el-date-picker
placeholder="选择年度"
type="year"
@change="doSearch"
v-model="pageForm.year"
value-format="yyyy">
</el-date-picker>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId" style="width: 100%;"
@change="doSearch"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">-->
<!-- <el-radio-group v-model="pageForm.honorType" @change="doSearch();getEvaluateByYear()">-->
<!-- <el-radio-button v-for="v in honorTypeList" :label="v.id">{{v.name}}-->
<!-- </el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<div class="search-query">
<el-button @click="doSearch" icon="el-icon-search" type="primary"></el-button>
</div>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<el-table :data="tableData" :size="tableSize" @sort-change="pageOrder">
<el-table-column :index="indexMethod" align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column align="center" header-align="center" label="年度" prop="year" show-overflow-tooltip
sortable>
<template slot-scope="{row}">
{{moment(row.startTime).format('YYYY')}}
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="名称" prop="name"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="类型" prop="honorName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="荣誉类型" prop="type" show-overflow-tooltip
sortable>
<template slot-scope="{row}">
{{row.directions ? '集体荣誉' : '个人荣誉'}}
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="申请时间" prop="startTime"
show-overflow-tooltip
sortable>
<template slot-scope="{row}">
{{moment(row.startTime).format('YYYY-MM-DD') + ' 至 ' +
moment(row.endTime).format('YYYY-MM-DD')}}
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="参加活动范围" prop="groupName"
show-overflow-tooltip></el-table-column>
<el-table-column align="center" header-align="center" label="状态" prop="startTime" show-overflow-tooltip
sortable>
<template slot-scope="{row}">
<span :class="getStatus(row).class">{{getStatus(row).name}}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="150px">
<template scope="{row}">
<el-dropdown>
<el-button plain size="mini">
<i class="ti-settings"></i>
<span class="ti-angle-down"></span>
</el-button>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item @click.native="openCode(row.id)">
活动二维码
</el-dropdown-item>
<el-dropdown-item @click.native="sendMsg(row)">
通知
</el-dropdown-item>
<el-dropdown-item @click.native="openView(row)">
查看
</el-dropdown-item>
<el-dropdown-item @click.native="openEdit(row)">
编辑
</el-dropdown-item>
<el-dropdown-item @click.native="deleteDo(row)"
v-if="moment().unix() <= moment(row.endTime).unix()">
删除
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
<template #view>
<el-tabs>
<el-tab-pane label="评优评先活动信息">
<el-descriptions :column="2" border class="table_fixed">
<el-descriptions-item :span="2" label="名称">
{{viewData.name}}
</el-descriptions-item>
<el-descriptions-item label="年度">
{{moment(viewData.startTime).format('YYYY')}}
</el-descriptions-item>
<el-descriptions-item label="申请时间">
{{viewData.startTime + ' ~ ' + viewData.endTime}}
</el-descriptions-item>
<el-descriptions-item :span="2" label="参加人员范围">
{{viewData.groupName}}
</el-descriptions-item>
<el-descriptions-item :span="2" label="评选条件">
<div v-html="viewData.conditions"></div>
</el-descriptions-item>
<el-descriptions-item label="评选表彰程序">
<div v-html="viewData.program"></div>
</el-descriptions-item>
</el-descriptions>
</el-tab-pane>
<el-tab-pane label="名额分配信息">
<el-table v-if="!viewData.directions" :data="viewData.unionLimit">
<el-table-column prop="unionname" label="分工会"></el-table-column>
<el-table-column prop="teacherCount" label="人数"></el-table-column>
<el-table-column prop="ratio" label="比例(%)"></el-table-column>
<el-table-column prop="limitCount" label="分配人数"></el-table-column>
</el-table>
<template v-if="viewData.directions">
<div style="float: left">评选名额:</div>
<el-input type="textarea" v-model="viewData.directions" rows="4" maxlength="500"
style="width: 94%" readonly=""></el-input>
</template>
</el-tab-pane>
</el-tabs>
</template>
<send-msg ref="sendMsg" :url="url"></send-msg>
<open-qr-code ref="openQRCode" :url="url"></open-qr-code>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
pageForm: {
year: moment().format('YYYY'),
},
viewData: {},
viewDataTable: [],
activityGroupList: [],
evaluateList: [],
url: '',
honorTypeList: [],
}
},
components: {
'open-qr-code': httpVueLoader('/components/plugins/OpenQRCode.vue'),
'send-msg': httpVueLoader('/components/plugins/SendMsgByGroupId.vue'),
},
methods: {
sendMsg(row) {
this.url = `<a href="` + (APP_DOMAIN + "/platform/evaluate/apply") + `">点击参与</a>`
this.$refs.sendMsg.openDialog(row.groupId)
},
openCode(id) {
this.$refs.openQRCode.openCode("/platform/evaluate/apply")
},
pageOrder(column) {//按字段排序
this.pageForm.pageOrderName = column.prop;
this.pageForm.pageOrderBy = column.order;
this.pageData();
},
async deleteDo(row) {
const resp = await $.post('/platform/evaluate/getApplyData', {id: row.id})
if(resp.data && resp.data.length > 0) {
this.$notify({title: '提示', message: '此评优评先活动已有申请记录,不能删除!', type: 'warning'})
return
}
this.$confirm('您确定要删除吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
callback: (a, b) => {
if ("confirm" == a) {
$.post("/platform/evaluate/doDelete", {id: row.id}, (data) => {
if (data.code == 0) {
this.$message.success(resp.msg)
this.pageData();
} else {
this.$message.warning(resp.msg)
}
}, "json");
}
}
});
},
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year,type:this.pageForm.honorType})
this.evaluateList = data
},
getStatus(row) {
const now = new Date().getTime()
const hdkssj = moment(row.startTime.valueOf())
const hdjssj = moment(row.endTime.valueOf())
if (now < hdkssj) {
return {
class: 'text-info',
name: '活动未开始'
}
} else if (now > hdkssj && now < hdjssj) {
return {
class: 'text-success',
name: '活动进行中'
}
} else if (now > hdjssj) {
return {
class: 'text-danger',
name: '活动已截止'
}
}
},
async openView(row) {
const {id} = row
const resp = await $.get('/platform/evaluate/findOne', {id})
if (resp.code === 0) {
this.viewData = resp.data.evaluate
if (!this.viewData.directions) {
const {data} = await $.post('/platform/evaluate/getUnions')
data.map(v => {
const fpmeGh = resp.data.fpme.find(o => o.unionId === v.id)
this.viewDataTable.push({
id: fpmeGh ? fpmeGh.id : '',
ghid: v.id,
unionname: v.unionname,
number: fpmeGh ? fpmeGh.number : 0,
unioncode: v.unioncode,
membercount: v.membercount
})
})
}
this.$refs['guava'].view()
}
},
openEdit(row) {
sublime.jumpPagePjax('/platform/evaluate/add?id=' + row.id)
},
async pageData() {
const res = await $.post('/platform/evaluate/pageData', this.pageForm)
if (res.code === 0) {
this.tableData = res.data.list;
this.pageForm.totalCount = res.data.totalCount;
}
},
async getActivityGroup() {
const resp = await $.get('/platform/activity/basic/scope/getActivityUserScopeGroup')
this.activityGroupList = resp.data
},
},
async created() {
this.honorTypeList = await HonorApi.getHonorType()
if (this.honorTypeList) {
this.$set(this.pageForm, "honorType", this.honorTypeList[0].id)
}
await this.getActivityGroup()
await this.getEvaluateByYear()
this.pageData()
}
})
</script>
<!--#
}
#-->
@@ -0,0 +1,179 @@
<!--#
layout("/layouts/platform.html"){
#-->
<div id="app" v-cloak>
<guava ref="guava">
<el-card shadow="never">
<!--#include("/platform/evaluate/include_evaluate_edit.html"){}#-->
</el-card>
</guava>
</div>
<script>
let E = window.wangEditor
const editors = {}
var vue = new Vue({
el: '#app',
components: {
'fgh-select': httpVueLoader('/components/plugins/FghSelect.vue?v=1.0.0'),
'drawer-user-scope': httpVueLoader('/components/plugins/DrawerUserScope.vue'),
},
data() {
let validProgram = (rule, value, callback) => {
if (!this.formData.program || !dd3s.html2txt(this.formData.program)) {
callback(new Error('请填写评选表彰程序'));
} else {
callback();
}
};
return {
stepActive: 0,
formData: {
time: [],
unionLimit: [],
},
formRules: {
name: [{required: true, message: '请填写评优评先名称', trigger: ['blur', 'change']}],
honor: [{required: true, message: '请选择类型', trigger: ['blur', 'change']}],
time: [{required: true, message: '请选择申请时间', trigger: ['blur', 'change']}],
groupId: [{required: true, message: '请选择参加人员范围', trigger: ['blur', 'change']}],
conditions: [{required: true, message: '请填写评选条件', trigger: ['blur', 'change']}],
pxxmlx: [{required: true, message: '请填写评选项目类型', trigger: ['blur', 'change']}],
program: [{validator: validProgram, trigger: ['blur', 'change']}],
},
unions: [],
unionTableData: [],
activityGroupList: [],
honorOptions: [],
radioActive: '直接分配',
rate: 0,
honor: {},
fpme: [],
}
},
methods: {
cascaderChange(o) {
for (const item of this.honorOptions) {
this.honor = item.children.find(x => {
return x.value === o
})
if (this.honor) {
this.formData.honorTypeId = item.value
return
}
}
},
initEditor() {
let keys = ['program']
keys.forEach(key => {
$("#" + key).html("")
editors[key] = new E('#' + key)
editors[key].config.onchange = (html) => {
this.formData[key] = html
}
editors[key].create()
if (this.formData[key]) {
editors[key].txt.html(this.formData[key])
}
})
},
async initData() {
const id = GetQueryString("id")
this.id = id
if (id) {
const resp = await $.post('/platform/evaluate/findOne', {id})
if (resp.code === 0) {
this.formData = resp.data.evaluate
this.$set(this.formData, 'time', [this.formData.startTime, this.formData.endTime])
this.formData.honor = this.formData.honorId
this.fpme = resp.data.fpme
this.cascaderChange(this.formData.honorId)
this.$nextTick(() => {
this.initEditor()
})
}
}
},
async next() {
this.unionTableData = []
this.$refs.form.validate(async (valid) => {
if (valid) {
this.stepActive = 1
} else {
this.$notify({title: '警告', message: '存在未填的必填项', type: 'warning'})
}
});
},
async doAdd() {
this.formData.startTime = this.formData.time[0]
this.formData.endTime = this.formData.time[1]
this.formData.honorId = this.honor.value
if (this.honor.parentName === '集体荣誉' && !this.formData.directions) {
this.$notify({title: '警告', message: '请填写评选名额的说明', type: 'warning'})
return
}
const loading = this.$loading({
lock: true,
text: '正在提交...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
const resp = await $.post('/platform/Evaluate/doHandle', {
evaluate: JSON.stringify(this.formData),
data: this.honor.parentName === '个人荣誉' ? JSON.stringify(this.unionTableData) : JSON.stringify([])
})
if (resp.code === 0) {
loading.close();
this.$notify({
title: '成功',
message: resp.msg,
type: 'success',
duration: 500,
onClose: () => {
sublime.jumpPagePjax('/platform/evaluate/manage')
}
});
}
},
async getActivityGroup() {
const resp = await $.get('/platform/activity/basic/scope/getActivityUserScopeGroup')
this.activityGroupList = resp.data
},
async getHonor() {
const resp = await $.get('/platform/evaluate/getHonor')
this.honorOptions = resp.data
},
doBack() {
if (GetQueryString("id") !== '') {
sublime.jumpPagePjax('/platform/evaluate/manage')
}
},
},
async created() {
const self = this
setTimeout(function () {
self.initEditor()
}, 100)
await this.getActivityGroup()
await this.getHonor()
await this.initData()
},
watch: {
'rate'(o) {
this.unionTableData.forEach(item => {
item.number = Math.round(item.membercount * o / 100)
})
},
}
})
</script>
<!--#
}
#-->
@@ -0,0 +1,142 @@
<style>
.editor .el-form-item__label:before {
content: '*';
color: #F56C6C;
margin-right: 4px;
}
</style>
<template>
<el-row style="padding: 0 10%;">
<el-steps :active="stepActive" finish-status="success" simple>
<el-step description="" title="活动信息">
</el-step>
<el-step description="" title="名额分配">
</el-step>
</el-steps>
<div class="transition-box" style="margin-top: 20px;" v-show="stepActive === 0">
<el-form :model="formData" :rules="formRules" label-width="120px" ref="form">
<el-row gutter="20">
<el-col :span="12">
<el-form-item label="评优评先名称" prop="name">
<el-input v-model="formData.name"
placeholder="请填写评优评先名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="类型" prop="honor">
<el-cascader style="width: 100%" :show-all-levels="false" :props="{ emitPath: false }"
v-model="formData.honor" clearable filterable @change="cascaderChange"
:options="honorOptions"></el-cascader>
</el-form-item>
</el-col>
</el-row>
<el-row gutter="20">
<el-col :span="12">
<el-form-item label="申请时间" label-width="120px" prop="time">
<el-date-picker
align="right"
end-placeholder="结束日期"
start-placeholder="开始日期"
style="width: 100%"
type="datetimerange"
v-model="formData.time"
value-format="yyyy-MM-dd HH:mm:ss">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="12" v-if="honor.parentName !== '集体荣誉'">
<el-form-item label="参加人员范围" prop="groupId">
<div style="display: flex; justify-content: space-between">
<div style="width: 99%">
<el-select placeholder="请选择参加人员范围" v-model="formData.groupId" style="width: 99%"
clearable
filterable>
<el-option v-for="item in activityGroupList" :label="item.groupName"
:value="item.groupId"></el-option>
</el-select>
</div>
<div>
<el-button @click="$refs.drawerUserScope.userScopeDialog = true" type="primary">设置</el-button>
</div>
</div>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="pxxmlx" label="评选项目类型">
<el-radio-group v-model="formData.pxxmlx">
<el-radio-button :label="1">工会</el-radio-button>
<el-radio-button :label="2">协会</el-radio-button>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item prop="xlFlag" label="活动提醒">
<el-switch
v-model="formData.xlFlag"
active-color="#13ce66"
inactive-color="#ff4949">
</el-switch>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="评选条件" prop="conditions">
<el-input type="textarea" v-model="formData.conditions" rows="4" maxlength="500"
placeholder="请填写评选条件"></el-input>
</el-form-item>
<div class="editor">
<el-form-item label="评选表彰程序" prop="program" class="is-required">
<div id="program"></div>
</el-form-item>
</div>
</el-form>
<div style="float: right;margin: 20px 0">
<el-button v-if="GetQueryString('id') !== ''" @click="doBack" type="primary">返回</el-button>
<el-button @click="next" type="primary">下一步</el-button>
</div>
</div>
<div class="transition-box" style="margin-top: 20px;" v-show="stepActive === 1">
<template v-if="honor.parentName === '个人荣誉' && stepActive === 1">
<fgh-select :user_scope="formData.groupId" :union_limit.sync="formData.unionLimit"></fgh-select>
</template>
<template v-if="honor.parentName === '集体荣誉'">
<el-form label-width="120px">
<el-form-item label="评选名额" prop="conditions">
<el-input type="textarea" v-model="formData.directions" rows="4" maxlength="500"
placeholder="请填写评选名额的说明"></el-input>
</el-form-item>
</el-form>
</template>
<div style="float: right;margin: 20px 0">
<el-button v-if="GetQueryString('id') !== ''" @click="doBack" type="primary">返回</el-button>
<el-button @click="stepActive = 0" type="primary">上一步</el-button>
<el-button @click="doAdd()" type="primary">
</el-button>
</div>
</div>
</el-row>
<drawer-user-scope
@group_change="getActivityGroup"
ref="drawerUserScope"
:group_id.sync="formData.groupId"
></drawer-user-scope>
</template>
@@ -0,0 +1,336 @@
<!--#
layout("/layouts/platform.html"){
#-->
<style>
.el-select {
width: 100%;
}
</style>
<div id="app" v-cloak>
<guava ref="guava">
<template>
<el-card shadow="never">
<div class="btn-group tool-button">
<div class="block">
<el-date-picker
style="width: 100px"
v-model="pageForm.year"
type="year" @change="getEvaluateByYear()"
value-format="yyyy"
placeholder="年度">
</el-date-picker>
</div>
</div>
<div class="btn-group tool-button">
<el-input placeholder="请输入内容" v-model="pageForm.searchKeyword" clearable>
<el-select v-model="pageForm.searchName" slot="prepend" placeholder="查询类型"
style="width: 100px;">
<el-option label="工号" value="us.loginname"></el-option>
<el-option label="姓名" value="us.username"></el-option>
</el-select>
</el-input>
</div>
<div class="btn-group tool-button">
<el-select placeholder="评优评先名称" v-model="pageForm.evaluateId" style="width: 100%;"
clearable="true" filterable="true">
<el-option v-for="item in evaluateList" :label="item.evaluateName"
:value="item.evaluateId"></el-option>
</el-select>
</div>
<div class="btn-group tool-button"
v-if="pageForm.honorType=== HonorApi.honor_single_id">
<div class="btn-group tool-button">
<el-select placeholder="所属工会" v-model="pageForm.unionId" style="width: 100%;"
clearable="true"
@change="flushUnits" @clear="flushUnits"
v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}"
filterable="true">
<el-option v-for="item in unions" :label="item.unionname" :value="item.id"></el-option>
</el-select>
</div>
<div class="btn-group tool-button">
<el-select placeholder="所属单位" v-model="pageForm.unitId" style="width: 100%;"
clearable="true"
filterable="true">
<el-option v-for="item in units" :label="item.name" :value="item.id"></el-option>
</el-select>
</div>
</div>
<div class="btn-group tool-button" v-if="pageForm.honorType !== HonorApi.honor_single_id">
<el-select placeholder="请选择申报协会" v-model="pageForm.clubId"
style="width: 100%;"
clearable
filterable>
<el-option v-for="item in clubs"
:label="item.name"
:value="item.stid"></el-option>
</el-select>
</div>
<!-- <div class="btn-group tool-button">-->
<!-- <el-radio-group v-model="pageForm.honorType" @change="(o) => {radioChange(o)}">-->
<!-- <el-radio-button v-for="v in honorTypeList" :label="v.id">{{v.name}}-->
<!-- </el-radio-button>-->
<!-- </el-radio-group>-->
<!-- </div>-->
<div class="btn-group tool-button">
<el-button type="primary" @click="doSearch" icon="el-icon-search"></el-button>
</div>
</el-card>
<el-card class="mt10" shadow="never">
<vi-title2 title="申请列表">
<template #func>
<el-button type="primary" @click="exportExcel" size="small">一键导出excel表</el-button>
<el-button type="primary" @click="exportTableAll" size="small">一键导出登记表</el-button>
<!-- <el-button type="primary" @click="exportResult" size="small">导出公示结果</el-button>-->
</template>
</vi-title2>
<el-table :data="tableData">
<el-table-column align="center" header-align="center" label="序号" type="index"
width="80px"></el-table-column>
<el-table-column align="center" header-align="center" label="评优评先名称"
prop="evaluateName"
show-overflow-tooltip></el-table-column>
<el-table-column
align="center"
header-align="center"
v-for="column in tableColumns"
:label="column.label"
:prop="column.prop" :sortable="column.sortable"
:sortable="column.sortable" show-overflow-tooltip>
<template v-if="column.prop=='unionClub'" scope="{row}">
{{row.pxxmlx===1?row.unionName:row.clubName}}
</template>
</el-table-column>
<template v-if="pageForm.honorType !== HonorApi.honor_single_id">
<el-table-column align="center" header-align="center" label="工会/协会"
prop="applyTime"
show-overflow-tooltip>
<template slot-scope="{row}">
<template v-if="row.pxxmlx===1">
{{row.applyUnionName}}
</template>
<template v-if="row.pxxmlx===2">
{{row.clubName}}
</template>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="工会主席/协会会长"
prop="applyTime"
show-overflow-tooltip>
<template slot-scope="{row}">
<template v-if="row.pxxmlx===1">
{{row.unionLeader}}
</template>
<template v-if="row.pxxmlx===2">
{{row.clubLeader}}
</template>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="会员人数"
prop="applyTime"
show-overflow-tooltip>
<template slot-scope="{row}">
<template v-if="row.pxxmlx===1">
{{row.memberNumber}}
</template>
<template v-if="row.pxxmlx===2">
{{row.clubNumber}}
</template>
</template>
</el-table-column>
</template>
<el-table-column align="center" header-align="center" label="评选项目类型"
prop="applyTime"
show-overflow-tooltip>
<template slot-scope="{row}">
{{row.pxxmlx===1?'工会':'协会'}}
</template>
</el-table-column>
<el-table-column label="申请时间" prop="applyTime" sortable header-align="center"
align="center"></el-table-column>
<el-table-column align="center" header-align="center" label="审核状态" prop="year"
show-overflow-tooltip>
<template slot-scope="{row}">
<span :style="'color: ' + row.stateColor">{{row.stateName}}</span>
</template>
</el-table-column>
<el-table-column align="center" header-align="center" label="操作" fixed="right" width="250px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)" type="primary">
查看
</el-button>
<el-button size="mini" @click="exportTable(row)" type="primary">
导出登记表
</el-button>
</template>
</el-table-column>
</el-table>
<!--#include("/layouts/pagination.html"){}#-->
</el-card>
</template>
<template #view>
<evaluate-info ref="info"></evaluate-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
data() {
return {
clubs: [],
units: [],
unions: [],
evaluateList: [],
pageForm: {
year: '',
isAudit: false,
searchName: 'us.username',
honorType: '',
honorLevel: '',
evaluateId: '',
unionId: '',
unitId: '',
},
honorTypeList: [],
tableColumns: [
{prop: 'userName', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'political', label: '政治面貌', sortable: true},
// {prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任职务'},
{prop: 'unionClub', label: '工会/协会'},
],
}
},
components: {
'evaluate-info': httpVueLoader('/components/evaluate/evaluateInfo.vue'),
},
methods: {
exportTableAll() {
window.location.href = "/platform/evaluate/summary/exportTableAll?year=" + this.pageForm.year +
"&evaluateId=" + this.pageForm.evaluateId +
"&unionId=" + this.pageForm.unionId +
"&unitId=" + this.pageForm.unitId +
"&honorType=" + this.pageForm.honorType
},
exportExcel() {
if (!this.pageForm.year) {
this.$message({
type: 'error',
message: '请选择年份'
});
return
}
window.open(loc() + '/exportExcel?year='+ this.pageForm.year )
},
exportTable(row) {
window.location.href = "/platform/evaluate/summary/exportTable?id=" + row.id
},
exportResult() {
window.location.href = "/platform/evaluate/summary/exportResult?data=" + JSON.stringify(this.pageForm)
},
openView(data) {
this.$refs.info.getInfo(data.id)
this.$refs.guava.view()
},
radioChange() {
if (this.pageForm.honorType === HonorApi.honor_single_id) {
this.tableColumns = [
{prop: 'userName', label: '申请人姓名', sortable: true},
{prop: 'loginname', label: '工号', sortable: true},
{prop: 'userSex', label: '性别', sortable: true},
{prop: 'unitName', label: '单位', sortable: true},
{prop: 'unionName', label: '工会', sortable: true},
// {prop: 'joinTime', label: '加入工会时间', sortable: true},
{prop: 'position', label: '担任职务'},
]
} else {
this.tableColumns = [
/* {prop: 'evaluateName', label: '评优评先名称', sortable: true},
{prop: 'applyUnionName', label: '申报院级工会', sortable: true},
{prop: 'unionLeader', label: '工会主席', sortable: true},
{prop: 'memberNumber', label: '会员人数', sortable: true},
{prop: 'unionGroupNumber', label: '工会小组数', sortable: true},*/
]
}
this.doSearch()
},
async flushUnits() {
this.$set(this.pageForm, "unitId", "")
if ("${@shiro.hasRole('sysadmin')||@shiro.hasRole('A06')}" === 'true') {
this.units = await getUnits(this.pageForm.unionId)
} else {
this.units = await getUnits("${@shiro.getPrincipalProperty('unit').getUnionid()}")
}
},
async pageData() {
const res = await $.post('/platform/evaluate/summary/pageData', this.pageForm)
if (res.code === 0) {
this.tableData = res.data.list;
this.pageForm.totalCount = res.data.totalCount;
}
},
async getEvaluateByYear() {
const {data} = await $.post('/platform/evaluate/apply/getEvaluateByYear', {year: this.pageForm.year})
this.evaluateList = data
}
},
async created() {
this.honorTypeList = await HonorApi.getHonorType()
if (this.honorTypeList) {
this.$set(this.pageForm, "honorType", this.honorTypeList[0].id)
}
await this.getEvaluateByYear()
this.unions = await getUnions(null)
this.clubs = await getClubsByRole()
this.flushUnits()
this.pageData()
}
})
</script>
<!--#
}
#-->