projectProcess.vue 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492
  1. <template>
  2. <!-- 项目安排 -->
  3. <div class="pb_content">
  4. <div class="race_content_body">
  5. <div class="raceBox">
  6. <div class="stepBg">
  7. <div
  8. class="steps"
  9. v-for="(sta, staIndex) in racePro.stageBox"
  10. :key="staIndex"
  11. >
  12. <div>
  13. <img src="../../../../assets/icon/race/progress.png" alt="" />
  14. </div>
  15. <div class="stepRightNav" @click="jump('jd' + staIndex + 1)">
  16. <div>阶段{{ staIndex + 1 }}</div>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="right">
  21. <div
  22. v-for="(sa, saIndex) in racePro.stageBox"
  23. :key="saIndex"
  24. :id="'jd' + saIndex + 1"
  25. >
  26. <div class="jdTop">
  27. <div class="jdTopFirst jdInput">
  28. <div class="right_title">阶段{{ saIndex + 1 }}</div>
  29. <el-input
  30. v-model="sa.staTitle"
  31. @input="upRacePro"
  32. placeholder="阶段标题"
  33. ></el-input>
  34. </div>
  35. <div class="jdTopFirst">
  36. <div>总课时</div>
  37. <el-input
  38. v-model="sa.allTime"
  39. @input="upRacePro"
  40. placeholder="输入阶段总课时"
  41. ></el-input>
  42. </div>
  43. </div>
  44. <div
  45. class="raceProBox"
  46. v-for="(race, raIndex) in sa.actBox"
  47. :key="raIndex"
  48. >
  49. <div class="raceTop allBox">
  50. <div style="color: #a1a4a8; font-size: 18px">
  51. 任务{{ raIndex + 1 }}
  52. </div>
  53. <div class="titleTop">
  54. <div class="leftBox"></div>
  55. <div class="hdName">任务名称</div>
  56. <div class="rwInput">
  57. <el-input
  58. v-model="race.actName"
  59. placeholder="输入任务名称"
  60. @input="upRacePro"
  61. ></el-input>
  62. </div>
  63. <div class="rwKs">
  64. <div style="min-width: 45px">课时</div>
  65. <el-input
  66. v-model="race.actTime"
  67. placeholder="输入任务课时"
  68. @input="upRacePro"
  69. ></el-input>
  70. </div>
  71. <div
  72. class="remove"
  73. v-if="racePro.stageBox[saIndex].actBox.length > 1"
  74. @click="deleteTask(saIndex, raIndex)"
  75. style="position: absolute; right: 0"
  76. ></div>
  77. </div>
  78. </div>
  79. <div class="raceTop allBox">
  80. <div class="lineBox">
  81. <div class="lineTitle">活动目标</div>
  82. <div class="strLine"></div>
  83. </div>
  84. <div class="editorCss">
  85. <editor-bar
  86. v-model="race.driQuestion.brief"
  87. @change="upRacePro"
  88. ></editor-bar>
  89. </div>
  90. <!-- <div>
  91. <div class="basic_box">
  92. <div class="lineBox">
  93. <div class="lineTitleTwo">资料补充</div>
  94. <div class="strLine"></div>
  95. </div>
  96. <div>
  97. <div
  98. class="add_chapters_box"
  99. v-if="
  100. race.driQuestion.data &&
  101. race.driQuestion.data.length == 0
  102. "
  103. style="height: 185px"
  104. ></div>
  105. <div
  106. v-else
  107. class="add_chapters_box"
  108. style="display: flex; flex-direction: column"
  109. >
  110. <div
  111. class="chapter_upload"
  112. v-for="(item, index) in race.driQuestion.data"
  113. :key="item.id"
  114. >
  115. <div class="chapter_upload_t"></div>
  116. <div class="chapter_upload_o">
  117. <div class="chapter_upload_l">
  118. <div
  119. v-if="item.type == 2"
  120. class="chapter_upload_l_i1"
  121. ></div>
  122. <div
  123. v-if="item.type == 1 || item.type == 3"
  124. class="chapter_upload_l_i5"
  125. ></div>
  126. </div>
  127. <div class="chapter_upload_ic">
  128. <div class="chapter_upload_ic_l"></div>
  129. <div
  130. class="chapter_upload_ic_r"
  131. @click.stop="
  132. deleteChapterData(
  133. $event,
  134. sindex,
  135. index,
  136. raIndex,
  137. 0
  138. )
  139. "
  140. >
  141. <div></div>
  142. </div>
  143. </div>
  144. <div class="chapter_upload_n">
  145. <input
  146. class="first"
  147. v-if="item.type == 1 || item.type == 3"
  148. :placeholder="item.name"
  149. />
  150. <input
  151. class="first"
  152. v-if="item.type == 2"
  153. :placeholder="item.name"
  154. />
  155. <div class="chapter_upload_ud">
  156. <div class="chapter_upload_up"></div>
  157. <div class="chapter_upload_down"></div>
  158. </div>
  159. </div>
  160. </div>
  161. </div>
  162. </div>
  163. </div>
  164. <div class="add_info_box">
  165. <button class="info_btn" @click="addImg($event)">
  166. 上传附件
  167. <input
  168. type="file"
  169. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,video/mp4, video/quicktime, video/x-msvideo,image/*"
  170. style="display: none"
  171. @change="
  172. beforeUpload($event, null, saIndex, raIndex, 0)
  173. "
  174. />
  175. </button>
  176. </div>
  177. <div v-if="race.driQuestion.data.proVisible" class="mask">
  178. <div class="progressBox">
  179. <div class="lbox">
  180. <img
  181. src="../../../../assets/loading.gif"
  182. />上传中,请稍后
  183. </div>
  184. <el-progress
  185. :text-inside="true"
  186. :stroke-width="20"
  187. :percentage="
  188. race.driQuestion.data.progress
  189. ? race.driQuestion.data.progress
  190. : 0
  191. "
  192. style="width: 80%"
  193. ></el-progress>
  194. </div>
  195. </div>
  196. </div>
  197. </div> -->
  198. </div>
  199. <div class="raceTop allBox">
  200. <div class="lineBox">
  201. <div class="lineTitle">活动内容</div>
  202. <div class="strLine"></div>
  203. </div>
  204. <div class="editorCss">
  205. <editor-bar
  206. v-model="race.tarDesign.brief"
  207. @change="upRacePro"
  208. ></editor-bar>
  209. </div>
  210. <!-- <div>
  211. <div class="basic_box">
  212. <div class="lineBox">
  213. <div class="lineTitleTwo">资料补充</div>
  214. <div class="strLine"></div>
  215. </div>
  216. <div>
  217. <div
  218. class="add_chapters_box"
  219. v-if="
  220. race.tarDesign.data && race.tarDesign.data.length == 0
  221. "
  222. style="height: 185px"
  223. ></div>
  224. <div
  225. v-else
  226. class="add_chapters_box"
  227. style="display: flex; flex-direction: column"
  228. >
  229. <div
  230. class="chapter_upload"
  231. v-for="(item, index) in race.tarDesign.data"
  232. :key="item.id"
  233. >
  234. <div class="chapter_upload_t"></div>
  235. <div class="chapter_upload_o">
  236. <div class="chapter_upload_l">
  237. <div
  238. v-if="item.type == 2"
  239. class="chapter_upload_l_i1"
  240. ></div>
  241. <div
  242. v-if="item.type == 1 || item.type == 3"
  243. class="chapter_upload_l_i5"
  244. ></div>
  245. </div>
  246. <div class="chapter_upload_ic">
  247. <div class="chapter_upload_ic_l"></div>
  248. <div
  249. class="chapter_upload_ic_r"
  250. @click.stop="
  251. deleteChapterData(
  252. $event,
  253. sindex,
  254. index,
  255. raIndex,
  256. 1
  257. )
  258. "
  259. >
  260. <div></div>
  261. </div>
  262. </div>
  263. <div class="chapter_upload_n">
  264. <input
  265. class="first"
  266. v-if="item.type == 1 || item.type == 3"
  267. :placeholder="item.name"
  268. />
  269. <input
  270. class="first"
  271. v-if="item.type == 2"
  272. :placeholder="item.name"
  273. />
  274. <div class="chapter_upload_ud">
  275. <div class="chapter_upload_up"></div>
  276. <div class="chapter_upload_down"></div>
  277. </div>
  278. </div>
  279. </div>
  280. </div>
  281. </div>
  282. </div>
  283. <div class="add_info_box">
  284. <button class="info_btn" @click="addImg($event)">
  285. 上传附件
  286. <input
  287. type="file"
  288. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,video/mp4, video/quicktime, video/x-msvideo,image/*"
  289. style="display: none"
  290. @change="
  291. beforeUpload($event, null, saIndex, raIndex, 1)
  292. "
  293. />
  294. </button>
  295. </div>
  296. <div v-if="race.tarDesign.data.proVisible" class="mask">
  297. <div class="progressBox">
  298. <div class="lbox">
  299. <img
  300. src="../../../../assets/loading.gif"
  301. />上传中,请稍后
  302. </div>
  303. <el-progress
  304. :text-inside="true"
  305. :stroke-width="20"
  306. :percentage="
  307. race.tarDesign.data.progress
  308. ? race.tarDesign.data.progress
  309. : 0
  310. "
  311. style="width: 80%"
  312. ></el-progress>
  313. </div>
  314. </div>
  315. </div>
  316. </div> -->
  317. </div>
  318. <div class="raceTop allBox">
  319. <div class="lineBox">
  320. <div class="lineTitle">预期成果</div>
  321. <div class="strLine"></div>
  322. </div>
  323. <div class="editorCss">
  324. <editor-bar
  325. v-model="race.actiDesign.brief"
  326. @change="upRacePro"
  327. ></editor-bar>
  328. </div>
  329. <!-- <div>
  330. <div class="basic_box">
  331. <div class="lineBox">
  332. <div class="lineTitleTwo">资料补充</div>
  333. <div class="strLine"></div>
  334. </div>
  335. <div>
  336. <div
  337. class="add_chapters_box"
  338. v-if="
  339. race.actiDesign.data &&
  340. race.actiDesign.data.length == 0
  341. "
  342. style="height: 185px"
  343. ></div>
  344. <div
  345. v-else
  346. class="add_chapters_box"
  347. style="display: flex; flex-direction: column"
  348. >
  349. <div
  350. class="chapter_upload"
  351. v-for="(item, index) in race.actiDesign.data"
  352. :key="item.id"
  353. >
  354. <div class="chapter_upload_t"></div>
  355. <div class="chapter_upload_o">
  356. <div class="chapter_upload_l">
  357. <div
  358. v-if="item.type == 2"
  359. class="chapter_upload_l_i1"
  360. ></div>
  361. <div
  362. v-if="item.type == 1 || item.type == 3"
  363. class="chapter_upload_l_i5"
  364. ></div>
  365. </div>
  366. <div class="chapter_upload_ic">
  367. <div class="chapter_upload_ic_l"></div>
  368. <div
  369. class="chapter_upload_ic_r"
  370. @click.stop="
  371. deleteChapterData(
  372. $event,
  373. sindex,
  374. index,
  375. raIndex,
  376. 2
  377. )
  378. "
  379. >
  380. <div></div>
  381. </div>
  382. </div>
  383. <div class="chapter_upload_n">
  384. <input
  385. class="first"
  386. v-if="item.type == 1 || item.type == 3"
  387. :placeholder="item.name"
  388. />
  389. <input
  390. class="first"
  391. v-if="item.type == 2"
  392. :placeholder="item.name"
  393. />
  394. <div class="chapter_upload_ud">
  395. <div class="chapter_upload_up"></div>
  396. <div class="chapter_upload_down"></div>
  397. </div>
  398. </div>
  399. </div>
  400. </div>
  401. </div>
  402. </div>
  403. <div class="add_info_box">
  404. <button class="info_btn" @click="addImg($event)">
  405. 上传附件
  406. <input
  407. type="file"
  408. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,video/mp4, video/quicktime, video/x-msvideo,image/*"
  409. style="display: none"
  410. @change="
  411. beforeUpload($event, null, saIndex, raIndex, 2)
  412. "
  413. />
  414. </button>
  415. </div>
  416. <div v-if="race.actiDesign.data.proVisible" class="mask">
  417. <div class="progressBox">
  418. <div class="lbox">
  419. <img
  420. src="../../../../assets/loading.gif"
  421. />上传中,请稍后
  422. </div>
  423. <el-progress
  424. :text-inside="true"
  425. :stroke-width="20"
  426. :percentage="
  427. race.actiDesign.data.progress
  428. ? race.actiDesign.data.progress
  429. : 0
  430. "
  431. style="width: 80%"
  432. ></el-progress>
  433. </div>
  434. </div>
  435. </div>
  436. </div> -->
  437. </div>
  438. <div class="raceTop allBox">
  439. <div class="lineBox">
  440. <div class="lineTitle">活动评价</div>
  441. <div class="strLine"></div>
  442. </div>
  443. <div class="editorCss">
  444. <editor-bar
  445. v-model="race.evaDesign.brief"
  446. @change="upRacePro"
  447. ></editor-bar>
  448. </div>
  449. <!-- <div>
  450. <div class="basic_box">
  451. <div class="lineBox">
  452. <div class="lineTitleTwo">资料补充</div>
  453. <div class="strLine"></div>
  454. </div>
  455. <div>
  456. <div
  457. class="add_chapters_box"
  458. v-if="
  459. race.evaDesign.data && race.evaDesign.data.length == 0
  460. "
  461. style="height: 185px"
  462. ></div>
  463. <div
  464. v-else
  465. class="add_chapters_box"
  466. style="display: flex; flex-direction: column"
  467. >
  468. <div
  469. class="chapter_upload"
  470. v-for="(item, index) in race.evaDesign.data"
  471. :key="item.id"
  472. >
  473. <div class="chapter_upload_t"></div>
  474. <div class="chapter_upload_o">
  475. <div class="chapter_upload_l">
  476. <div
  477. v-if="item.type == 2"
  478. class="chapter_upload_l_i1"
  479. ></div>
  480. <div
  481. v-if="item.type == 1 || item.type == 3"
  482. class="chapter_upload_l_i5"
  483. ></div>
  484. </div>
  485. <div class="chapter_upload_ic">
  486. <div class="chapter_upload_ic_l"></div>
  487. <div
  488. class="chapter_upload_ic_r"
  489. @click.stop="
  490. deleteChapterData(
  491. $event,
  492. sindex,
  493. index,
  494. raIndex,
  495. 3
  496. )
  497. "
  498. >
  499. <div></div>
  500. </div>
  501. </div>
  502. <div class="chapter_upload_n">
  503. <input
  504. class="first"
  505. v-if="item.type == 1 || item.type == 3"
  506. :placeholder="item.name"
  507. />
  508. <input
  509. class="first"
  510. v-if="item.type == 2"
  511. :placeholder="item.name"
  512. />
  513. <div class="chapter_upload_ud">
  514. <div class="chapter_upload_up"></div>
  515. <div class="chapter_upload_down"></div>
  516. </div>
  517. </div>
  518. </div>
  519. </div>
  520. </div>
  521. </div>
  522. <div class="add_info_box">
  523. <button class="info_btn" @click="addImg($event)">
  524. 上传附件
  525. <input
  526. type="file"
  527. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,video/mp4, video/quicktime, video/x-msvideo,image/*"
  528. style="display: none"
  529. @change="
  530. beforeUpload($event, null, saIndex, raIndex, 3)
  531. "
  532. />
  533. </button>
  534. </div>
  535. <div v-if="race.evaDesign.data.proVisible" class="mask">
  536. <div class="progressBox">
  537. <div class="lbox">
  538. <img
  539. src="../../../../assets/loading.gif"
  540. />上传中,请稍后
  541. </div>
  542. <el-progress
  543. :text-inside="true"
  544. :stroke-width="20"
  545. :percentage="
  546. race.evaDesign.data.progress
  547. ? race.evaDesign.data.progress
  548. : 0
  549. "
  550. style="width: 80%"
  551. ></el-progress>
  552. </div>
  553. </div>
  554. </div>
  555. </div> -->
  556. </div>
  557. <div
  558. class="addTaskBorder"
  559. @click="addTaskBorder(saIndex)"
  560. v-if="raIndex == racePro.stageBox[saIndex].actBox.length - 1"
  561. >
  562. <div>
  563. <img src="../../../../assets/icon/addHw.png" alt />
  564. <span>添加任务</span>
  565. </div>
  566. </div>
  567. </div>
  568. <div
  569. class="addTaskBorder"
  570. @click="addStageBorder()"
  571. v-if="saIndex == racePro.stageBox.length - 1"
  572. >
  573. <div>
  574. <img src="../../../../assets/icon/addHw.png" alt />
  575. <span>添加阶段</span>
  576. </div>
  577. </div>
  578. </div>
  579. </div>
  580. </div>
  581. </div>
  582. </div>
  583. </template>
  584. <script>
  585. import EditorBar from "../../../tools/wangEnduit";
  586. export default {
  587. components: { EditorBar },
  588. props: ["raceProcess"],
  589. data() {
  590. return {
  591. racePro: {
  592. stageBox: [
  593. {
  594. staTitle: "",
  595. allTime: "",
  596. brief: "",
  597. data: [],
  598. actBox: [
  599. {
  600. actName: "",
  601. actTime: "",
  602. driQuestion: { brief: "", data: [] },
  603. tarDesign: { brief: "", data: [] },
  604. actiDesign: { brief: "", data: [] },
  605. evaDesign: { brief: "", data: [] },
  606. },
  607. ],
  608. },
  609. ],
  610. },
  611. };
  612. },
  613. methods: {
  614. change(val) {
  615. console.log(val);
  616. },
  617. addImg(e) {
  618. var el = e.currentTarget;
  619. el.getElementsByTagName("input")[0].click();
  620. },
  621. jump(t) {
  622. var a = document.getElementById(t);
  623. var b = document.getElementsByClassName("right")[0];
  624. b.scrollTop = a.offsetTop;
  625. },
  626. getChapterData(e, i, j, ic, type) {
  627. e.stopPropagation();
  628. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  629. console.log("还不能下载图片喔");
  630. }
  631. },
  632. time() {
  633. if (!this.now) {
  634. this.now = new Date().getTime();
  635. return true;
  636. } else {
  637. let time = new Date().getTime();
  638. if (time - this.now > 3000) {
  639. this.now = time;
  640. return true;
  641. } else {
  642. return false;
  643. }
  644. }
  645. },
  646. upRacePro() {
  647. this.$emit("upRacePro", this.racePro);
  648. },
  649. deleteChapterData(e, si, i, j, t) {
  650. e.stopPropagation();
  651. if (t == 0) {
  652. this.racePro.stageBox[si].actBox[j].driQuestion.data.splice(i, 1);
  653. } else if (t == 1) {
  654. this.racePro.stageBox[si].actBox[j].tarDesign.data.splice(i, 1);
  655. } else if (t == 2) {
  656. this.racePro.stageBox[si].actBox[j].actiDesign.data.splice(i, 1);
  657. } else {
  658. this.racePro.stageBox[si].actBox[j].evaDesign.data.splice(i, 1);
  659. }
  660. this.upRacePro();
  661. },
  662. imgChange(file, fileList, type, sindex, index, jT) {
  663. if (jT == 0) {
  664. var _tmp = this.racePro.stageBox[sindex].actBox[index].driQuestion.data;
  665. } else if (jT == 1) {
  666. var _tmp = this.racePro.stageBox[sindex].actBox[index].tarDesign.data;
  667. } else if (jT == 2) {
  668. var _tmp = this.racePro.stageBox[sindex].actBox[index].actiDesign.data;
  669. } else {
  670. var _tmp = this.racePro.stageBox[sindex].actBox[index].evaDesign.data;
  671. }
  672. this.noneBtnImg = _tmp.length >= 1;
  673. },
  674. beforeUpload(event, type, sindex, index, jsonType) {
  675. var file = event.target.files[0];
  676. var credentials = {
  677. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  678. secretAccessKey: "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",
  679. }; //秘钥形式的登录上传
  680. window.AWS.config.update(credentials);
  681. window.AWS.config.region = "cn-northwest-1"; //设置区域
  682. var type1 = type;
  683. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  684. var _this = this;
  685. var b = [
  686. "DOC",
  687. "DOCX",
  688. "DOCM",
  689. "DOTM",
  690. "DOTX",
  691. "PPTX",
  692. "PPSX",
  693. "PPT",
  694. "PPS",
  695. "PPTM",
  696. "POTM",
  697. "PPAM",
  698. "POTX",
  699. "PPSM",
  700. ];
  701. var c = ["PDF", "DOT", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  702. var d = [
  703. "BMP",
  704. "PJP",
  705. "APNG",
  706. "PNG",
  707. "JPG",
  708. "GIF",
  709. "SVG",
  710. "JPEG",
  711. "JPG",
  712. "ICO",
  713. "PGPEG",
  714. "AVIF",
  715. ];
  716. if (
  717. b.indexOf(
  718. file.name
  719. .split(".")
  720. [file.name.split(".").length - 1].toLocaleUpperCase()
  721. ) != -1
  722. ) {
  723. if (file.size / 1024 / 1024 > 10) {
  724. this.$message.error("上传文件大于10M,请重新选择文件!");
  725. return;
  726. }
  727. } else if (
  728. c.indexOf(
  729. file.name
  730. .split(".")
  731. [file.name.split(".").length - 1].toLocaleUpperCase()
  732. ) != -1
  733. ) {
  734. if (file.size / 1024 / 1024 > 5) {
  735. this.$message.error("添加的上传文件大于5M,请重新选择文件!");
  736. return;
  737. }
  738. }
  739. if (
  740. c.indexOf(
  741. file.name
  742. .split(".")
  743. [file.name.split(".").length - 1].toLocaleUpperCase()
  744. ) != -1
  745. ) {
  746. type1 = 1;
  747. } else if (
  748. d.indexOf(
  749. file.name
  750. .split(".")
  751. [file.name.split(".").length - 1].toLocaleUpperCase()
  752. ) != -1
  753. ) {
  754. type1 = 3;
  755. } else {
  756. type1 = 2;
  757. }
  758. if (jsonType == 0) {
  759. _this.racePro.stageBox[sindex].actBox[
  760. index
  761. ].driQuestion.data.progress = 0;
  762. _this.racePro.stageBox[sindex].actBox[
  763. index
  764. ].driQuestion.data.proVisible = true;
  765. } else if (jsonType == 1) {
  766. _this.racePro.stageBox[sindex].actBox[
  767. index
  768. ].tarDesign.data.progress = 0;
  769. _this.racePro.stageBox[sindex].actBox[
  770. index
  771. ].tarDesign.data.proVisible = true;
  772. } else if (jsonType == 2) {
  773. _this.racePro.stageBox[sindex].actBox[
  774. index
  775. ].actiDesign.data.progress = 0;
  776. _this.racePro.stageBox[sindex].actBox[
  777. index
  778. ].actiDesign.data.proVisible = true;
  779. } else {
  780. _this.racePro.stageBox[sindex].actBox[
  781. index
  782. ].evaDesign.data.progress = 0;
  783. _this.racePro.stageBox[sindex].actBox[
  784. index
  785. ].evaDesign.data.proVisible = true;
  786. }
  787. _this.$forceUpdate();
  788. if (file) {
  789. var params = {
  790. Key:
  791. file.name.split(".")[0] +
  792. new Date().getTime() +
  793. "." +
  794. file.name.split(".")[file.name.split(".").length - 1],
  795. ContentType: file.type,
  796. Body: file,
  797. "Access-Control-Allow-Credentials": "*",
  798. ACL: "public-read",
  799. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  800. var options = {
  801. partSize: 2048 * 1024 * 1024,
  802. queueSize: 2,
  803. leavePartsOnError: true,
  804. };
  805. bucket
  806. .upload(params, options)
  807. .on("httpUploadProgress", function (evt) {
  808. //这里可以写进度条
  809. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  810. if (jsonType == 0) {
  811. _this.racePro.stageBox[sindex].actBox[
  812. index
  813. ].driQuestion.data.progress = parseInt(
  814. (evt.loaded * 80) / evt.total
  815. );
  816. } else if (jsonType == 1) {
  817. _this.racePro.stageBox[sindex].actBox[
  818. index
  819. ].tarDesign.data.progress = parseInt(
  820. (evt.loaded * 80) / evt.total
  821. );
  822. } else if (jsonType == 2) {
  823. _this.racePro.stageBox[sindex].actBox[
  824. index
  825. ].actiDesign.data.progress = parseInt(
  826. (evt.loaded * 80) / evt.total
  827. );
  828. } else {
  829. _this.racePro.stageBox[sindex].actBox[
  830. index
  831. ].evaDesign.data.progress = parseInt(
  832. (evt.loaded * 80) / evt.total
  833. );
  834. }
  835. })
  836. .send(function (err, data) {
  837. if (jsonType == 0) {
  838. _this.racePro.stageBox[sindex].actBox[
  839. index
  840. ].driQuestion.data.progress = 100;
  841. } else if (jsonType == 1) {
  842. _this.racePro.stageBox[sindex].actBox[
  843. index
  844. ].tarDesign.data.progress = 100;
  845. } else if (jsonType == 2) {
  846. _this.racePro.stageBox[sindex].actBox[
  847. index
  848. ].actiDesign.data.progress = 100;
  849. } else {
  850. _this.racePro.stageBox[sindex].actBox[
  851. index
  852. ].evaDesign.data.progress = 100;
  853. }
  854. setTimeout(() => {
  855. if (jsonType == 0) {
  856. _this.racePro.stageBox[sindex].actBox[
  857. index
  858. ].driQuestion.data.proVisible = false;
  859. } else if (jsonType == 1) {
  860. _this.racePro.stageBox[sindex].actBox[
  861. index
  862. ].tarDesign.data.proVisible = false;
  863. } else if (jsonType == 2) {
  864. _this.racePro.stageBox[sindex].actBox[
  865. index
  866. ].actiDesign.data.proVisible = false;
  867. } else {
  868. _this.racePro.stageBox[sindex].actBox[
  869. index
  870. ].evaDesign.data.proVisible = false;
  871. }
  872. _this.$forceUpdate();
  873. }, 1000);
  874. if (err) {
  875. _this.$message.error("上传失败");
  876. } else {
  877. if (jsonType == 0) {
  878. _this.racePro.stageBox[sindex].actBox[
  879. index
  880. ].driQuestion.data.push({
  881. name: file.name,
  882. url: data.Location,
  883. uid: file.uid,
  884. type: type1,
  885. });
  886. _this.imgChange(null, null, type1, sindex, index, jsonType);
  887. } else if (jsonType == 1) {
  888. _this.racePro.stageBox[sindex].actBox[
  889. index
  890. ].tarDesign.data.push({
  891. name: file.name,
  892. url: data.Location,
  893. uid: file.uid,
  894. type: type1,
  895. });
  896. _this.imgChange(null, null, type1, sindex, index, jsonType);
  897. } else if (jsonType == 2) {
  898. _this.racePro.stageBox[sindex].actBox[
  899. index
  900. ].actiDesign.data.push({
  901. name: file.name,
  902. url: data.Location,
  903. uid: file.uid,
  904. type: type1,
  905. });
  906. _this.imgChange(null, null, type1, sindex, index, jsonType);
  907. } else if (jsonType == 3) {
  908. _this.racePro.stageBox[sindex].actBox[
  909. index
  910. ].evaDesign.data.push({
  911. name: file.name,
  912. url: data.Location,
  913. uid: file.uid,
  914. type: type1,
  915. });
  916. _this.imgChange(null, null, type1, sindex, index, jsonType);
  917. }
  918. _this.upRacePro();
  919. console.log(data.Location);
  920. }
  921. });
  922. }
  923. },
  924. addTaskBorder(si) {
  925. this.racePro.stageBox[si].actBox.push({
  926. actName: "",
  927. actTime: "",
  928. driQuestion: { brief: "", data: [] },
  929. tarDesign: { brief: "", data: [] },
  930. actiDesign: { brief: "", data: [] },
  931. evaDesign: { brief: "", data: [] },
  932. });
  933. this.upRacePro();
  934. },
  935. addStageBorder() {
  936. this.racePro.stageBox.push({
  937. staTitle: "",
  938. allTime: "",
  939. brief: "",
  940. data: [],
  941. actBox: [
  942. {
  943. actName: "",
  944. actTime: "",
  945. driQuestion: { brief: "", data: [] },
  946. tarDesign: { brief: "", data: [] },
  947. actiDesign: { brief: "", data: [] },
  948. evaDesign: { brief: "", data: [] },
  949. },
  950. ],
  951. });
  952. },
  953. deleteTask(si, i) {
  954. var _this = this;
  955. if (_this.time()) {
  956. _this
  957. .$confirm("确定删除此活动吗?", "提示", {
  958. confirmButtonText: "确定",
  959. cancelButtonText: "取消",
  960. type: "warning",
  961. })
  962. .then(() => {
  963. _this.racePro.stageBox[si].actBox.splice(i, 1);
  964. _this.$message.success("删除成功");
  965. this.upRacePro();
  966. })
  967. .catch(() => {
  968. return;
  969. });
  970. }
  971. },
  972. },
  973. created() {
  974. this.racePro = this.raceProcess;
  975. },
  976. };
  977. </script>
  978. <style scoped>
  979. @media screen and (max-width: 1280px) {
  980. .jdTop > .jdTopFirst:nth-child(2) {
  981. padding-left: 5% !important;
  982. }
  983. .jdTopFirst >>> .el-input {
  984. width: 60% !important;
  985. }
  986. .rwKs >>> .el-input__inner {
  987. width: 60px !important;
  988. }
  989. .rwInput {
  990. width: 45% !important;
  991. }
  992. }
  993. .pb_content {
  994. width: 100%;
  995. height: 100%;
  996. }
  997. .race_content_body {
  998. width: 100%;
  999. position: relative;
  1000. margin: 0;
  1001. height: 100%;
  1002. }
  1003. .raceBox {
  1004. width: 100%;
  1005. height: 100%;
  1006. display: flex;
  1007. flex-direction: row;
  1008. flex-wrap: nowrap;
  1009. align-items: flex-start;
  1010. }
  1011. .stepBg {
  1012. padding: 80px 0 0 0;
  1013. margin: 0 25px 0 0;
  1014. width: 20%;
  1015. display: flex;
  1016. justify-content: flex-start;
  1017. align-items: center;
  1018. flex-wrap: nowrap;
  1019. background: #fff;
  1020. /* min-height: 800px; */
  1021. height: calc(100% - 80px);
  1022. border-radius: 15px;
  1023. overflow: auto;
  1024. min-width: 260px;
  1025. flex-direction: column;
  1026. font-size: 14px;
  1027. }
  1028. .steps {
  1029. display: flex;
  1030. flex-direction: row;
  1031. flex-wrap: nowrap;
  1032. position: relative;
  1033. width: 145px;
  1034. height: 130px;
  1035. }
  1036. .steps > div:nth-child(1) > img {
  1037. z-index: 9;
  1038. position: relative;
  1039. }
  1040. .stepRightNav {
  1041. display: flex;
  1042. flex-direction: column;
  1043. flex-wrap: nowrap;
  1044. justify-content: space-between;
  1045. align-items: flex-start;
  1046. margin: 8px 0 0 10px;
  1047. height: 50px;
  1048. cursor: pointer;
  1049. }
  1050. .stepRightNav:hover {
  1051. color: #999;
  1052. }
  1053. .right {
  1054. width: calc(100% - 20%);
  1055. background: rgb(255, 255, 255);
  1056. border-radius: 10px;
  1057. overflow: auto;
  1058. height: 100%;
  1059. border-radius: 15px;
  1060. /* max-height: 800px; */
  1061. }
  1062. .raceProBox {
  1063. background: #f6f9fe;
  1064. width: 90%;
  1065. margin: 20px 0 0 20px;
  1066. border-radius: 10px;
  1067. border: 2px solid #c4d9f3;
  1068. }
  1069. .allBox {
  1070. padding: 25px 25px 0 25px;
  1071. }
  1072. .allBox > div:nth-child(1) {
  1073. font-size: 18px;
  1074. }
  1075. .raceTop > div:nth-child(2) {
  1076. width: 100%;
  1077. margin-top: 10px;
  1078. }
  1079. .titleTop {
  1080. display: flex;
  1081. flex-direction: row;
  1082. flex-wrap: nowrap;
  1083. align-items: center;
  1084. width: 100%;
  1085. position: relative;
  1086. }
  1087. .titleTop > div:nth-child(2) {
  1088. margin-left: 10px;
  1089. }
  1090. .leftBox {
  1091. width: 5px;
  1092. height: 15px;
  1093. background: #5499e6;
  1094. }
  1095. .editorCss {
  1096. width: 90% !important;
  1097. }
  1098. .basic_box {
  1099. position: relative;
  1100. margin: 0;
  1101. min-height: 0;
  1102. width: 90%;
  1103. }
  1104. .add_info_box {
  1105. margin: 20px 0;
  1106. }
  1107. .add_info_box button {
  1108. margin: 0 10px 10px 0;
  1109. }
  1110. .add_chapters_box {
  1111. text-align: left;
  1112. background-color: rgb(232 234 237);
  1113. width: 100%;
  1114. padding: 0px 15px;
  1115. border-radius: 15px;
  1116. font-size: 16px;
  1117. box-sizing: border-box;
  1118. position: relative;
  1119. padding: 0 10px 5px 10px;
  1120. height: 140px;
  1121. overflow-y: auto;
  1122. overflow-x: hidden;
  1123. }
  1124. .chapter_upload {
  1125. height: 50px;
  1126. margin-top: 12px;
  1127. position: relative;
  1128. display: flex;
  1129. align-items: center;
  1130. width: 100%;
  1131. min-height: 50px;
  1132. }
  1133. .chapter_upload_t {
  1134. background-color: #fff;
  1135. position: absolute;
  1136. height: 100%;
  1137. top: 0px;
  1138. left: 0px;
  1139. border-radius: 40px;
  1140. box-sizing: border-box;
  1141. box-shadow: 0 0 3px 3px #dfdfdf;
  1142. width: 100%;
  1143. }
  1144. .chapter_upload_o {
  1145. width: 100%;
  1146. height: 100%;
  1147. position: relative;
  1148. z-index: 1;
  1149. display: flex;
  1150. align-items: center;
  1151. }
  1152. .chapter_upload_ic {
  1153. height: 30px;
  1154. float: right;
  1155. cursor: pointer;
  1156. position: absolute;
  1157. width: 45px;
  1158. right: 0;
  1159. top: 0;
  1160. }
  1161. .chapter_upload_ic_l {
  1162. width: 50px;
  1163. height: 50px;
  1164. float: left;
  1165. }
  1166. .chapter_upload_ic_l div {
  1167. width: 30px;
  1168. height: 35px;
  1169. background: url("../../../../assets/icon/icon.png");
  1170. }
  1171. .chapter_upload_ic_r {
  1172. width: 50px;
  1173. height: 50px;
  1174. float: left;
  1175. margin-left: 0px;
  1176. display: flex;
  1177. align-items: center;
  1178. position: absolute;
  1179. }
  1180. .chapter_upload_ic_r div {
  1181. width: 25px;
  1182. height: 25px;
  1183. background-image: url("../../../../assets/delete.png");
  1184. background-size: 100% 100%;
  1185. }
  1186. .chapter_upload_n {
  1187. display: flex;
  1188. text-indent: 10px;
  1189. text-decoration: none;
  1190. text-overflow: ellipsis;
  1191. white-space: nowrap;
  1192. overflow: hidden;
  1193. width: 55%;
  1194. margin-left: 10px;
  1195. cursor: pointer;
  1196. margin-top: 2px;
  1197. }
  1198. .chapter_upload_l_i1 {
  1199. background-image: url("../../../../assets/icon/video.png");
  1200. width: 28px;
  1201. height: 28px;
  1202. background-size: 100% 100%;
  1203. }
  1204. .chapter_upload_l_i5 {
  1205. background-image: url("../../../../assets/icon/word.png");
  1206. width: 24px;
  1207. height: 24px;
  1208. background-size: 100% 100%;
  1209. margin-left: 1px;
  1210. }
  1211. .chapter_upload_l_i8 {
  1212. background-image: url("../../../../assets/icon/line.png");
  1213. width: 24px;
  1214. height: 24px;
  1215. background-size: 100% 100%;
  1216. margin-left: 1px;
  1217. }
  1218. .chapter_upload_ud {
  1219. display: flex;
  1220. flex-direction: column;
  1221. margin-left: 5px;
  1222. justify-content: center;
  1223. z-index: 99;
  1224. }
  1225. .chapter_upload_up {
  1226. background-image: url("../../../../assets/icon/up.png");
  1227. width: 17px;
  1228. height: 15px;
  1229. background-size: 100% 100%;
  1230. cursor: pointer;
  1231. }
  1232. .chapter_upload_down {
  1233. background-image: url("../../../../assets/icon/down.png");
  1234. width: 17px;
  1235. height: 15px;
  1236. margin: 2px auto 0 auto;
  1237. background-size: 100% 100%;
  1238. cursor: pointer;
  1239. }
  1240. .chapter_upload_l {
  1241. padding: 1px 0 0 10px;
  1242. }
  1243. .first {
  1244. border: none;
  1245. outline: none;
  1246. width: 80%;
  1247. min-width: 215px;
  1248. z-index: 99;
  1249. font-size: 14px;
  1250. white-space: nowrap;
  1251. overflow: hidden;
  1252. text-overflow: ellipsis;
  1253. }
  1254. .info_btn {
  1255. color: #fff;
  1256. background-color: #0f7eff;
  1257. padding: 8px 24px;
  1258. font-size: 0.9375rem;
  1259. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  1260. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  1261. min-width: 64px;
  1262. font-weight: 500;
  1263. border-radius: 4px;
  1264. box-sizing: border-box;
  1265. border: none;
  1266. cursor: pointer;
  1267. }
  1268. .info_btn:hover {
  1269. background-color: #4f7cd5 !important;
  1270. }
  1271. .hdName {
  1272. font-size: 22px;
  1273. color: #407eef;
  1274. min-width: 90px;
  1275. margin: 0 10px;
  1276. }
  1277. .lineBox {
  1278. display: flex;
  1279. margin: 0 0 20px 0;
  1280. flex-direction: row;
  1281. justify-content: flex-start;
  1282. align-items: center;
  1283. }
  1284. .lineTitle,
  1285. .lineTitleTwo {
  1286. margin-top: 15px;
  1287. width: 110px;
  1288. }
  1289. .lineTitle {
  1290. color: #407eef;
  1291. font-size: 22px;
  1292. }
  1293. .strLine {
  1294. width: 85%;
  1295. margin: 0 auto;
  1296. border-top: 1px solid #e5e5e5;
  1297. margin-top: 20px;
  1298. }
  1299. .addTaskBorder {
  1300. border: 2px solid #e1e1e1;
  1301. border-radius: 10px;
  1302. width: 90%;
  1303. margin: 20px 0 20px 20px;
  1304. cursor: pointer;
  1305. }
  1306. .addTaskBorder > div {
  1307. margin: 0 auto;
  1308. display: flex;
  1309. align-items: center;
  1310. justify-content: center;
  1311. }
  1312. .addTaskBorder > div > img {
  1313. width: 80px;
  1314. }
  1315. .addTaskBorder > div > span {
  1316. font-size: 23px;
  1317. color: #dbdbdb;
  1318. }
  1319. .remove {
  1320. background-image: url(../../../../assets/remove.png);
  1321. cursor: pointer;
  1322. opacity: 0.5;
  1323. width: 40px;
  1324. height: 50px;
  1325. background-repeat: no-repeat;
  1326. background-position: 5px 10px;
  1327. }
  1328. .stepBg .steps::after {
  1329. content: "";
  1330. height: 100%;
  1331. background: #eee;
  1332. width: 4px;
  1333. position: absolute;
  1334. left: 15px;
  1335. top: calc(50% + (35px / 2));
  1336. transform: translateY(-50%);
  1337. z-index: 1;
  1338. }
  1339. .mask {
  1340. background-color: rgb(0 0 0 / 30%);
  1341. /* position: fixed; */
  1342. position: absolute;
  1343. top: 0;
  1344. left: 0;
  1345. width: 100%;
  1346. height: 100%;
  1347. z-index: 20000;
  1348. display: flex;
  1349. align-items: center;
  1350. justify-content: center;
  1351. }
  1352. .progressBox {
  1353. width: 300px;
  1354. height: 150px;
  1355. background: #fff;
  1356. border-radius: 10px;
  1357. box-shadow: 0 0 6px 1px #bfbfbf;
  1358. display: flex;
  1359. align-items: center;
  1360. justify-content: center;
  1361. flex-direction: column;
  1362. }
  1363. .progressBox .lbox {
  1364. height: 100px;
  1365. font-size: 16px;
  1366. display: flex;
  1367. align-items: center;
  1368. }
  1369. .progressBox .lbox img {
  1370. width: 40px;
  1371. margin-right: 20px;
  1372. }
  1373. .progressBox >>> .el-progress-bar__outer {
  1374. background-color: #d1dfff !important;
  1375. }
  1376. .progressBox .lbox {
  1377. height: 100px;
  1378. font-size: 19px;
  1379. display: flex;
  1380. align-items: center;
  1381. }
  1382. .progressBox .lbox img {
  1383. width: 40px;
  1384. margin-right: 20px;
  1385. }
  1386. .jdTop {
  1387. display: flex;
  1388. flex-direction: row;
  1389. flex-wrap: nowrap;
  1390. align-items: center;
  1391. justify-content: flex-start;
  1392. padding: 20px 0 0 25px;
  1393. position: relative;
  1394. width: 90%;
  1395. }
  1396. .jdTopFirst {
  1397. display: flex;
  1398. flex-direction: row;
  1399. flex-wrap: nowrap;
  1400. align-items: center;
  1401. }
  1402. .jdTop > .jdTopFirst:nth-child(2) {
  1403. padding-left: 20%;
  1404. }
  1405. .jdTop > .jdTopFirst:nth-child(2) > div:nth-child(1) {
  1406. min-width: 60px;
  1407. }
  1408. .jdTopFirst > input {
  1409. width: 200px;
  1410. height: 25px;
  1411. }
  1412. .firstTop {
  1413. display: flex;
  1414. flex-direction: row;
  1415. flex-wrap: nowrap;
  1416. align-items: center;
  1417. width: 90%;
  1418. }
  1419. .rightNav {
  1420. width: 87%;
  1421. margin-left: 15px;
  1422. }
  1423. .right_title {
  1424. height: 30px;
  1425. font-size: 1.5em;
  1426. font-weight: bold;
  1427. color: #0f7eff;
  1428. width: 100px;
  1429. }
  1430. .rwInput {
  1431. width: 58%;
  1432. }
  1433. .rwInput >>> .el-input__inner,
  1434. .jdInput >>> .el-input__inner {
  1435. font-size: 16px;
  1436. }
  1437. .rwKs {
  1438. display: flex;
  1439. flex-direction: row;
  1440. flex-wrap: nowrap;
  1441. align-items: center;
  1442. margin-left: 10px;
  1443. }
  1444. </style>