123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194 |
- <template>
- <div class="app-container">
- <!-- 搜索栏 -->
- <el-form :inline="true">
- <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">
- <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
- 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
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDeleteDoc(scope.row)"
- >{{ $t('删除') }}</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- 问卷 -->
- <div>
- <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 style="margin-top:0px;">导师反馈</h3>
- <editor :min-height="300" v-model="mentorFeedback"/>
- </div>
- <!-- 保存按钮 -->
- <div style="text-align:center;margin: 20px auto;">
- <el-button
- size="medium"
- type="success"
- @click="handleSave"
- >
- 保存
- </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;"/>
- </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';
- export default {
- name: "SeasonalFeedback",
- components: { Treeselect, Editor },
- data() {
- return {
- // 导师标签
- 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: {
- /** 标签页切换事件 */
- handleTabClick(tab) {
- // 清空问卷
- 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;
- // 根据标签页导师id获取反馈id
- getFeedbackByParams({
- mentorId: tab.name,
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason,
- parentId: this.parentId
- }).then(response => {
- let data = response.data;
- // 设置反馈id为当前tab导师反馈id
- this.feedbackId = data.id;
- // 刷新导师反馈内容
- this.mentorFeedback = data.mentorFeedback;
- // 刷新问卷
- 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; }
- }
- });
- });
- },
- /** 初始化页面数据 */
- 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();
- // ====================获取导师下拉列表====================
- listMentors().then(response => {
- let mentorList = response.data;
- for (let i = 0; i < mentorList.length; i++) {
- let mentor = {};
- mentor.key = mentorList[i].mentorStaffId;
- mentor.value = mentorList[i].mentorStaffName;
- 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.parentId = data.id;
- this.meetingDate = data.meetingDate;
- 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; }
- }
- });
- });
- });
- // ====================获取当前导师作为受邀导师的学员列表====================
- 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 } );
- }
- });
- },
- /** 问卷判空 */
- 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;
- updateParams.meetingDate = this.meetingDate;
- // 修改会议日期
- 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() {
- 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.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>
|