1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297 |
- <template>
- <div class="app-container">
- <!-- 搜索栏 -->
- <el-form :inline="true" v-if="isMentor">
- <el-form-item label="会议日期">
- <el-date-picker
- size="small"
- v-model="meetingDate"
- align="right"
- type="date"
- placeholder="选择会议日期"
- :picker-options="pickerOptions"
- style="width:200px"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="参会导师">
- <el-select
- size="small"
- v-model="mentorOptionsArray"
- multiple
- placeholder="请选择导师"
- prop="mentorId"
- style="width:200px"
- >
- <el-option
- v-for="mentor in this.mentorOptions"
- :key="mentor.key"
- :label="mentor.value"
- :value="mentor.key">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button
- icon="el-icon-s-promotion"
- type="success"
- size="mini"
- @click="handleInvite"
- >
- 邀请
- </el-button>
- </el-form-item>
- </el-form>
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
- <el-form-item label="学员" prop="successorId" v-if="isMentor">
- <el-select
- size="small"
- v-model="queryParams.successorId"
- placeholder="请选择学员"
- style="width:200px"
- >
- <el-option
- v-for="successor in this.successorOptions"
- :key="successor.key"
- :label="successor.value"
- :value="successor.key"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="年" prop="feedbackYear">
- <el-date-picker
- v-model="queryParams.feedbackYearTemp"
- placeholder="请选择年"
- clearable
- type="year"
- size="small"
- @keyup.enter.native="handleQuery"
- style="width:200px"
- />
- </el-form-item>
- <el-form-item label="季度" prop="feedbackSason">
- <el-select
- v-model="queryParams.feedbackSeason"
- placeholder="请选择季度"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- style="width:200px"
- >
- <el-option label="第一季度" value="1"></el-option>
- <el-option label="第二季度" value="2"></el-option>
- <el-option label="第三季度" value="3"></el-option>
- <el-option label="第四季度" value="4"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="cyan" 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-tabs type="border-card" @tab-click="handleTabClick" v-model="activeName">
- <el-tab-pane
- :key="item.name"
- v-for="(item) in mentorTabs"
- :label="item.title"
- :name="item.name"
- >
- <!-- 培养计划总表 -->
- <el-table
- v-loading="loading"
- :data="dataList"
- @selection-change="handleSelectionChange"
- ref="feedbackListSeasonalTable"
- border
- :cell-style="tableCellStyle"
- >
- <el-table-column label="培养内容" align="center" prop="plantName" width="600px"/>
- <el-table-column label="开始日期" align="center" prop="startDate"/>
- <el-table-column label="结束日期" align="center" prop="endDate"/>
- <el-table-column label="实际完成日期" align="center" prop="dateOfCompletion"/>
- <el-table-column label="学习状态" align="center" prop="studyState" :formatter="studyStateFormat"/>
- <el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-chat-dot-round"
- v-hasPermi="['spec:plan:edit']"
- @click="handleFeedback(scope.row)"
- >详情</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 汇报附件 -->
- <div>
- <h3>汇报展示PPT</h3>
- <el-upload
- v-if="!isMentor"
- ref="doc"
- :headers="doc.headers"
- class="upload-demo"
- :action="doc.url + '?pType=' + doc.pType + '&pId=' + doc.pId"
- :disabled="doc.isUploading"
- :on-progress="handleFileDocProgress"
- :on-success="handleFileDocSuccess"
- :auto-upload="true"
- multiple
- :limit="3">
- <el-button size="small" type="primary" style="margin-bottom:10px;">点击上传</el-button>
- </el-upload>
- <el-table :data="doc.commonfileList" border style="width:600px;">
- <el-table-column :label="$t('文件名')" align="center" prop="fileName" :show-overflow-tooltip="true">
- <template slot-scope="scope">
- <a class="link-type" @click="handleDownload(scope.row)">
- <span>{{ scope.row.fileName }}</span>
- </a>
- </template>
- </el-table-column>
- <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- v-if="scope.row.fileName.endsWith('pdf')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- >{{ $t('预览') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-download"
- @click="handleDownload(scope.row)"
- >{{ $t('下载') }}</el-button>
- <el-button
- v-if="!isMentor"
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDeleteDoc(scope.row)"
- >{{ $t('删除') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 问卷 -->
- <div v-if="isMentor">
- <div style="display:inline-block;width:40%;">
- <h3 style="margin-bottom:0px;">学员表现</h3>
- <div class="question">
- 1. 学员的现场汇报精神面貌如何?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio1" size="small">
- <el-radio label="1">优秀</el-radio>
- <el-radio label="2">良好</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 2. 学员的现场汇报语言表达如何?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio2" size="small">
- <el-radio label="1">优秀</el-radio>
- <el-radio label="2">良好</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 3. 学员的现场汇报逻辑思维如何?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio3" size="small">
- <el-radio label="1">优秀</el-radio>
- <el-radio label="2">良好</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <h3 style="margin-bottom:0px;">汇报材料及内容</h3>
- <div class="question">
- 4. 汇报材料准备是否充分,汇报材料是否紧贴本季学习内容?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio4" size="small">
- <el-radio label="1">充分</el-radio>
- <el-radio label="2">比较充分</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 5. 汇报内容是否符合学习材料(SOP或者程序)的要求?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio5" size="small">
- <el-radio label="1">完全符合</el-radio>
- <el-radio label="2">基本符合</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 6. 学员对本季的学习内容、学习目标及学习结果的阐述是否具体、完整、准确?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio6" size="small">
- <el-radio label="1">非常全面</el-radio>
- <el-radio label="2">全面</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 7. 学员本季汇报内容较上次是否有所提升?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio7" size="small">
- <el-radio label="1">进步明显</el-radio>
- <el-radio label="2">略有提升</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- </div>
- <div style="display:inline-block;width:40%;">
- <div class="question">
- 8. 汇报内容针对本季学习范围是否存在明显的汇报漏项或者不足?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio8" size="small">
- <el-radio label="1">完全不存在</el-radio>
- <el-radio label="2">基本不存在</el-radio>
- <el-radio label="3">无明显存在</el-radio>
- <el-radio label="4">存在</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 9. 学员的本季汇报内容是否结合岗位工作实际?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio9" size="small">
- <el-radio label="1">紧密结合</el-radio>
- <el-radio label="2">结合</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 10. 学员在实际工作中是否能够学有所用?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio10" size="small">
- <el-radio label="1">灵活运用</el-radio>
- <el-radio label="2">基本运用</el-radio>
- <el-radio label="3">尝试运用</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 11. 汇报内容对目标岗位建设是否能起到启发促进作用?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio11" size="small">
- <el-radio label="1">极有建设性</el-radio>
- <el-radio label="2">建设性</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 12. 汇报内容对于装置及公司的人才培养计划是否能起到建设性促进作用?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio12" size="small">
- <el-radio label="1">极有建设性</el-radio>
- <el-radio label="2">建设性</el-radio>
- <el-radio label="3">一般</el-radio>
- <el-radio label="4">基本合格</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 13. 汇报内容是否有对装置生产、管理、建设提出合理化建议?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio13" size="small">
- <el-radio label="1">有可采用的合理化建议</el-radio>
- <el-radio label="2">有可行性合理化建议</el-radio>
- <el-radio label="3">有合理化建议</el-radio>
- <el-radio label="4">无</el-radio>
- </el-radio-group>
- </div>
- <div class="question">
- 14. 汇报内容是否对下期培训提出新的培训需求?
- </div>
- <div class="answer">
- <el-radio-group v-model="radio14" size="small">
- <el-radio label="1">有计划外需求</el-radio>
- <el-radio label="2">有计划内需求</el-radio>
- <el-radio label="3">有需求</el-radio>
- <el-radio label="4">无具体需求</el-radio>
- </el-radio-group>
- </div>
- </div>
- </div>
- <!-- 导师反馈 -->
- <div>
- <h3>导师反馈</h3>
- <div v-if="showSaveButton && ( staffId == activeName )">
- <editor
- :min-height="300"
- v-model="mentorFeedback"
- />
- </div>
- <span
- v-if="!showSaveButton || ( staffId != activeName )"
- v-html="mentorFeedback"
- style="overflow:scroll; display:block; border:1px solid #CCCCCC; height: 300px; padding:15px;font-family: Helvetica, Arial, sans-serif; font-size: 13px;"
- >
- </span>
- </div>
- <!-- 保存按钮 -->
- <div style="text-align:center;margin: 20px auto;">
- <el-button
- size="medium"
- type="success"
- @click="handleSave"
- v-if="showSaveButton && ( staffId == activeName )"
- >
- 保存
- </el-button>
- </div>
- </el-tab-pane>
- </el-tabs>
- <!-- 详情对话框 -->
- <el-dialog v-dialogDrag :title="feedbackDialog.title" :visible.sync="feedbackDialog.open" width="800px" append-to-body>
- <div style="width:700px; margin:0px auto;">
- <h3 style="margin-bottom:20px;">学员心得</h3>
- <el-table :data="tableData" border style="width: 100%">
- <el-table-column prop="id" label="编号" width="50"></el-table-column>
- <el-table-column prop="question" label="问题" width="250"></el-table-column>
- <el-table-column prop="answer" label="答案"></el-table-column>
- </el-table>
- <el-table :data="docFeedback.commonfileList" border>
- <el-table-column :label="$t('文件名')" align="center" prop="fileName" :show-overflow-tooltip="true">
- <template slot-scope="scope">
- <a class="link-type" @click="handleDownload(scope.row)">
- <span>{{ scope.row.fileName }}</span>
- </a>
- </template>
- </el-table-column>
- <el-table-column :label="$t('大小(Kb)')" align="center" prop="fileSize" :show-overflow-tooltip="true" width="80" />
- <el-table-column :label="$t('上传人')" align="center" prop="creator" :show-overflow-tooltip="true" width="120"/>
- <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- v-if="scope.row.fileName.endsWith('pdf')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- >{{ $t('预览') }}</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-download"
- @click="handleDownload(scope.row)"
- >{{ $t('下载') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-form v-if="detailFeedback != null">
- <h3 style="margin-top:30px;margin-bottom:20px;">导师反馈</h3>
- <el-form-item>
- <p v-html="detailFeedback" style="border:1px solid #DFE6EC; overflow:scroll; height:200px;"/>
- </el-form-item>
- </el-form>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getAnswer, addAnswer, updateAnswer, listAnswer } from "@/api/training/spec/answer";
- import { allFileList, delCommonfile } from "@/api/common/commonfile";
- import { addFeedback, getFeedbackByParams, listInvitedSuccessor, updateFeedback, listFeedback, getFeedbackByPlanId } from "@/api/training/spec/feedback";
- import { listMentors } from "@/api/training/spec/successor";
- import { listSuccessorsByMentorId, listPlanSeasonal } from "@/api/training/spec/plan";
- import { getToken } from "@/utils/auth";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import Editor from '@/components/Editor';
- import { listMentors2, getStaffId, isMentor } from "@/api/plant/staffmgr";
- export default {
- name: "SeasonalFeedback",
- components: { Treeselect, Editor },
- data() {
- return {
- // 父级反馈导师id
- mentorId: null,
- // 是否为第一次搜索
- isFirstSearch: true,
- // 当前用户id
- staffId: null,
- // 是否为导师
- isMentor: null,
- // 显示保存按钮
- showSaveButton: false,
- // 导师标签
- mentorTabs: [],
- // 详情对话框表格数据
- tableData: [],
- // 反馈id
- feedbackId: null,
- // 父级反馈id
- parentId: null,
- // 会议日期快捷选项
- pickerOptions: {
- shortcuts: [{
- text: '今天',
- onClick(picker) {
- picker.$emit('pick', new Date());
- }
- }, {
- text: '昨天',
- onClick(picker) {
- const date = new Date();
- date.setTime(date.getTime() - 3600 * 1000 * 24);
- picker.$emit('pick', date);
- }
- }, {
- text: '一周前',
- onClick(picker) {
- const date = new Date();
- date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', date);
- }
- }, {
- text: '一周后',
- onClick(picker) {
- const date = new Date();
- date.setTime(date.getTime() + 3600 * 1000 * 24 * 7);
- picker.$emit('pick', date);
- }
- }]
- },
- // 会议日期
- meetingDate: null,
- // 学习状态字典
- studyStateOptions: [],
- // 汇报展示附件参数
- doc: { // 反馈附件
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
- commonfileList: null,
- queryParams: {
- pId: null,
- pType: 'docSeasonal'
- },
- pType: 'docSeasonal',
- pId: null
- },
- // 培养计划总表数据
- dataList: [],
- // 首选标签页
- activeName: null,
- // 学员下拉列表
- successorOptions: [],
- // 导师下拉列表
- mentorOptions: [],
- // 导师数组
- mentorOptionsArray: [],
- // 包含导师id的查询对象
- queryObject: {
- mentorStaffId: ""
- },
- // 导师反馈内容
- mentorFeedback: null, // 季度反馈内容
- detailFeedback: null, // 计划详情反馈内容
- // 反馈对话框参数
- feedbackDialog: {
- id: 0,
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: ""
- },
- // 问卷单选框
- radio1: '',
- radio2: '',
- radio3: '',
- radio4: '',
- radio5: '',
- radio6: '',
- radio7: '',
- radio8: '',
- radio9: '',
- radio10: '',
- radio11: '',
- radio12: '',
- radio13: '',
- radio14: '',
- // 报告附件参数
- doc: { // 季度汇报附件
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
- commonfileList: null,
- queryParams: {
- pId: null,
- pType: 'plan'
- },
- pType: 'plan',
- pId: null
- },
- docFeedback: { // 反馈附件
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
- commonfileList: null,
- queryParams: {
- pId: null,
- pType: 'docFeedback'
- },
- pType: 'docFeedback',
- pId: null
- },
- // 标签页选中项
- activeName: 'zhu',
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 专项培训反馈表格数据
- feedbackList: [],
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- clientHeight:300,
- // 是否显示弹出层
- open: false,
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/spec/feedback/importData"
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 100,
- feedbackType: null,
- mentorId: null,
- successorId: null,
- successorName: null,
- parentId: null,
- planId: null,
- feedbackYear: null,
- feedbackYearTemp: null,
- feedbackSeason: null,
- feedbackMonth: null,
- successorFeedback: null,
- mentorFeedback: null,
- feedbackScore: null,
- feedbackStatus: null,
- meetingDate: null
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- }
- };
- },
- watch: {
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = document.body.clientHeight -250
- })
- // 获取学习状态字典
- this.getDicts("st_study_state").then(response => {
- this.studyStateOptions = response.data;
- });
- // 初始化页面数据
- this.initPageData();
- },
- methods: {
- /** 设置最后截止日期 */
- resetLastDay() {
- // 最后截止日期
- let lastDay = new Date(this.meetingDate);
- lastDay.setTime(lastDay.getTime() + 3600 * 1000 * 24 * 7);
- // 当前日期
- let now = new Date();
- if (lastDay > now) {
- // 导师可修改反馈内容
- this.showSaveButton = true;
- // 学员可查看导师反馈内容
- } else {
- // 导师不可修改反馈内容
- this.showSaveButton = false;
- // 学员不可查看导师反馈内容
-
- }
- },
- /** 标签页切换事件 */
- handleTabClick(tab) {
- this.activeName = tab.name;
- if (this.isMentor) {
- // 清空问卷
- this.radio1 = null;
- this.radio2 = null;
- this.radio3 = null;
- this.radio4 = null;
- this.radio5 = null;
- this.radio6 = null;
- this.radio7 = null;
- this.radio8 = null;
- this.radio9 = null;
- this.radio10 = null;
- this.radio11 = null;
- this.radio12 = null;
- this.radio13 = null;
- this.radio14 = null;
- }
- // 清空导师反馈内容
- this.mentorFeedback = null;
- // 查询参数
- let feedback = {};
- feedback.mentorId = tab.name;
- feedback.successorId = this.queryParams.successorId;
- feedback.feedbackYear = this.queryParams.feedbackYear;
- feedback.feedbackSeason = this.queryParams.feedbackSeason;
- if (this.isMentor && this.staffId != tab.name) {
- feedback.parentId = this.parentId;
- }
- // 根据标签页导师id获取反馈id
- getFeedbackByParams(feedback).then(response => {
- let data = response.data;
- // 设置反馈id为当前tab导师反馈id
- this.feedbackId = data.id;
- // 刷新导师反馈内容
- this.mentorFeedback = data.mentorFeedback;
- if (this.isMentor) {
- // 刷新问卷
- listAnswer( { feedbackId: this.feedbackId } ).then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- if (data[i].questionId == "4") { this.radio1 = data[i].answer; }
- if (data[i].questionId == "5") { this.radio2 = data[i].answer; }
- if (data[i].questionId == "6") { this.radio3 = data[i].answer; }
- if (data[i].questionId == "7") { this.radio4 = data[i].answer; }
- if (data[i].questionId == "8") { this.radio5 = data[i].answer; }
- if (data[i].questionId == "9") { this.radio6 = data[i].answer; }
- if (data[i].questionId == "10") { this.radio7 = data[i].answer; }
- if (data[i].questionId == "11") { this.radio8 = data[i].answer; }
- if (data[i].questionId == "12") { this.radio9 = data[i].answer; }
- if (data[i].questionId == "13") { this.radio10 = data[i].answer; }
- if (data[i].questionId == "14") { this.radio11 = data[i].answer; }
- if (data[i].questionId == "15") { this.radio12 = data[i].answer; }
- if (data[i].questionId == "16") { this.radio13 = data[i].answer; }
- if (data[i].questionId == "17") { this.radio14 = data[i].answer; }
- }
- window.scrollTo(0, 0);
- });
- }
- });
- },
- /** 初始化页面数据 */
- initPageData() {
- // 获取当前日期
- let date = new Date();
- // 搜索条件默认为当年、当季度
- this.queryParams.feedbackYear = date.getFullYear().toString();
- this.queryParams.feedbackYearTemp = date.getFullYear().toString();
- this.queryParams.feedbackSeason = ( ( date.getMonth() + 2 ) / 3 ).toString();
- // 获取当前用户id
- getStaffId().then(response => {
- this.staffId = response.data;
- // 判断当前用户是否为导师
- return isMentor();
- })
- .then(response => {
- this.isMentor = response.data;
- if (this.isMentor) { // 当前用户是导师
- // ====================获取导师下拉列表====================
- listMentors2().then(response => {
- let mentorList = response.data;
- for (let i = 0; i < mentorList.length; i++) {
- let mentor = {};
- mentor.key = mentorList[i].staffid;
- mentor.value = mentorList[i].name;
- this.mentorOptions.push(mentor);
- }
- });
- // ====================获取当前导师的学员列表====================
- listSuccessorsByMentorId(this.queryObject).then(response => {
- let data = response.data;
- for (let i = 0; i < data.length; i++) {
- if (i == 0) {
- // 默认选中列表中第一个学员
- this.queryParams.successorId = data[i].staffId;
- this.getList();
- }
- this.successorOptions.push( { key: data[i].staffId, value: data[i].staffName } );
- }
- // 获取当前学员当年当季度反馈id
- getFeedbackByParams({
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason
- }).then(response => {
- let data = response.data;
- this.feedbackId = data.id;
- this.mentorId = data.id;
- this.parentId = data.id;
- this.meetingDate = data.meetingDate;
- this.resetLastDay();
- this.mentorFeedback = data.mentorFeedback;
- // 初始化汇报附件
- this.initFileList(data.id);
- // ====================初始化导师标签页====================
- this.activeName = data.mentorId;
- this.mentorTabs.push({ name: data.mentorId, title: data.mentorName});
- listFeedback( { parentId: data.id } ).then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- this.mentorTabs.push({ name: data[i].mentorId, title: data[i].mentorName});
- }
- });
- // ====================获取问卷答案====================
- listAnswer( { feedbackId: this.feedbackId } ).then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- if (data[i].questionId == "4") { this.radio1 = data[i].answer; }
- if (data[i].questionId == "5") { this.radio2 = data[i].answer; }
- if (data[i].questionId == "6") { this.radio3 = data[i].answer; }
- if (data[i].questionId == "7") { this.radio4 = data[i].answer; }
- if (data[i].questionId == "8") { this.radio5 = data[i].answer; }
- if (data[i].questionId == "9") { this.radio6 = data[i].answer; }
- if (data[i].questionId == "10") { this.radio7 = data[i].answer; }
- if (data[i].questionId == "11") { this.radio8 = data[i].answer; }
- if (data[i].questionId == "12") { this.radio9 = data[i].answer; }
- if (data[i].questionId == "13") { this.radio10 = data[i].answer; }
- if (data[i].questionId == "14") { this.radio11 = data[i].answer; }
- if (data[i].questionId == "15") { this.radio12 = data[i].answer; }
- if (data[i].questionId == "16") { this.radio13 = data[i].answer; }
- if (data[i].questionId == "17") { this.radio14 = data[i].answer; }
- }
- window.scrollTo(0, 0);
- });
- });
- });
- // ====================获取当前导师作为受邀导师的学员列表====================
- listInvitedSuccessor(null).then(response => {
- let data = response.data;
- for (let i = 0; i < data.length; i++) {
- this.successorOptions.push( { key: data[i].successorId, value: data[i].successorName } );
- }
- });
- } else { // 当前用户是学员
- this.queryParams.successorId = this.staffId;
- this.getList();
- // 获取当前学员当年当季度反馈id
- getFeedbackByParams({
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason
- }).then(response => {
- let data = response.data;
- this.feedbackId = data.id;
- this.parentId = data.id;
- this.meetingDate = data.meetingDate;
- this.resetLastDay();
- this.mentorFeedback = data.mentorFeedback;
- // 初始化汇报附件
- this.initFileList(data.id);
- // ====================初始化导师标签页====================
- this.activeName = data.mentorId;
- this.mentorTabs.push({ name: data.mentorId, title: data.mentorName});
- listFeedback( { parentId: data.id } ).then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- this.mentorTabs.push({ name: data[i].mentorId, title: data[i].mentorName});
- }
- });
- });
- }
- });
- },
- /** 问卷判空 */
- isEmpty() {
- let radioArray = [ this.radio1, this.radio2, this.radio3, this.radio4, this.radio5, this.radio6, this.radio7, this.radio8, this.radio9, this.radio10, this.radio11, this.radio12, this.radio13, this.radio14 ];
- let isEmpty = false;
- for (let i = 0; i < radioArray.length; i++) {
- if (radioArray[i] == "") {
- isEmpty = true;
- }
- }
- return isEmpty;
- },
- /** 计算导师评分 */
- calcFeedbackScore() {
- let mentorFeedbackScore = 0; // 本导师评分
- let invitedMentorFeedbackScoreSum = 0; // 受邀导师总分
- let invitedMentorFeedbackScoreAvg = 0; // 受邀导师平均分
- let invitedMentors = 0; // 受邀导师人数
- let overallScore = 0; // 季度平均分
- let feedbackId = null; // 本导师反馈id
- // 获取问题答案列表
- listAnswer( { feedbackId: this.feedbackId } )
- .then(response => {
- let data = response.rows;
- // 计算导师评分
- let total = 0; // 总分
- for (let i = 0; i < data.length; i++) {
- if(data[i].answer == "1") {
- total += 100;
- }
- }
- let avg = total / 14; // 平均分
- // 更新当前导师评分
- return updateFeedback( { id: this.feedbackId, feedbackScore: avg } );
- })
- .then(() => {
- // 获取本导师反馈
- return getFeedbackByParams({
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason
- })
- })
- .then(response => {
- // 设置本导师反馈id
- feedbackId = response.data.id;
- // 设置导师评分
- mentorFeedbackScore = response.data.feedbackScore;
- // 获取受邀导师列表
- return listFeedback( { parentId: feedbackId } );
- })
- .then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- if (data[i].feedbackScore != null) {
- invitedMentorFeedbackScoreSum += Number(data[i].feedbackScore);
- invitedMentors += 1;
- }
- }
- // 受邀导师平均分 = 总分 / 人数
- invitedMentorFeedbackScoreAvg = invitedMentorFeedbackScoreSum / invitedMentors;
- // 季度平均分 = 本导师评分 * 60% + 受邀导师平均分 * 40%
- overallScore = mentorFeedbackScore * 0.6 + invitedMentorFeedbackScoreAvg * 0.4;
- // 更新季度平均分
- updateFeedback({ id: feedbackId, overallScore: overallScore });
- });
- },
- /** 保存反馈问题 */
- saveAnswer(questionId, answer) {
- let answerObj = {};
- answerObj.feedbackId = this.feedbackId;
- answerObj.questionId = questionId;
- getAnswer(answerObj).then(response => {
- let data = response.data;
- answerObj.answer = answer;
- if (data != null) {
- if (response.answer == data.answer) { // 答案一致
- return;
- } else { // 答案不一致
- answerObj.id = data.id;
- updateAnswer(answerObj).then(response => {
- // 计算导师评分
- this.calcFeedbackScore();
- });
- }
- } else {
- addAnswer(answerObj).then(response => {
- // 计算导师评分
- this.calcFeedbackScore();
- });
- }
- });
- },
- /** 保存导师反馈内容 */
- saveMentorFeedback() {
- let feedback = {};
- feedback.id = this.feedbackId;
- feedback.mentorFeedback = this.mentorFeedback;
- updateFeedback(feedback);
- },
- /** 保存按钮处理 */
- handleSave() {
- // 问卷判空
- if (this.isEmpty()) {
- this.$message.error('问卷答案不能为空')
- return;
- }
- let radioArray = [ this.radio1, this.radio2, this.radio3, this.radio4, this.radio5, this.radio6, this.radio7, this.radio8, this.radio9, this.radio10, this.radio11, this.radio12, this.radio13, this.radio14 ];
- let questionArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14];
- // 保存问卷内容
- for (let i = 0; i < radioArray.length; i++) {
- this.saveAnswer(questionArray[i]+3, radioArray[i]);
- }
- // 保存导师反馈内容
- this.saveMentorFeedback();
- this.msgSuccess("保存成功");
- },
- /** 培养计划详情处理 */
- handleFeedback(row) {
- // 加载反馈附件
- this.docFeedback.id = row.id;
- this.docFeedback.queryParams.pId = row.id
- this.docFeedback.pId = row.id
- this.getFileListFeedback();
- // 清空导师反馈内容
- this.detailFeedback = null;
- // 清空表格数据
- this.tableData = [];
- let feedback1 = {};
- feedback1.planId = row.id;
- feedback1.questionId = 1;
- let feedback2 = {};
- feedback2.planId = row.id;
- feedback2.questionId = 2;
- let feedback3 = {};
- feedback3.planId = row.id;
- feedback3.questionId = 3;
- let answerObj1 = {};
- let answerObj2 = {};
- let answerObj3 = {};
- // 获取问题和答案
- getAnswer(feedback1).then(response => {
- let data = response.data;
- if (data != null) {
- answerObj1 = { id: 1, question: data.question, answer: data.answer};
- }
- return getAnswer(feedback2);
- }).then(response => {
- let data = response.data;
- if (data != null) {
- answerObj2 = { id: 2, question: data.question, answer: data.answer};
- }
- return getAnswer(feedback3);
- }).then(response => {
- let data = response.data;
- if (data != null) {
- answerObj3 = { id: 3, question: data.question, answer: data.answer};
- this.tableData.push(answerObj1);
- this.tableData.push(answerObj2);
- this.tableData.push(answerObj3);
- }
- // 获取导师反馈内容
- return getFeedbackByPlanId(row.id);
- }).then(response => {
- if (response.data != null) {
- let data = response.data;
- this.detailFeedback = data.mentorFeedback;
- }
- this.feedbackDialog.title = row.staffName + row.plantName + "学习情况详情";
- this.feedbackDialog.planId = row.id;
- this.feedbackDialog.studyState = row.studyState;
- this.feedbackDialog.open = true;
- });
- },
- /** 单元格样式 */
- tableCellStyle(row, column, rowIndex, columnIndex) {
- if (row.column.label === "实际完成日期" && row.row.dateOfCompletion > row.row.endDate) {
- return "background: #FFEEEE"
- }
- },
- /** 学习状态字典翻译 */
- studyStateFormat(row, column) {
- return this.selectDictLabel(this.studyStateOptions, row.studyState);
- },
- /** 文件下载处理 */
- handleDownload(row) {
- var name = row.fileName;
- var url = row.fileUrl;
- var suffix = url.substring(url.lastIndexOf("."), url.length);
- const a = document.createElement('a');
- a.setAttribute('download', name);
- a.setAttribute('target', '_blank');
- a.setAttribute('href', process.env.VUE_APP_BASE_API + url);
- a.click();
- },
- openPdf() {
- window.open(this.pdf.pdfUrl);//path是文件的全路径地址
- },
- handleSee(row) {
- this.pdf.open = true;
- this.pdf.title = row.fileName;
- this.pdf.pdfUrl = process.env.VUE_APP_BASE_API +'/pdf/web/viewer.html?file=' + process.env.VUE_APP_BASE_API + row.fileUrl;
- },
- /** 汇报附件参数初始化 */
- initFileList(id) {
- this.doc.queryParams.pId = id
- this.doc.pId = id
- this.getFileList()
- // this.$nextTick(() => {
- // this.$refs.doc.clearFiles()
- // })
- },
- getFileList() {
- allFileList(this.doc.queryParams).then(response => {
- this.doc.commonfileList = response;
- });
- },
- getFileListFeedback() {
- allFileList(this.docFeedback.queryParams).then(response => {
- this.docFeedback.commonfileList = response;
- });
- },
- /** 附件上传中处理 */
- handleFileDocProgress(event, file, fileList) {
- this.doc.file = file;
- this.doc.isUploading = true;
- },
- handleFileDocProgressFeedback(event, file, fileList) {
- this.docFeedback.file = file;
- this.docFeedback.isUploading = true;
- },
- /** 附件上传成功处理 */
- handleFileDocSuccess(response, file, fileList) {
- this.doc.isUploading = false;
- this.$alert(response.msg, this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- this.getFileList()
- },
- handleFileDocSuccessFeedback(response, file, fileList) {
- this.docMentorFeedback.isUploading = false;
- this.$alert(response.msg, this.$t('导入结果'), { dangerouslyUseHTMLString: true });
- this.getFileListFeedback()
- },
- /** 删除按钮操作 */
- handleDeleteDoc(row) {
- const ids = row.id || this.ids;
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function() {
- return delCommonfile(ids);
- }).then(() => {
- this.getFileList()
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 邀请导师 */
- handleInvite() {
- let updateParams = {};
- updateParams.id = this.feedbackId;
- let date = new Date(this.meetingDate);
- date.setTime( date.getTime() + 3600 * 1000 * 24 );
- updateParams.meetingDate = date;
- updateParams.id = this.parentId;
- // 修改会议日期
- updateFeedback(updateParams);
- for (let i = 0; i < this.mentorOptionsArray.length; i++) {
- let feedback = {};
- feedback.parentId = this.feedbackId; // 设置父级id
- feedback.feedbackYear = this.queryParams.feedbackYear;
- feedback.feedbackSeason = this.queryParams.feedbackSeason;
- feedback.feedbackType = 3;
- feedback.mentorId = this.mentorOptionsArray[i];
- feedback.successorId = this.queryParams.successorId;
- getFeedbackByParams(feedback).then(response => {
- let data = response.data;
- if (data == null) {
- // 新增受邀导师反馈记录
- addFeedback(feedback);
- }
- });
- // 发送邮件提醒受邀导师
- }
- // 刷新标签列表
- this.msgSuccess("邀请成功,邮件已发送");
- },
- /** 查询专项培训反馈列表 */
- getList() {
- this.loading = true;
- listPlanSeasonal(this.queryParams).then(response => {
- this.dataList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- feedbackType: null,
- mentorId: null,
- successorId: null,
- successorName: null,
- parentId: null,
- planId: null,
- feedbackYear: null,
- feedbackSeason: null,
- feedbackMonth: null,
- successorFeedback: null,
- mentorFeedback: null,
- feedbackScore: null,
- feedbackStatus: 0,
- meetingDate: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- if (this.isFirstSearch) {
- this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp;
- this.isFirstSearch = false;
- } else {
- this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp.getFullYear();
- }
- this.queryParams.pageNum = 1;
- this.getList();
- // 清空问卷
- this.radio1 = null;
- this.radio2 = null;
- this.radio3 = null;
- this.radio4 = null;
- this.radio5 = null;
- this.radio6 = null;
- this.radio7 = null;
- this.radio8 = null;
- this.radio9 = null;
- this.radio10 = null;
- this.radio11 = null;
- this.radio12 = null;
- this.radio13 = null;
- this.radio14 = null;
- // 清空导师反馈内容
- this.mentorFeedback = null;
- // 清空会议日期
- this.meetingDate = null;
- getFeedbackByParams({
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason,
- }).then(response => {
- let data = response.data;
- this.feedbackId = data.id;
- this.parentId = data.id;
- this.meetingDate = data.meetingDate;
- this.resetLastDay();
- this.mentorFeedback = data.mentorFeedback;
- // 刷新汇报附件
- this.initFileList(data.id);
- });
- // 刷新问卷
- listAnswer( { feedbackId: this.feedbackId } ).then(response => {
- let data = response.rows;
- for (let i = 0; i < data.length; i++) {
- if (data[i].questionId == "4") { this.radio1 = data[i].answer; }
- if (data[i].questionId == "5") { this.radio2 = data[i].answer; }
- if (data[i].questionId == "6") { this.radio3 = data[i].answer; }
- if (data[i].questionId == "7") { this.radio4 = data[i].answer; }
- if (data[i].questionId == "8") { this.radio5 = data[i].answer; }
- if (data[i].questionId == "9") { this.radio6 = data[i].answer; }
- if (data[i].questionId == "10") { this.radio7 = data[i].answer; }
- if (data[i].questionId == "11") { this.radio8 = data[i].answer; }
- if (data[i].questionId == "12") { this.radio9 = data[i].answer; }
- if (data[i].questionId == "13") { this.radio10 = data[i].answer; }
- if (data[i].questionId == "14") { this.radio11 = data[i].answer; }
- if (data[i].questionId == "15") { this.radio12 = data[i].answer; }
- if (data[i].questionId == "16") { this.radio13 = data[i].answer; }
- if (data[i].questionId == "17") { this.radio14 = data[i].answer; }
- }
- });
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- }
- };
- </script>
- <style scoped>
- .question{
- margin: 20px 0px;
- padding-left: 20px;
- }
- .answer{
- padding-bottom: 10px;
- padding-left: 40px;
- }
- h3{
- margin: 20px 0px;
- }
- </style>
|