channelManagement.vue 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382
  1. <template>
  2. <div class="record-warp">
  3. <div class="record-main">
  4. <el-row>
  5. <el-col :span="24">
  6. <div class="search-head">
  7. <el-input v-model="planName" clearable placeholder="请输入计划名称"></el-input
  8. >&nbsp;&nbsp;&nbsp;&nbsp;
  9. <!--
  10. <el-date-picker
  11. :clearable="false"
  12. v-model="planTime"
  13. type="date"
  14. format="yyyy-MM-dd"
  15. placeholder="选择创建日期"
  16. >
  17. </el-date-picker> -->
  18. <!-- <el-cascader
  19. v-show="userInfo.roleType == '5'"
  20. placeholder="请选择组织架构"
  21. v-model="group"
  22. :options="groupData"
  23. :props="{ checkStrictly: true }"
  24. clearable
  25. ></el-cascader>
  26. <el-cascader
  27. v-show="userInfo.roleType == '4'"
  28. placeholder="请选择组织架构"
  29. v-model="group"
  30. :options="groupData"
  31. clearable
  32. ></el-cascader> -->
  33. &nbsp;&nbsp;&nbsp;&nbsp;
  34. <el-select v-model="planStatus" placeholder="请选择计划状态">
  35. <el-option
  36. :label="item.name"
  37. :value="item.id"
  38. v-for="item in channelList"
  39. :key="item.id"
  40. ></el-option>
  41. </el-select>
  42. <!-- &nbsp;&nbsp;&nbsp;&nbsp;
  43. <div style="display: flex; flex-direction: row; align-items: center">
  44. <span
  45. style="
  46. font-size: 16px;
  47. margin-right: 10px;
  48. line-height: 20px;
  49. min-width: 40px;
  50. "
  51. >测评对象:</span
  52. >
  53. <el-radio v-model="planType" label="1">教师</el-radio>
  54. <el-radio v-model="planType" label="0">学生</el-radio>
  55. </div> -->
  56. &nbsp;&nbsp;&nbsp;&nbsp;
  57. <el-button type="primary" round icon="el-icon-search" @click="searchTarget"
  58. >搜索</el-button
  59. >
  60. <el-button type="info" round @click="clearSearch">清空</el-button>
  61. </div>
  62. </el-col>
  63. </el-row>
  64. <div class="table-content">
  65. <el-table
  66. height="100%"
  67. :data="tableData"
  68. :row-style="{ height: '0px' }"
  69. :cell-style="{ padding: '5px' }"
  70. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  71. >
  72. <!-- <el-table-column prop="name" label="姓名" align="center" width="" show-overflow-tooltip>
  73. </el-table-column> -->
  74. <el-table-column
  75. :show-overflow-tooltip="true"
  76. prop="planName"
  77. label="计划名称"
  78. align="center"
  79. min-width="200px"
  80. >
  81. </el-table-column>
  82. <el-table-column
  83. prop="createTime"
  84. label="创建时间"
  85. :show-overflow-tooltip="true"
  86. align="center"
  87. width=""
  88. >
  89. </el-table-column>
  90. <el-table-column
  91. prop="planEndTime"
  92. label="结束时间"
  93. :show-overflow-tooltip="true"
  94. align="center"
  95. width=""
  96. >
  97. </el-table-column>
  98. <el-table-column
  99. :show-overflow-tooltip="true"
  100. prop="planOrgName"
  101. label="所属组织架构"
  102. align="center"
  103. width=""
  104. >
  105. </el-table-column>
  106. <!-- <el-table-column prop="userNo" label="测试人数" align="center" width="">
  107. </el-table-column> -->
  108. <el-table-column prop="createUserName" label="创建人" align="center" width="">
  109. </el-table-column>
  110. <el-table-column
  111. prop="planStatus"
  112. label="状态"
  113. :formatter="forMaPlan"
  114. align="center"
  115. width=""
  116. >
  117. <template slot-scope="scope">
  118. <div
  119. style="display: flex; justify-content: center; align-items: center"
  120. v-if="scope.row.planStatus == '3'"
  121. >
  122. <img
  123. style="width: 16px"
  124. src="../../../assets/img/home/isCom.png"
  125. alt=""
  126. />&nbsp;&nbsp;
  127. <div style="color: #00955e">已完成</div>
  128. </div>
  129. <div
  130. style="display: flex; justify-content: center; align-items: center"
  131. v-if="scope.row.planStatus == '2'"
  132. >
  133. <img
  134. style="width: 16px"
  135. src="../../../assets/img/home/isRun.png"
  136. alt=""
  137. />&nbsp;&nbsp;
  138. <div style="color: #f6cb00">进行中</div>
  139. </div>
  140. <div
  141. style="display: flex; justify-content: center; align-items: center"
  142. v-if="scope.row.planStatus == '1'"
  143. >
  144. <img
  145. style="width: 16px"
  146. src="../../../assets/img/home/isNo.png"
  147. alt=""
  148. />&nbsp;&nbsp;
  149. <div style="color: #d52121">未开始</div>
  150. </div>
  151. </template>
  152. </el-table-column>
  153. <!-- extractCode -->
  154. <el-table-column label="报告密码" align="center" width="180px">
  155. <template slot-scope="scope">
  156. <div style="display: flex; align-items: center; justify-content: center">
  157. <!-- {{ scope.row.extractCode}} -->
  158. <span
  159. v-show="
  160. scope.row.isShow &&
  161. scope.row.extractCode != null &&
  162. scope.row.extractCode != ''
  163. "
  164. >{{ scope.row.extractCode }}&nbsp;&nbsp;</span
  165. >
  166. <div
  167. style="
  168. display: inline-block;
  169. vertical-align: middle;
  170. width: auto;
  171. height: 0px;
  172. line-height: 9px;
  173. "
  174. v-show="
  175. !scope.row.isShow &&
  176. scope.row.extractCode != null &&
  177. scope.row.extractCode != ''
  178. "
  179. >
  180. ******&nbsp;&nbsp;
  181. </div>
  182. <i
  183. style="color: #00bf78"
  184. v-show="
  185. scope.row.isShow &&
  186. scope.row.extractCode != null &&
  187. scope.row.extractCode != ''
  188. "
  189. @click="scope.row.isShow = !scope.row.isShow"
  190. class="el-icon-view"
  191. ></i>
  192. &nbsp;&nbsp;
  193. <i
  194. v-clipboard:copy="scope.row.extractCode"
  195. v-clipboard:success="copySuc"
  196. v-clipboard:error="copyFail"
  197. title="复制文本"
  198. v-show="
  199. scope.row.isShow &&
  200. scope.row.extractCode != null &&
  201. scope.row.extractCode != ''
  202. "
  203. class="el-icon-copy-document"
  204. ></i>
  205. <i
  206. v-show="
  207. !scope.row.isShow &&
  208. scope.row.extractCode != null &&
  209. scope.row.extractCode != ''
  210. "
  211. @click="scope.row.isShow = !scope.row.isShow"
  212. class="el-icon-view"
  213. ></i>
  214. &nbsp;&nbsp;
  215. <i
  216. v-clipboard:copy="scope.row.extractCode"
  217. v-clipboard:success="copySuc"
  218. v-clipboard:error="copyFail"
  219. title="复制文本"
  220. v-show="
  221. !scope.row.isShow &&
  222. scope.row.extractCode != null &&
  223. scope.row.extractCode != ''
  224. "
  225. class="el-icon-copy-document"
  226. ></i>
  227. </div>
  228. </template>
  229. </el-table-column>
  230. <el-table-column label="操作" width="250px" align="center">
  231. <template slot-scope="scope">
  232. <div
  233. class="detail_button_out"
  234. v-if="
  235. (userInfo.roleType == '5' && scope.row.planStatus == '3') ||
  236. (scope.row.planStatus == '3' && scope.row.enable == '1')
  237. "
  238. >
  239. <div class="detail_button" @click="addUser(scope.row)">
  240. <img src="../../../assets/img/table/search.png" />
  241. <span> 查看报告</span>
  242. </div>
  243. <div class="detail_button" @click="downloadButton(scope.row)">
  244. <img src="../../../assets/img/table/xiafa1.png" />
  245. <!-- <img src="../../../assets/img/table/xiafaz.gif" /> -->
  246. <span> 下载报告</span>
  247. </div>
  248. </div>
  249. <div
  250. class="detail_button_out_dis"
  251. v-if="
  252. !(
  253. (userInfo.roleType == '5' && scope.row.planStatus == '3') ||
  254. (scope.row.planStatus == '3' && scope.row.enable == '1')
  255. )
  256. "
  257. >
  258. <div class="detail_button_dis" :title="titleFormatter(scope.row)">
  259. <img src="../../../assets/img/table/search_dis.png" />
  260. <span> 查看报告</span>
  261. </div>
  262. <div class="detail_button_dis" :title="titleFormatter(scope.row)">
  263. <img src="../../../assets/img/table/xiafa1_dis.png" />
  264. <span> 下载报告</span>
  265. </div>
  266. </div>
  267. </template>
  268. </el-table-column>
  269. </el-table>
  270. </div>
  271. <!-- small -->
  272. <el-pagination
  273. class="pag_class"
  274. background
  275. @size-change="handleSizeChange"
  276. @current-change="handleCurrentChange"
  277. :current-page.sync="pageNum"
  278. layout="total, sizes, prev, pager, next"
  279. :page-size="pageSize"
  280. :page-sizes="[10, 20, 50, 100]"
  281. :total="total"
  282. >
  283. </el-pagination>
  284. <!-- <el-pagination small background layout="total prev, pager, next" :total="36">
  285. </el-pagination> -->
  286. </div>
  287. <PlanReport ref="register" @search="searchTarget" />
  288. <!-- 弹出框---选择问题需要下载的组织架构 -->
  289. <div class="radius_dia">
  290. <el-dialog
  291. title=""
  292. :visible.sync="downloadVisible"
  293. width="40%"
  294. :before-close="handleClose"
  295. center
  296. >
  297. <div slot="title">
  298. <p style="text-align: center; margin-bottom: 20px; font-weight: 700">
  299. 报告下载
  300. </p>
  301. <!-- <div style="text-align: left; margin-left: 10%; color: #333333">
  302. 选择下载范围
  303. </div> -->
  304. <el-form
  305. :inline="true"
  306. class="demo-form-inline form-plan"
  307. style="
  308. margin-top: 20px;
  309. display: flex;
  310. flex-direction: row;
  311. align-items: center;
  312. justify-content: space-between;
  313. padding: 0 10%;
  314. "
  315. >
  316. <!-- <el-form-item label="">
  317. <el-select v-model="dimensionality" placeholder="请选择下载范围">
  318. <el-option
  319. v-for="item in dimensionalityOption"
  320. :key="item.id"
  321. :label="item.name"
  322. :value="item.id"
  323. ></el-option>
  324. </el-select>
  325. </el-form-item> -->
  326. <!-- <el-form-item label="" v-show="dimensionality == '1'">
  327. <el-select v-model="grade" placeholder="请选择年级">
  328. <el-option
  329. v-for="item in gradeList"
  330. :key="item.id"
  331. :label="item == -1 ? '教师组' : item + '级'"
  332. :value="item"
  333. ></el-option>
  334. </el-select>
  335. </el-form-item> -->
  336. <!-- <el-form-item label="" v-show="dimensionality == '2'">
  337. <el-select multiple v-model="orgName" placeholder="请选择班级">
  338. <el-option
  339. v-for="item in orgList"
  340. :key="item.id"
  341. :label="item.orgName"
  342. :value="item.orgNo"
  343. ></el-option>
  344. </el-select>
  345. </el-form-item> -->
  346. <!-- <el-form-item label="" v-show="dimensionality == '0'">
  347. <el-button
  348. type="success"
  349. style="border-radius: 20px"
  350. v-show="dimensionality == '0'"
  351. @click="downloadFun"
  352. >
  353. 下载
  354. </el-button>
  355. </el-form-item> -->
  356. </el-form>
  357. <div style="display: flex; width: 100%; justify-content: center">
  358. <el-button
  359. type="success"
  360. style="border-radius: 20px"
  361. v-show="dimensionality == '1'"
  362. @click="downloadFun"
  363. >
  364. 下载已选年级
  365. </el-button>
  366. <el-button
  367. type="success"
  368. style="border-radius: 20px"
  369. v-show="dimensionality == '2'"
  370. @click="downloadFun"
  371. >
  372. 下载已选班级
  373. </el-button>
  374. <el-button
  375. type="success"
  376. style="border-radius: 20px"
  377. v-show="dimensionality == '2'"
  378. @click="downloadAllFun"
  379. >
  380. 下载全部班级
  381. </el-button>
  382. </div>
  383. </div>
  384. <div style="margin-left: 10%;margin-right: 10%; color: #333333; margin-bottom: 20px ;display:flex;justify-content: space-between;align-items: center;">
  385. <span>待下载列表</span> <el-button
  386. type="success"
  387. style="border-radius: 20px"
  388. v-show="dimensionality == '0'"
  389. @click="downloadFun"
  390. >
  391. 下载
  392. </el-button>
  393. </div>
  394. <el-table
  395. :data="downList"
  396. style="width: 80%; margin-left: 10%"
  397. max-height="250"
  398. :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
  399. >
  400. <el-table-column type="index" align="center" label="序号"> </el-table-column>
  401. <el-table-column
  402. prop="filePath"
  403. :formatter="fileNameFormatter"
  404. align="center"
  405. label="报告名称"
  406. >
  407. </el-table-column>
  408. <el-table-column prop="createTime" align="center" label="生成时间">
  409. </el-table-column>
  410. <el-table-column fixed="right" align="center" label="操作" width="60px">
  411. <template slot-scope="scope">
  412. <el-button @click="downNewFun(scope.row)" type="text" size="small">
  413. 下载
  414. </el-button>
  415. </template>
  416. </el-table-column>
  417. </el-table>
  418. <span slot="footer" class="dialog-footer"> </span>
  419. </el-dialog>
  420. <el-dialog
  421. class="dig_update ts_li"
  422. :visible.sync="resetVisible"
  423. width="30%"
  424. center
  425. :close-on-click-modal="false"
  426. :close-on-press-escape="false"
  427. :before-close="closeResetFun"
  428. style="border-radius: 40px"
  429. >
  430. <div slot="title">
  431. <div class="demo-ruleForm">
  432. <p class="dig_title">提示</p>
  433. <!-- <img src="../../../assets/img/report/downN.png" alt=""> -->
  434. <p align="center">
  435. <img
  436. style="width: 60px"
  437. src="../../../assets/img/table/xiafaz.gif"
  438. alt=""
  439. />
  440. </p>
  441. <p style="margin-bottom: 40px; margin-top: 20px">正在下载中,请勿操作</p>
  442. </div>
  443. </div>
  444. </el-dialog>
  445. <el-dialog
  446. class="dig_update ts_li"
  447. :visible.sync="verifyVisible"
  448. width="30%"
  449. center
  450. style="border-radius: 40px"
  451. >
  452. <div slot="title">
  453. <div class="demo-ruleForm">
  454. <p class="dig_title">提示</p>
  455. <!-- <img src="../../../assets/img/report/downN.png" alt=""> -->
  456. <p style="margin-bottom: 40px; margin-top: 20px">确定离开吗?</p>
  457. <div class="dig_button">
  458. <el-button type="info" round @click="cancleFun()">取消</el-button>
  459. <el-button
  460. type="success"
  461. round
  462. @click="
  463. verifyVisible = false;
  464. resetVisible = false;
  465. "
  466. >确定</el-button
  467. >
  468. </div>
  469. </div>
  470. </div>
  471. </el-dialog>
  472. </div>
  473. </div>
  474. </template>
  475. <script>
  476. import { oSessionStorage } from "../../../utils/utils";
  477. import planReport from "../../../components/PlanReport.vue";
  478. import { basePath } from "../../../utils/http";
  479. import { Loading } from "element-ui";
  480. export default {
  481. name: "userManage",
  482. components: {
  483. PlanReport: planReport,
  484. },
  485. data() {
  486. return {
  487. basePath: basePath,
  488. //上传文件的弹出款的标志
  489. fileVisible: false,
  490. //判断点击的是重置密码还是点击删除
  491. isDelete: false,
  492. //重置密码需要调用个userId
  493. userId: "",
  494. //充值密码使用userName
  495. userName: "",
  496. //重置密码弹出框
  497. resetVisible: false,
  498. //个人用户---确认标志
  499. verifyVisible: false,
  500. //根据名称搜索
  501. name: "",
  502. //搜索的用户编号
  503. studentNumber: "",
  504. //搜索的组织架构
  505. // 搜索需要的性别
  506. sex: "",
  507. planType: "1",
  508. planName: "",
  509. planTime: "",
  510. planStatus: "",
  511. group: "",
  512. ppData: [],
  513. groupData: [],
  514. options: [
  515. {
  516. value: "1",
  517. label: "选项1",
  518. children: [
  519. {
  520. value: "11",
  521. label: "选项11",
  522. children: [{ value: "111", label: "选项111" }],
  523. },
  524. ],
  525. },
  526. ],
  527. centerDialogVisible: false,
  528. editUserFlag: false,
  529. startTime: "",
  530. endTime: "",
  531. value1: null,
  532. total: 0,
  533. pageSize: 10,
  534. pageNum: 1,
  535. keyword: "",
  536. tableData: [],
  537. userInfo: {}, //用户信息
  538. invitationCode: "",
  539. roleType: "0",
  540. type: 0,
  541. view: {
  542. name: "",
  543. studentNumber: "",
  544. sex: "",
  545. orgName: "",
  546. },
  547. channelList: [
  548. { name: "未开始", id: "1" },
  549. { name: "进行中", id: "2" },
  550. { name: "已完成", id: "3" },
  551. ],
  552. //下载报告标志
  553. downloadVisible: false,
  554. //当前下载的计划需要点击需要下
  555. //组织架构列表
  556. orgList: [],
  557. //组织编号name
  558. orgName: [],
  559. //下载报告 测试计划ID
  560. planId: "",
  561. dimensionality: 0,
  562. dimensionalityOption: [
  563. { id: 0, name: "学院" },
  564. { id: 1, name: "年级" },
  565. { id: 2, name: "班级" },
  566. ],
  567. //院的编号
  568. courtNum: "",
  569. grade: "",
  570. gradeList: [],
  571. optionsLoad: {
  572. lock: true,
  573. text: "努力下载中",
  574. spinner: "el-icon-loading",
  575. background: "rgba(0, 0, 0, 0.7)",
  576. },
  577. loadingInstance: null,
  578. downList: [],
  579. timeFlag: null,
  580. };
  581. },
  582. created() {},
  583. mounted() {
  584. this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
  585. this.getChannel();
  586. if (!this.userInfo) {
  587. //如果用户信息不存在跳转登陆页
  588. this.$router.push({ path: "/" });
  589. }
  590. this.searchTarget();
  591. let a = sessionStorage.getItem("individualTendency");
  592. if (a != null) {
  593. let user = JSON.parse(a);
  594. if (user.isBack) {
  595. user.isBack = false;
  596. // let user = JSON.parse(sessionStorage.getItem("individualTendency"));
  597. sessionStorage.setItem("individualTendency", JSON.stringify(user));
  598. this.addRegisterUser(user);
  599. }
  600. }
  601. },
  602. destroyed() {
  603. clearInterval(this.timeFlag);
  604. },
  605. methods: {
  606. //点击确认开始关闭定时器
  607. fileNameFormatter(val) {
  608. if (val.filePath == null) {
  609. return;
  610. } else {
  611. let nameTmp = val.filePath;
  612. //开始截取字符串
  613. let lastIndex = nameTmp.lastIndexOf("/");
  614. // console.log(nameTmp.slice(lastIndex+1, 0));
  615. return nameTmp.slice(lastIndex + 1, nameTmp.length);
  616. }
  617. },
  618. closeResetFun() {
  619. //关闭
  620. // this.resetVisible = false;
  621. this.verifyVisible = true;
  622. },
  623. cancleFun() {
  624. this.verifyVisible = false;
  625. this.resetVisible = true;
  626. },
  627. copySuc() {
  628. this.$message.success("复制成功");
  629. },
  630. copyFail() {
  631. this.$message.success("复制失败");
  632. },
  633. onCopy(row) {
  634. if (navigator.clipboard && window.isSecureContext) {
  635. navigator.clipboard.writeText(row.extractCode).then(() => {
  636. this.$message.success("复制成功");
  637. });
  638. } else {
  639. const textArea = document.createElement("textarea");
  640. textArea.value = val;
  641. // 使text area不在viewport,同时设置不可见
  642. document.body.appendChild(textArea);
  643. textArea.focus();
  644. textArea.select();
  645. this.$message.success("复制成功");
  646. return new Promise((res, rej) => {
  647. // 执行复制命令并移除文本框
  648. document.execCommand("copy") ? res() : rej();
  649. textArea.remove();
  650. });
  651. }
  652. },
  653. titleFormatter(val) {
  654. if (val.planStatus == "1") {
  655. return "计划未开始";
  656. } else if (val.planStatus == "2") {
  657. return "计划进行中";
  658. }
  659. if (val.enable == "0") {
  660. return "当前计划未授权";
  661. }
  662. },
  663. handleClose() {
  664. clearInterval(this.timeFlag);
  665. this.downloadVisible = false;
  666. },
  667. //根据计划查询院
  668. queryCourt() {
  669. this.$http.get(`/planOrg/findPlanParentOrg?planId=${this.planId}`, {}, (res) => {
  670. if (res && res.code == 200) {
  671. this.courtNum = res.data[0].orgNo;
  672. // this.orgName = [res.data[0].orgNo];
  673. // this.orgList = res.data;
  674. } else {
  675. this.$message.error(res.msg);
  676. }
  677. });
  678. },
  679. //根据计划下班级
  680. queryGrade() {
  681. this.$http.get(`/planOrg/findPlanGrade?planId=${this.planId}`, {}, (res) => {
  682. if (res && res.code == 200) {
  683. this.grade = res.data[0];
  684. this.gradeList = res.data;
  685. // this.orgName = [res.data[0].orgNo];
  686. // this.orgList = res.data;
  687. } else {
  688. this.$message.error(res.msg);
  689. }
  690. });
  691. },
  692. //下载报告
  693. downloadFun() {
  694. // dimensionality: 0,
  695. // dimensionalityOption: [
  696. // { id: 0, name: "学院" },
  697. // { id: 1, name: "年级" },
  698. // { id: 2, name: "班级" },
  699. // ],
  700. //在这里调用接口
  701. //判断当前选择是院还是届--还是班级
  702. let params = {};
  703. if (this.dimensionality == 0) {
  704. //调用接口
  705. params = {
  706. planId: this.planId,
  707. orgNo: this.courtNum,
  708. flag: 0,
  709. };
  710. } else if (this.dimensionality == 1) {
  711. //调用班级接口
  712. params = {
  713. planId: this.planId,
  714. orgNo: this.courtNum,
  715. flag: 1,
  716. grade: this.grade,
  717. };
  718. } else if (this.dimensionality == 2) {
  719. if (this.orgName.length == 0) {
  720. this.$message.error("请选择班级");
  721. return;
  722. }
  723. params = {
  724. planId: this.planId,
  725. orgNo: this.courtNum,
  726. flag: 2,
  727. classIds: this.orgName,
  728. };
  729. }
  730. this.downloadVisible = false;
  731. this.resetVisible = true;
  732. //需要传输
  733. //开始不调用测试了
  734. clearInterval(this.timeFlag);
  735. this.$http.post(`/generate/report/v2`, params, (res) => {
  736. if (res && res.code == 200) {
  737. // this.currentDownFun(res.data);
  738. let a = document.createElement("a");
  739. document.body.appendChild(a);
  740. a.setAttribute("href", basePath + `/plan/download?recordId=${res.data.id}`);
  741. a.click();
  742. this.$nextTick(() => {
  743. // 以服务的方式调用的 Loading 需要异步关闭
  744. this.resetVisible = false;
  745. });
  746. } else {
  747. this.resetVisible = false;
  748. this.$message.error(res.msg);
  749. }
  750. });
  751. },
  752. //开始下载
  753. currentDownFun(val) {
  754. this.$http.getImg(`/plan/download?path=${val}`, {}, (res) => {
  755. if (res && res.code == 200) {
  756. // this.grade = res.data[0];
  757. // this.gradeList = res.data;
  758. // this.orgName = [res.data[0].orgNo];
  759. // this.orgList = res.data;
  760. } else {
  761. this.$message.error(res.msg);
  762. }
  763. });
  764. },
  765. //下载全部班级
  766. downloadAllFun() {
  767. clearInterval(this.timeFlag);
  768. //下载全部班级
  769. //循环班级列表拿到
  770. let params = {};
  771. let orgNameList = [];
  772. for (let i = 0; i < this.orgList.length; i++) {
  773. orgNameList.push(this.orgList[i].orgNo);
  774. }
  775. params = {
  776. planId: this.planId,
  777. orgNo: this.courtNum,
  778. flag: 2,
  779. classIds: orgNameList,
  780. };
  781. this.downloadVisible = false;
  782. this.resetVisible = true;
  783. // Loading.service(options);
  784. this.$http.post(`/plan/generate/report/v2`, params, (res) => {
  785. if (res && res.code == 200) {
  786. let a = document.createElement("a");
  787. document.body.appendChild(a);
  788. a.setAttribute("href", basePath + `/plan/download?recordId=${res.data.id}`);
  789. a.click();
  790. this.$nextTick(() => {
  791. // 以服务的方式调用的 Loading 需要异步关闭
  792. this.resetVisible = false;
  793. });
  794. // this.currentDownFun(res.data);
  795. } else {
  796. this.resetVisible = false;
  797. this.$message.error(res.msg);
  798. }
  799. });
  800. },
  801. downNewFun(val) {
  802. //返回这个路径要如何用
  803. let a = document.createElement("a");
  804. document.body.appendChild(a);
  805. a.setAttribute("href", basePath + `/plan/download?recordId=${val.id}`);
  806. a.click();
  807. //开始调用刷新按钮
  808. // clearInterval(this.timeFlag);
  809. // this.timeFlag = setInterval(() => {
  810. // this.getPlanFileList();
  811. // }, 3000);
  812. },
  813. //组织架构选择--
  814. getOrgList() {
  815. this.$http.get(`/planOrg/findAllByPlanId?planId=${this.planId}`, {}, (res) => {
  816. if (res && res.code == 200) {
  817. // this.orgName = [res.data[0].orgNo];
  818. this.orgList = res.data;
  819. } else {
  820. this.$message.error(res.msg);
  821. }
  822. });
  823. },
  824. //下载标志
  825. downloadButton(row) {
  826. // dimensionality: 0,
  827. // dimensionalityOption: [
  828. // { id: 0, name: "学院" },
  829. // { id: 1, name: "年级" },
  830. // { id: 2, name: "班级" },
  831. // ],
  832. this.dimensionality = 0;
  833. if (row.planType == "1") {
  834. this.dimensionalityOption = [{ id: 0, name: "学院" }];
  835. } else {
  836. this.dimensionalityOption = [
  837. { id: 0, name: "学院" },
  838. { id: 1, name: "年级" },
  839. { id: 2, name: "班级" },
  840. ];
  841. }
  842. //在这里记录一下---数据
  843. //当查看报告时--如果显示的是
  844. if (this.userInfo.roleType != 5) {
  845. if (row.enable == "0") {
  846. //提示暂未授权
  847. this.$message({
  848. message: "正在下载中",
  849. type: "warning",
  850. });
  851. return;
  852. }
  853. }
  854. this.planId = row.id;
  855. this.downloadVisible = true;
  856. this.getOrgList();
  857. this.queryCourt();
  858. this.queryGrade();
  859. clearInterval(this.timeFlag);
  860. this.getPlanFileList();
  861. this.timeFlag = setInterval(() => {
  862. this.getPlanFileList();
  863. }, 2000);
  864. //调用接口
  865. //查询下载计划的列表
  866. },
  867. //查询计划列表
  868. getPlanFileList() {
  869. this.$http.get(`/downRecord/findDownRecord?planId=${this.planId}`, {}, (res) => {
  870. // this.$toast.success({message:'成功'});
  871. if (res && res.code == 200) {
  872. //将值赋值给list
  873. this.downList = res.data;
  874. // this.channelList = res.data;
  875. } else {
  876. this.$message.error(res.msg);
  877. }
  878. });
  879. },
  880. forMaPlan(val) {
  881. if (val.planStatus == "1") {
  882. return "未开始";
  883. //
  884. } else if (val.planStatus == "2") {
  885. //
  886. return "进行中";
  887. } else if (val.planStatus == "3") {
  888. //
  889. return "已完成";
  890. }
  891. },
  892. //文件上传成功
  893. fileSuccess(res) {
  894. if (res.code == 200) {
  895. this.searchTarget();
  896. this.$message({
  897. message: res.msg,
  898. type: "success",
  899. });
  900. } else {
  901. this.$message({
  902. message: res.msg,
  903. type: "error",
  904. });
  905. }
  906. //查询列表
  907. },
  908. //文件上传失败
  909. fileError() {
  910. this.$message({
  911. message: "上传失败",
  912. type: "error",
  913. });
  914. },
  915. cancle() {
  916. this.resetVisible = false;
  917. },
  918. //提交文本
  919. submitCom() {
  920. //判断当前是否是
  921. if (this.isDelete) {
  922. this.deleteUser();
  923. //调用删除方法
  924. } else {
  925. this.resetFun();
  926. // 调用重置密码方法
  927. }
  928. },
  929. //性别---
  930. genderFun(val) {
  931. let sex = val.gender;
  932. if (sex == "1") {
  933. return "男";
  934. } else if (sex == "0") {
  935. return "女";
  936. } else {
  937. return sex;
  938. }
  939. },
  940. //每页多少条
  941. handleSizeChange(val) {
  942. this.pageSize = val;
  943. this.searchTarget();
  944. },
  945. //获取组织架构方法--------------------开始-----------------------
  946. getChannel() {
  947. this.$http.get(
  948. `/org/findAllOrgByPOrgNo?orgNo=${this.userInfo.orgNo}`,
  949. {},
  950. (res) => {
  951. // this.$toast.success({message:'成功'});
  952. if (res && res.code == 200) {
  953. //将值赋值给list
  954. if (res.data.length > 0) {
  955. let resAdd = this.addPro(res.data);
  956. this.ppData = JSON.parse(JSON.stringify(resAdd));
  957. let forRes = this.arrToTree(resAdd);
  958. let resultRes = this.deleteChildren(forRes);
  959. this.groupData = resultRes[0].children;
  960. } else {
  961. this.groupData = [];
  962. }
  963. // this.channelList = res.data;
  964. } else {
  965. this.$message.error(res.msg);
  966. }
  967. }
  968. );
  969. },
  970. //z增加
  971. addPro(val) {
  972. let data = JSON.parse(JSON.stringify(val));
  973. for (let i = 0; i < val.length; i++) {
  974. data[i].value = val[i].orgNo;
  975. data[i].label = val[i].orgName;
  976. }
  977. return data;
  978. },
  979. //非递归方式:将平铺数据转换为树形结构数据
  980. arrToTree(arr) {
  981. let data = arr.filter((item) => {
  982. item.children = arr.filter((e) => {
  983. return item.orgNo === e.parentOrgNo;
  984. });
  985. return this.userInfo.orgNo == item.orgNo;
  986. // return !item.parentOrgNo;
  987. });
  988. return data;
  989. },
  990. //去除转换树形结构数据后存在的空children
  991. deleteChildren(arr) {
  992. let childs = arr;
  993. for (let i = childs.length; i--; i > 0) {
  994. if (childs[i].children) {
  995. if (childs[i].children.length) {
  996. this.deleteChildren(childs[i].children);
  997. } else {
  998. delete childs[i].children;
  999. }
  1000. }
  1001. }
  1002. return arr;
  1003. },
  1004. //获取组织架构方法--------------------结束-----------------------
  1005. formatterDelete(row) {
  1006. if (row.state == 0) {
  1007. return "已删除";
  1008. } else {
  1009. return "正常";
  1010. }
  1011. },
  1012. resetUser(flag, val) {
  1013. this.resetVisible = true;
  1014. this.isDelete = flag;
  1015. this.userId = val.id;
  1016. this.userName = val.userName;
  1017. //当前用户id
  1018. //重置密码
  1019. },
  1020. editUser(row) {
  1021. this.editRegisterUser(row);
  1022. },
  1023. viewUser(row) {
  1024. this.view.name = row.userName;
  1025. this.view.studentNumber = row.userNo;
  1026. this.view.sex = row.gender == "0" ? "女" : "男";
  1027. this.view.orgName = row.orgName;
  1028. this.centerDialogVisible = true;
  1029. },
  1030. addUser(val) {
  1031. if (this.userInfo.roleType != "5") {
  1032. if (val.enable == "0") {
  1033. this.$message({
  1034. type: "error",
  1035. message: "暂未授权",
  1036. });
  1037. return;
  1038. }
  1039. }
  1040. this.addRegisterUser(val);
  1041. },
  1042. clearSearch() {
  1043. this.planName = "";
  1044. this.planTime = "";
  1045. this.group = "";
  1046. this.planStatus = "";
  1047. this.planType = "1";
  1048. this.searchTarget();
  1049. },
  1050. formatterTime(val) {
  1051. let date = new Date(val);
  1052. let year = date.getFullYear();
  1053. let month = date.getMonth() + 1;
  1054. month = this.formatterMon(month);
  1055. let day = date.getDate();
  1056. day = this.formatterMon(day);
  1057. return year + "-" + month + "-" + day;
  1058. },
  1059. formatterMon(val) {
  1060. if (val < 10) {
  1061. return "0" + val;
  1062. } else {
  1063. return val;
  1064. }
  1065. },
  1066. addRegisterUser(val) {
  1067. let obj = {
  1068. planType: val.planType,
  1069. id: val.id,
  1070. planName: val.planName,
  1071. rouName: "planReport",
  1072. isBack: false,
  1073. userNo: "",
  1074. };
  1075. this.$refs.register.open(obj);
  1076. },
  1077. editRegisterUser(val) {
  1078. // debugger;
  1079. this.$refs.register.edit(val);
  1080. },
  1081. resetFun() {
  1082. this.$http.get(`/user/resetPassword?userId=${this.userId}`, {}, (res) => {
  1083. // this.$toast.success({message:'成功'});
  1084. if (res && res.code == 200) {
  1085. this.resetVisible = false;
  1086. this.$message.success("重置成功");
  1087. this.searchTarget();
  1088. } else {
  1089. this.$message.error(res.msg);
  1090. }
  1091. });
  1092. },
  1093. deleteUser() {
  1094. this.$http.get(`/user/delete?userId=${this.userId}`, {}, (res) => {
  1095. // this.$toast.success({message:'成功'});
  1096. if (res && res.code == 200) {
  1097. this.$message.success("删除成功");
  1098. this.resetVisible = false;
  1099. this.searchTarget();
  1100. } else {
  1101. this.$message.error("删除失败");
  1102. }
  1103. });
  1104. },
  1105. handleCurrentChange(val) {
  1106. this.pageNum = val;
  1107. this.searchList();
  1108. },
  1109. //根据现有情况进行搜索
  1110. searchList() {
  1111. let time = "";
  1112. if (this.planTime != "") {
  1113. time = this.formatterTime(this.planTime);
  1114. }
  1115. let gp = "";
  1116. if (this.group != "") {
  1117. gp = this.group[this.group.length - 1];
  1118. }
  1119. let url = `/plan/findListByPage?pageSize=${this.pageSize}&pageNum=${this.pageNum}${
  1120. gp == "" ? `&orgNo=${this.userInfo.orgNo}` : `&orgNo=${gp}`
  1121. }${time == "" ? "" : `&createDate=${time}`}${
  1122. this.planStatus == "" ? "" : `&planStatus=${this.planStatus}`
  1123. }${this.planName == "" ? "" : `&planName=${this.planName}`}${
  1124. this.planType == "" ? "" : `&planType=${this.planType}`
  1125. }`;
  1126. this.$http.get(url, {}, (res) => {
  1127. if (res && res.code == 200) {
  1128. let aa = [];
  1129. for (let i = 0; i < res.data.content.length; i++) {
  1130. aa.push({ ...res.data.content[i], isShow: false });
  1131. }
  1132. this.tableData = aa;
  1133. this.total = res.data.totalElements;
  1134. } else {
  1135. // this.$toast.fail(res.msg);
  1136. this.$message.error(res.msg);
  1137. }
  1138. });
  1139. },
  1140. searchTarget() {
  1141. this.pageNum = 1;
  1142. this.searchList();
  1143. },
  1144. //跳转首页
  1145. goHome() {
  1146. this.$router.push({ path: "/home" });
  1147. },
  1148. //跳转记录页
  1149. goRecord() {
  1150. this.$router.push({ path: "/record" });
  1151. },
  1152. //退出登陆
  1153. logout() {
  1154. oSessionStorage.removeItem("userInfo");
  1155. oSessionStorage.removeItem("token");
  1156. this.$router.push({ path: "/" });
  1157. },
  1158. //点击获取月出勤次数
  1159. getTimes(param) {
  1160. this.monthTimes = param;
  1161. },
  1162. },
  1163. };
  1164. </script>
  1165. <style scoped>
  1166. .ts_li >>> .el-dialog__body {
  1167. padding: 0px !important;
  1168. }
  1169. .form-plan >>> .el-form-item__label {
  1170. width: 100px !important;
  1171. }
  1172. .radius_dia >>> .el-dialog {
  1173. border-radius: 20px !important;
  1174. }
  1175. </style>
  1176. <style lang="less" scoped>
  1177. @import "../../../styles/theme.less";
  1178. .pag_class {
  1179. text-align: end;
  1180. }
  1181. .pag_class /deep/.el-input__inner {
  1182. width: 100% !important;
  1183. }
  1184. .pag_class /deep/.el-pagination--small span:not([class*="suffix"]) {
  1185. height: 22px;
  1186. line-height: 28px !important;
  1187. }
  1188. .record-warp {
  1189. width: 100%;
  1190. height: 80vh;
  1191. position: relative;
  1192. .record-main {
  1193. width: 100%;
  1194. height: 100%;
  1195. box-sizing: border-box;
  1196. overflow-y: auto;
  1197. display: flex;
  1198. flex-direction: column;
  1199. .search-head {
  1200. width: 100%;
  1201. display: flex;
  1202. flex-direction: row;
  1203. justify-content: flex-start;
  1204. align-items: center;
  1205. .zc-title {
  1206. color: #606266;
  1207. font-size: 14px;
  1208. }
  1209. }
  1210. .table-content {
  1211. margin: 10px 0;
  1212. flex: 1;
  1213. overflow-y: auto;
  1214. }
  1215. }
  1216. }
  1217. .add_user_class {
  1218. margin-top: 10px;
  1219. }
  1220. .user_out {
  1221. display: flex;
  1222. width: 100%;
  1223. align-items: center;
  1224. border: 1px solid #eeeeef;
  1225. line-height: 50px;
  1226. margin-top: 10px;
  1227. }
  1228. .user_out_sub {
  1229. flex: 1;
  1230. background-color: #fafafa;
  1231. text-align: center;
  1232. // color:#ffffff
  1233. }
  1234. .user_out_subNext {
  1235. padding-left: 10px;
  1236. flex: 3;
  1237. }
  1238. .detail_button_out {
  1239. display: flex;
  1240. justify-content: flex-start;
  1241. .detail_button {
  1242. margin-left: 20px;
  1243. display: flex;
  1244. align-items: center;
  1245. cursor: pointer;
  1246. letter-spacing: 2px;
  1247. img {
  1248. width: 15px;
  1249. margin-right: 5px;
  1250. }
  1251. span {
  1252. color: #00bf78;
  1253. // font-weight: 600;
  1254. }
  1255. }
  1256. }
  1257. .detail_button_out_dis {
  1258. display: flex;
  1259. justify-content: flex-start;
  1260. .detail_button_dis {
  1261. margin-left: 20px;
  1262. display: flex;
  1263. align-items: center;
  1264. cursor: pointer;
  1265. letter-spacing: 2px;
  1266. img {
  1267. width: 15px;
  1268. margin-right: 5px;
  1269. }
  1270. span {
  1271. color: #d1d1d1;
  1272. // font-weight: 600;
  1273. }
  1274. }
  1275. }
  1276. //弹出框样式
  1277. .dig_update /deep/.el-cascader {
  1278. position: relative;
  1279. font-size: 14px;
  1280. line-height: 40px;
  1281. width: 100%;
  1282. }
  1283. .dig_update /deep/.el-dialog {
  1284. box-shadow: none !important;
  1285. // background: transparent !important;
  1286. }
  1287. .demo-ruleForm /deep/ .el-form-item {
  1288. margin-right: 10px;
  1289. vertical-align: top;
  1290. display: flex !important;
  1291. flex-direction: column;
  1292. }
  1293. .demo-ruleForm /deep/.el-dialog__header {
  1294. background-color: #ffffff;
  1295. padding-left: 140px !important;
  1296. }
  1297. .demo-ruleForm /deep/.el-form-item__label {
  1298. text-align: left;
  1299. vertical-align: middle;
  1300. float: left;
  1301. font-size: 14px;
  1302. color: #606266;
  1303. line-height: 40px;
  1304. padding: 0 12px 0 0;
  1305. -webkit-box-sizing: border-box;
  1306. box-sizing: border-box;
  1307. }
  1308. .demo-ruleForm /deep/.el-input {
  1309. width: 100% !important;
  1310. }
  1311. .demo-ruleForm /deep/.el-input__inner {
  1312. width: 100% !important;
  1313. background-color: #f7f7f7;
  1314. border: 0px;
  1315. }
  1316. .dig_button {
  1317. margin-top: 40px;
  1318. display: flex;
  1319. width: 100%;
  1320. justify-content: space-around;
  1321. }
  1322. .demo-ruleForm {
  1323. background-color: #ffffff;
  1324. // border-radius: 20px;
  1325. margin-right: -10px;
  1326. margin-top: -10px;
  1327. padding-right: 100px;
  1328. padding-left: 100px;
  1329. border-radius: 20px;
  1330. padding-top: 20px;
  1331. padding-bottom: 20px;
  1332. .dig_title {
  1333. margin-bottom: 30px;
  1334. text-align: center;
  1335. font-weight: 700;
  1336. }
  1337. }
  1338. </style>