|
|
|
@ -80,28 +80,28 @@
|
|
|
|
<el-table v-loading="loading" :data="voteList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table v-loading="loading" :data="voteList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column label="主键" align="center" prop="id" width="55" />
|
|
|
|
<el-table-column label="主键" align="center" prop="id" width="55" />
|
|
|
|
<el-table-column label="考核任务名称" align="center" prop="pingceName" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="考核任务名称" align="center" prop="pingceName" min-width="140" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="考核项名称" align="center" prop="khitemName" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="考核项名称" align="center" prop="khitemName" min-width="140" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="评分主题" align="center" prop="voteTitle" min-width="120" :show-overflow-tooltip="true">
|
|
|
|
<el-table-column label="评分主题" align="center" prop="voteTitle" min-width="140" :show-overflow-tooltip="true">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-link type="primary" @click="goVoteEmp(scope.row)">{{ scope.row.voteTitle }}</el-link>
|
|
|
|
<el-link type="primary" @click="goVoteEmp(scope.row)">{{ scope.row.voteTitle }}</el-link>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="评分选项" align="center" prop="options" min-width="120" :show-overflow-tooltip="true">
|
|
|
|
<el-table-column label="评分选项" align="center" prop="options" min-width="120" :show-overflow-tooltip="true">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div v-if="scope.row.vote&&scope.row.vote.options.length>0">
|
|
|
|
<div v-if="scope.row.options.length>0">
|
|
|
|
<div v-for="item in scope.row.vote.options" :key="item.value">{{ item.label }}</div>
|
|
|
|
<div v-for="item in scope.row.options" :key="item.value">{{ item.label }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="最大值" align="center" prop="maxNum" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="最大值" align="center" prop="maxNum" min-width="60" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="评分占比" align="center" prop="percentage" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="评分占比" align="center" prop="percentage" min-width="80" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="开始时间" align="center" prop="sTime" min-width="120" :show-overflow-tooltip="true">
|
|
|
|
<el-table-column label="开始时间" align="center" prop="sTime" min-width="100" :show-overflow-tooltip="true">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.sTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
<span>{{ parseTime(scope.row.sTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="结束时间" align="center" prop="eTime" min-width="120" :show-overflow-tooltip="true">
|
|
|
|
<el-table-column label="结束时间" align="center" prop="eTime" min-width="100" :show-overflow-tooltip="true">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.eTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
<span>{{ parseTime(scope.row.eTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
@ -111,8 +111,8 @@
|
|
|
|
<dict-tag :options="dict.type.kh_state" :value="scope.row.state"/>
|
|
|
|
<dict-tag :options="dict.type.kh_state" :value="scope.row.state"/>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="评分详情描述" align="center" prop="vDescription" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="评分详情描述" align="center" prop="vDescription" min-width="140" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" min-width="120" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" min-width="140" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="220">
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="220">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
@ -130,23 +130,23 @@
|
|
|
|
v-hasPermi="['kaohe:vote:remove']"
|
|
|
|
v-hasPermi="['kaohe:vote:remove']"
|
|
|
|
>删除</el-button>
|
|
|
|
>删除</el-button>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
v-if="scope.row.state === '1'"
|
|
|
|
v-if="scope.row.state !== '0'"
|
|
|
|
size="mini"
|
|
|
|
size="mini"
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
icon="el-icon-thumb"
|
|
|
|
icon="el-icon-thumb"
|
|
|
|
@click="goVotepage(scope.row)"
|
|
|
|
@click="goVotepage(scope.row)"
|
|
|
|
>去投票 / 评分</el-button>
|
|
|
|
>去评分</el-button>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
<!-- <pagination
|
|
|
|
v-show="total>0"
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:total="total"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
@pagination="getList"
|
|
|
|
@pagination="getList"
|
|
|
|
/>
|
|
|
|
/>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改投票评测对话框 -->
|
|
|
|
<!-- 添加或修改投票评测对话框 -->
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
@ -256,34 +256,355 @@ export default {
|
|
|
|
this.loading = true
|
|
|
|
this.loading = true
|
|
|
|
listVote(this.queryParams).then(response => {
|
|
|
|
listVote(this.queryParams).then(response => {
|
|
|
|
// this.voteList = response.rows
|
|
|
|
// this.voteList = response.rows
|
|
|
|
this.voteList = []
|
|
|
|
this.voteList = [{
|
|
|
|
/*voteTitle: '师院领导班子评分',
|
|
|
|
id:1,
|
|
|
|
options: [
|
|
|
|
index: 0,
|
|
|
|
{
|
|
|
|
index1: 0,
|
|
|
|
value: 1,
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
label: '优秀'
|
|
|
|
khitemName: '政治建设',
|
|
|
|
},
|
|
|
|
voteTitle: '政治建设评分',
|
|
|
|
{
|
|
|
|
options: [],
|
|
|
|
value: 2,
|
|
|
|
maxNum: 100,
|
|
|
|
label: '合格'
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
},
|
|
|
|
state: '2', //状态
|
|
|
|
{
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
value: 3,
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
label: '基本合格'
|
|
|
|
vDescription: '政治建设评分详情描述', //评分详情描述
|
|
|
|
},
|
|
|
|
remark: '政治建设备注', //备注
|
|
|
|
{
|
|
|
|
},
|
|
|
|
value: 4,
|
|
|
|
{
|
|
|
|
label: '不合格'
|
|
|
|
id:2,
|
|
|
|
}
|
|
|
|
index: 0,
|
|
|
|
],
|
|
|
|
index1: 1,
|
|
|
|
maxNum: null,
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
khitemName: '宣传与思想政治工作',
|
|
|
|
state: '2', //状态
|
|
|
|
voteTitle: '宣传与思想政治工作评分',
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
options: [],
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
maxNum: 100,
|
|
|
|
vDescription: '师院领导班子评分详情描述', //评分详情描述
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
remark: '师院领导班子备注', //备注*/
|
|
|
|
state: '2', //状态
|
|
|
|
this.total = response.total
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '宣传与思想政治工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '宣传与思想政治工作备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id:3,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 2,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '作风纪律',
|
|
|
|
|
|
|
|
voteTitle: '作风纪律评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '作风纪律评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '作风纪律备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 4,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 3,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '安全稳定',
|
|
|
|
|
|
|
|
voteTitle: '安全稳定评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '安全稳定评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '安全稳定备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id: 5,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 4,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '师资队伍与师德师风',
|
|
|
|
|
|
|
|
voteTitle: '师资队伍与师德师风评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '师资队伍与师德师风评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '师资队伍与师德师风备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 6,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 5,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '财务工作',
|
|
|
|
|
|
|
|
voteTitle: '财务工作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '财务工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '财务工作备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id: 7,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 6,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '依法治校与综合治理',
|
|
|
|
|
|
|
|
voteTitle: '依法治校与综合治理评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.05, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '依法治校与综合治理评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '依法治校与综合治理备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 8,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 7,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '国有资产管理',
|
|
|
|
|
|
|
|
voteTitle: '国有资产管理评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.02, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '国有资产管理评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '国有资产管理备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id: 9,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 8,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '实验室管理',
|
|
|
|
|
|
|
|
voteTitle: '实验室管理评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.03, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '实验室管理评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '实验室管理备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 10,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 9,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '招生就业与创新创业工作',
|
|
|
|
|
|
|
|
voteTitle: '招生就业与创新创业工作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '招生就业与创新创业工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '招生就业与创新创业工作备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id: 11,
|
|
|
|
|
|
|
|
index: 0,
|
|
|
|
|
|
|
|
index1: 10,
|
|
|
|
|
|
|
|
pingceName: '党建与行政目标任务',
|
|
|
|
|
|
|
|
khitemName: '对外交流与合作',
|
|
|
|
|
|
|
|
voteTitle: '对外交流与合作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '对外交流与合作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '对外交流与合作备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 12,
|
|
|
|
|
|
|
|
index: 1,
|
|
|
|
|
|
|
|
index1: 0,
|
|
|
|
|
|
|
|
pingceName: '事业发展',
|
|
|
|
|
|
|
|
khitemName: '教学工作',
|
|
|
|
|
|
|
|
voteTitle: '教学工作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '教学工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '教学工作备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id: 13,
|
|
|
|
|
|
|
|
index: 1,
|
|
|
|
|
|
|
|
index1: 1,
|
|
|
|
|
|
|
|
pingceName: '事业发展',
|
|
|
|
|
|
|
|
khitemName: '科研工作',
|
|
|
|
|
|
|
|
voteTitle: '科研工作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '科研工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '科研工作备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 14,
|
|
|
|
|
|
|
|
index: 1,
|
|
|
|
|
|
|
|
index1: 2,
|
|
|
|
|
|
|
|
pingceName: '事业发展',
|
|
|
|
|
|
|
|
khitemName: '学生工作',
|
|
|
|
|
|
|
|
voteTitle: '学生工作评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 100,
|
|
|
|
|
|
|
|
percentage: 0.1, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '学生工作评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '学生工作备注', //备注
|
|
|
|
|
|
|
|
},{
|
|
|
|
|
|
|
|
id:15,
|
|
|
|
|
|
|
|
index: 2,
|
|
|
|
|
|
|
|
index1: 0,
|
|
|
|
|
|
|
|
pingceName: '民主测评',
|
|
|
|
|
|
|
|
khitemName: '师院领导班子',
|
|
|
|
|
|
|
|
voteTitle: '师院领导班子评分',
|
|
|
|
|
|
|
|
options: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 1,
|
|
|
|
|
|
|
|
label: '优秀'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 2,
|
|
|
|
|
|
|
|
label: '合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 3,
|
|
|
|
|
|
|
|
label: '基本合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 4,
|
|
|
|
|
|
|
|
label: '不合格'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
maxNum: null,
|
|
|
|
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '师院领导班子评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '师院领导班子备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 16,
|
|
|
|
|
|
|
|
index: 2,
|
|
|
|
|
|
|
|
index1: 1,
|
|
|
|
|
|
|
|
pingceName: '民主测评',
|
|
|
|
|
|
|
|
khitemName: '师院处级领导干部',
|
|
|
|
|
|
|
|
voteTitle: '师院处级领导干部评分',
|
|
|
|
|
|
|
|
options: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 1,
|
|
|
|
|
|
|
|
label: '优秀'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 2,
|
|
|
|
|
|
|
|
label: '合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 3,
|
|
|
|
|
|
|
|
label: '基本合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 4,
|
|
|
|
|
|
|
|
label: '不合格'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
maxNum: null,
|
|
|
|
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '师院处级领导干部评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '师院处级领导干部备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 17,
|
|
|
|
|
|
|
|
index: 2,
|
|
|
|
|
|
|
|
index1: 2,
|
|
|
|
|
|
|
|
pingceName: '民主测评',
|
|
|
|
|
|
|
|
khitemName: '服务对象代表',
|
|
|
|
|
|
|
|
voteTitle: '服务对象代表评分',
|
|
|
|
|
|
|
|
options: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 1,
|
|
|
|
|
|
|
|
label: '优秀'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 2,
|
|
|
|
|
|
|
|
label: '合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 3,
|
|
|
|
|
|
|
|
label: '基本合格'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
value: 4,
|
|
|
|
|
|
|
|
label: '不合格'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
maxNum: null,
|
|
|
|
|
|
|
|
percentage: 0.2, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '服务对象代表评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '服务对象代表备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 18,
|
|
|
|
|
|
|
|
index: 3,
|
|
|
|
|
|
|
|
index1: 0,
|
|
|
|
|
|
|
|
pingceName: '特色创新',
|
|
|
|
|
|
|
|
khitemName: '分数(满分10分)',
|
|
|
|
|
|
|
|
voteTitle: '特色创新分数(满分10分)评分',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 10,
|
|
|
|
|
|
|
|
percentage: null, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '特色创新分数(满分10分)评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '特色创新分数(满分10分)备注', //备注
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
id: 19,
|
|
|
|
|
|
|
|
index: 4,
|
|
|
|
|
|
|
|
index1: 0,
|
|
|
|
|
|
|
|
pingceName: '综合评价',
|
|
|
|
|
|
|
|
khitemName: '分数(加减分项,值域可以为负)',
|
|
|
|
|
|
|
|
voteTitle: '综合评价分数(加减分项,值域可以为负)',
|
|
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
maxNum: 10,
|
|
|
|
|
|
|
|
percentage: null, //评分占比
|
|
|
|
|
|
|
|
state: '2', //状态
|
|
|
|
|
|
|
|
sTime: '2025-06-15', //开始时间
|
|
|
|
|
|
|
|
eTime: '2025-06-20', //结束时间
|
|
|
|
|
|
|
|
vDescription: '综合评价分数(加减分项,值域可以为负)评分详情描述', //评分详情描述
|
|
|
|
|
|
|
|
remark: '综合评价分数(加减分项,值域可以为负)备注', //备注
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
this.total = 3
|
|
|
|
this.loading = false
|
|
|
|
this.loading = false
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
@ -378,7 +699,7 @@ export default {
|
|
|
|
}, `vote_${new Date().getTime()}.xlsx`)
|
|
|
|
}, `vote_${new Date().getTime()}.xlsx`)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
goVotepage(row){
|
|
|
|
goVotepage(row){
|
|
|
|
this.$router.push({ path: '/votepage', query: { id: row.id }});
|
|
|
|
this.$router.push({ path: '/votepage', query: { index: row.index, index1: row.index1 }});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
goVoteEmp(row){
|
|
|
|
goVoteEmp(row){
|
|
|
|
this.$router.push({ path: '/toupiao/vote_emp', query: { id: row.id }});
|
|
|
|
this.$router.push({ path: '/toupiao/vote_emp', query: { id: row.id }});
|
|
|
|
|