projectProcess.vue 50 KB

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