12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598 |
- <template>
- <div class="app-container">
- <!-- 搜索栏 -->
- <el-form :inline="true" v-if="isMentor && isParentMentor">
- <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
- @change="handleQuery"
- 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
- @change="handleQuery"
- v-model="queryParams.feedbackYearTemp"
- placeholder="请选择年"
- clearable
- type="year"
- size="small"
- @input="handleQuery"
- style="width:200px"
- />
- </el-form-item>
- <el-form-item label="季度" prop="feedbackSason">
- <el-select
- @change="handleQuery"
- v-model="queryParams.feedbackSeason"
- placeholder="请选择季度"
- clearable
- size="small"
- @input="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"
- :lazy="true"
- >
- <div v-if="item.name == activeName">
- <!-- 培养计划总表 -->
- <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>
- <!--汇报展示PPT-->
- <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')||scope.row.fileName.endsWith('xlsx')||scope.row.fileName.endsWith('md')
- ||scope.row.fileName.endsWith('docx')||scope.row.fileName.endsWith('doc')||scope.row.fileName.endsWith('txt')
- ||scope.row.fileName.endsWith('jpg')||scope.row.fileName.endsWith('png')||scope.row.fileName.endsWith('csv')
- ||scope.row.fileName.endsWith('mp4')||scope.row.fileName.endsWith('svg')||scope.row.fileName.endsWith('dwg')
- ||scope.row.fileName.endsWith('flv')||scope.row.fileName.endsWith('swf')||scope.row.fileName.endsWith('gif')
- ||scope.row.fileName.endsWith('3gp')||scope.row.fileName.endsWith('mkv')||scope.row.fileName.endsWith('tif')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- > {{ $t('预览') }}</el-button>
- <el-button
- v-if="scope.row.fileName.endsWith('ppt')||scope.row.fileName.endsWith('pptx') "
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSeePPT(scope.row)"
- > {{ $t('ppt预览') }}</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>
- <h3>汇报附件</h3>
- <el-upload
- ref="doc2"
- :headers="doc2.headers"
- class="upload-demo"
- :action="doc2.url + '?pType=' + doc2.pType + '&pId=' + doc2.pId"
- :disabled="doc2.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="doc2.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')||scope.row.fileName.endsWith('xlsx')||scope.row.fileName.endsWith('md')
- ||scope.row.fileName.endsWith('docx')||scope.row.fileName.endsWith('doc')||scope.row.fileName.endsWith('txt')
- ||scope.row.fileName.endsWith('jpg')||scope.row.fileName.endsWith('png')||scope.row.fileName.endsWith('csv')
- ||scope.row.fileName.endsWith('mp4')||scope.row.fileName.endsWith('svg')||scope.row.fileName.endsWith('dwg')
- ||scope.row.fileName.endsWith('flv')||scope.row.fileName.endsWith('swf')||scope.row.fileName.endsWith('gif')
- ||scope.row.fileName.endsWith('3gp')||scope.row.fileName.endsWith('mkv')||scope.row.fileName.endsWith('tif')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- > {{ $t('预览') }}</el-button>
- <el-button
- v-if="scope.row.fileName.endsWith('ppt')||scope.row.fileName.endsWith('pptx') "
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSeePPT(scope.row)"
- > {{ $t('ppt预览') }}</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 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>
- <div v-if="showSaveButton && ( staffId == activeName )">
- <h3>导师反馈</h3>
- <editor
- :min-height="300"
- v-model="mentorFeedback"
- />
- </div>
- <div v-if="!showSaveButton || ( isMentor && ( staffId != activeName ) )">
- <h3>导师反馈</h3>
- <span
- 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>
- <!-- 保存按钮 -->
- <div style="text-align:center;margin: 20px auto;">
- <el-button
- size="medium"
- type="success"
- @click="handleSave"
- v-if="showSaveButton && ( staffId == activeName )"
- >
- 保存
- </el-button>
- </div>
- </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')||scope.row.fileName.endsWith('xlsx')||scope.row.fileName.endsWith('md')
- ||scope.row.fileName.endsWith('docx')||scope.row.fileName.endsWith('doc')||scope.row.fileName.endsWith('txt')
- ||scope.row.fileName.endsWith('jpg')||scope.row.fileName.endsWith('png')||scope.row.fileName.endsWith('csv')
- ||scope.row.fileName.endsWith('mp4')||scope.row.fileName.endsWith('svg')||scope.row.fileName.endsWith('dwg')
- ||scope.row.fileName.endsWith('flv')||scope.row.fileName.endsWith('swf')||scope.row.fileName.endsWith('gif')
- ||scope.row.fileName.endsWith('3gp')||scope.row.fileName.endsWith('mkv')||scope.row.fileName.endsWith('tif')"
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSee(scope.row)"
- > {{ $t('预览') }}</el-button>
- <el-button
- v-if="scope.row.fileName.endsWith('ppt')||scope.row.fileName.endsWith('pptx') "
- size="mini"
- type="text"
- icon="el-icon-view"
- @click="handleSeePPT(scope.row)"
- > {{ $t('ppt预览') }}</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>
- <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>
- <!-- 预览对话框 -->
- <el-dialog v-loading="loadingFlash" element-loading-background="rgba(0,0,0,0.2)" v-dialogDrag :title="pdf.title" :visible.sync="pdf.open" width="1300px" :center="true" append-to-body>
- <div style="margin-top: -60px;float: right;margin-right: 40px;">
- <el-button size="mini" type="text" @click="openPdf">{{$t('新页面打开PDF')}}</el-button></div>
- <div style="margin-top: -30px" >
- <iframe id="iFrame" class="iframe-html" :src="pdf.pdfUrl" frameborder="0" width="100%" height="700px" v-if="ppt"></iframe>
- </div>
- <div style="padding: 30px; width: 100%; height: 100%;" >
- <el-carousel class="" ref="carousel" arrow="always" v-if="pptView"
- height="700px" trigger="click" :autoplay="false" indicator-position="outside">
- <el-carousel-item class="lun_img" v-for="item in imgs" v-bind:key="item" >
- <img :src="item" width="100%" height="100%" object-fit="cover" />
- </el-carousel-item>
- </el-carousel>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getAnswer, addAnswer, updateAnswer, listAnswer } from "@/api/training/spec/answer";
- import { listScore, getScore, delScore, addScore, updateScore, exportScore, importTemplate} from "@/api/training/spec/score";
- import { allFileList, delCommonfile } from "@/api/common/commonfile";
- import { saveSeasonalFeedback, 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 {
- //图片集合 打开关闭按钮 等等
- imgs:[],
- jpgList:[],
- ppt:false,
- pptView:false,
- loadingFlash:false,
- // 当前导师是否为父级导师
- isParentMentor: false,
- // 父级反馈导师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
- },
- doc2: { // 反馈附件
- 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: 'doc2Seasonal'
- },
- pType: 'doc2Seasonal',
- pId: null
- },
- // 培养计划总表数据
- dataList: [],
- // 首选标签页
- activeName: null,
- // 学员下拉列表
- successorOptions: [],
- // 导师下拉列表
- mentorOptions: [],
- // 导师数组
- mentorOptionsArray: [],
- // 包含导师id的查询对象
- queryObject: {
- mentorStaffId: ""
- },
- // 导师反馈内容
- mentorFeedback: "", // 季度反馈内容
- detailFeedback: "", // 计划详情反馈内容
- // 反馈对话框参数
- 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"
- },
- pdf : {
- title: '',
- pdfUrl: '',
- numPages: null,
- open: false,
- pageNum: 1,
- pageTotalNum: 1,
- loadedRatio: 0,
- },
- // 查询参数
- 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: {
- /** 保存按钮处理 */
- handleSave() {
- // 问卷判空
- if (this.isEmpty()) {
- this.$message.error('问卷答案不能为空')
- return;
- }
- // 保存季度反馈
- saveSeasonalFeedback({
- // 反馈id
- feedbackId: this.feedbackId,
- // 导师反馈内容
- mentorFeedback: this.mentorFeedback,
- // 问卷内容
- tStQuestionAnswerArray:
- [
- { questionId: 4, answer:this.radio1 },
- { questionId: 5, answer:this.radio2 },
- { questionId: 6, answer:this.radio3 },
- { questionId: 7, answer:this.radio4 },
- { questionId: 8, answer:this.radio5 },
- { questionId: 9, answer:this.radio6 },
- { questionId: 10, answer:this.radio7 },
- { questionId: 11, answer:this.radio8 },
- { questionId: 12, answer:this.radio9 },
- { questionId: 13, answer:this.radio10 },
- { questionId: 14, answer:this.radio11 },
- { questionId: 15, answer:this.radio12 },
- { questionId: 16, answer:this.radio13 },
- { questionId: 17, answer:this.radio14 },
- ]
- }).then(() => {
- this.msgSuccess("保存成功");
- });
- },
- /** 设置最后截止日期 */
- 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 = "";
- // 查询参数
- let feedback = {};
- feedback.mentorId = tab.name;
- feedback.successorId = this.queryParams.successorId;
- feedback.feedbackYear = this.queryParams.feedbackYear;
- feedback.feedbackSeason = this.queryParams.feedbackSeason;
- // 是子节点
- if (this.mentorId != tab.name) {
- // 设置父节点id
- 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();
- switch (date.getMonth() + 1) {
- case 1:
- case 2:
- case 3:
- this.queryParams.feedbackSeason = "1";
- break;
- case 4:
- case 5:
- case 6:
- this.queryParams.feedbackSeason = "2";
- break;
- case 7:
- case 8:
- case 9:
- this.queryParams.feedbackSeason = "3";
- break;
- case 10:
- case 11:
- case 12:
- this.queryParams.feedbackSeason = "4";
- break;
- }
- // 获取当前用户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++) {
- if (mentorList[i].staffid!=this.staffId) {
- 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++) {
- this.successorOptions.push( { key: data[i].staffId, value: data[i].staffName } );
- }
- // ====================获取当前导师作为受邀导师的学员列表====================
- return 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 } );
- }
- // 学员数组去重
- let map = new Map();
- this.successorOptions.forEach((item, index) => {
- if (!map.has(item["key"])) {
- map.set(item["key"], item);
- }
- });
- this.successorOptions = [...map.values()];
- if (this.successorOptions.length != 0) {
- // 默认选中列表中第一个学员
- this.queryParams.successorId = this.successorOptions[0].key;
- this.getList();
- }
- // 获取当前学员当年当季度反馈id
- return 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.mentorId;
- if (this.staffId == this.mentorId) {
- this.isParentMentor = true;
- }
- 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);
- });
- });
- } 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;
- },
- /** 邀请表格判空 */
- isInvitationFormEmpty() {
- if (this.meetingDate == "" || this.mentorOptionsArray.length == 0) {
- return true;
- } else {
- return false;
- }
- },
- /** 培养计划详情处理 */
- 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();
- },
- /** 汇报附件参数初始化 */
- initFileList(id) {
- this.doc.queryParams.pId = id
- this.doc.pId = id
- this.getFileList()
- this.doc2.queryParams.pId = id
- this.doc2.pId = id
- this.getFileList2()
- // this.$nextTick(() => {
- // this.$refs.doc.clearFiles()
- // })
- },
- getFileList() {
- allFileList(this.doc.queryParams).then(response => {
- this.doc.commonfileList = response;
- });
- },
- getFileList2() {
- allFileList(this.doc2.queryParams).then(response => {
- this.doc2.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()
- this.getFileList2()
- },
- 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.getFileList2()
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 邀请导师 */
- handleInvite() {
- if (this.isInvitationFormEmpty()) {
- this.$message.error('会议日期和受邀导师导师不能为空')
- return;
- }
- let updateParams = {};
- updateParams.id = this.feedbackId;
- if (typeof(this.meetingDate) == "string") {
- console.log("type is string");
- } else {
- console.log("type is not string");
- this.meetingDate.setTime(this.meetingDate.getTime() + 3600 * 1000 * 24);
- }
- updateParams.meetingDate = this.meetingDate;
- updateParams.id = this.parentId;
- // 修改会议日期
- updateFeedback(updateParams).then(response => {
- this.meetingDate.setTime(this.meetingDate.getTime() - 3600 * 1000 * 24);
- });
- 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).then(response => {
- getFeedbackByParams({
- successorId: this.queryParams.successorId,
- feedbackYear: this.queryParams.feedbackYear,
- feedbackSeason: this.queryParams.feedbackSeason,
- }).then(response => {
- let data = response.data;
- let firstMentor = {};
- firstMentor.name = data.mentorId;
- firstMentor.title = data.mentorName;
- listFeedback( { parentId: data.id } ).then(response => {
- let data = response.rows;
- let mentorTabsTemp = [];
- this.mentorTabs = [];
- this.activeName = firstMentor.name;
- mentorTabsTemp.push(firstMentor);
- for (let i = 0; i < data.length; i++) {
- mentorTabsTemp.push({ name: data[i].mentorId, title: data[i].mentorName});
- }
- this.mentorTabs = mentorTabsTemp;
- });
- });
- });
- }
- });
- // 发送邮件提醒受邀导师
- }
- 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");
- },
- yearFormateter() {
- this.isFirstSearch = false;
- },
- /** 搜索按钮操作 */
- handleQuery() {
- // this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp;
- // if (this.isFirstSearch) {
- // this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp;
- // } else {
- // this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp.getFullYear();
- // }
- if (typeof(this.queryParams.feedbackYearTemp) == 'string') {
- this.queryParams.feedbackYear = this.queryParams.feedbackYearTemp;
- } 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 = "";
- // 清空会议日期
- 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.mentorId = data.mentorId;
- this.meetingDate = data.meetingDate;
- this.resetLastDay();
- this.mentorFeedback = data.mentorFeedback;
- window.scrollTo(0, 0);
- // 刷新汇报附件
- this.initFileList(data.id);
- // 初始化导师标签页
- this.mentorTabs = [];
- 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);
- });
- });
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- //文件预览
- openPdf(){
- //ppt就跳路由预览,office就直接打开文件新页面
- const didi={ imgs:this.imgs}
- if( this.pptView==true&&this.ppt==false){
- let routeUrl = this.$router.resolve({
- path: "/cpms/index.html#/pptyulan",
- query:didi
- });
- window.open("/cpms/index.html#/pptyulan?id=" + this.pdf.pdfUrl, '_blank')
- console.log(this.imgs)
- }else {
- window.open(this.pdf.pdfUrl)
- }
- },
- handleSeePPT (row){
- //ppt预览
- this.loadingFlash=true
- this.pdf.open =true
- this.pdf.title = row.fileName
- this.pdf.pdfUrl = row.fileUrl
- this.pptView=true
- this.ppt=false
- const formatDate =new FormData();
- formatDate.append("filepath",row.fileUrl)
- //调用文件预览api
- let res= this.officeConvert.pptConvertCommon(formatDate)
- //查看接受的全局方法的返回结果 console.log(res)
- //利用.then方法接受Promise对象
- res.then((result)=>{
- //关闭加载中
- this.loadingFlash=false
- //成功时直接给地址
- this.videoList = result.data.imagePathList
- //将返回的地址集合遍历添加到绑定的数组中
- this.imgs=[]
- for (var key=0;key<this.videoList.length;key++) {
- this.imgs.push( process.env.VUE_APP_BASE_API+ this.videoList[key] );
- }
- }).catch(result => {
- //请求失败,关闭loading,pdf地址直接为为空,不显示
- this.pdf.pdfUrl =""
- this.loadingFlash = false;
- })
- },
- handleSee (row){
- //office预览
- this.loadingFlash=true
- this.pdf.open =true
- this.pdf.title = row.fileName
- this.pdf.pdfUrl =""
- this.pptView=false
- this.ppt=true
- const formatDate =new FormData();
- formatDate.append("filepath",row.fileUrl)
- //调用文件预览api
- let res= this.officeConvert.officeConvertCommon(formatDate)
- //查看接受的全局方法的返回结果 console.log(res)
- //利用.then方法接受Promise对象
- res.then((result)=>{
- //关闭加载中
- this.loadingFlash=false
- if(result.msg.includes("csv")){
- this.pdf.pdfUrl =process.env.VUE_APP_BASE_API+ result.data
- this.$alert(result.msg, this.$t('检查乱码'), { dangerouslyUseHTMLString: true });
- // this.$message({message: result.msg, center: true,type:'warning', offset:400, });
- }else if(result.msg.includes("不存在")){
- //文件不存在时提示
- this.pdf.pdfUrl =""
- this.$alert(result.msg, this.$t('预览失败'), { dangerouslyUseHTMLString: true });
- // this.$message({message: result.msg, center: true,type:'warning', offset:400, });
- this.pdf.open =false
- }else if(result.msg.includes("不支持此格式")){
- this.pdf.pdfUrl =""
- this.$alert(result.msg, this.$t('预览失败'), { dangerouslyUseHTMLString: true });
- // this.$message({message: result.msg, center: true,type:'warning', offset:400, });
- this.pdf.open =false
- } else{
- //成功时直接给地址
- this.pdf.pdfUrl =process.env.VUE_APP_BASE_API+ result.data
- }
- // this.$nextTick(() => {
- // const iframe = window.frames['iFrame']
- // const handleLoad = () => {
- // setTimeout(() => {
- // const Do = (iframe.contentWindow || iframe.contentDocument)
- // console.log(Do.document.getElementsByTagName('table')[0])
- // Do.document.getElementsByTagName('table')[0].style.width = "100%"
- // Do.document.getElementsByTagName('table')[0].setAttribute("class","table")
- // }, 500)
- // }
- // iframe.addEventListener('load', handleLoad, true)
- // })
- }).catch(result => {
- //请求失败,关闭loading,pdf地址直接为为空,不显示
- this.pdf.pdfUrl =""
- this.loadingFlash = false;
- })
- },
- }
- };
- </script>
- <style scoped>
- .question{
- margin: 20px 0px;
- padding-left: 20px;
- }
- .answer{
- padding-bottom: 10px;
- padding-left: 40px;
- }
- h3{
- margin: 20px 0px;
- }
- </style>
|