projectActpro.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949
  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 raceAct.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.brief != ''">
  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 raceAct.stageBox"
  30. :key="saIndex"
  31. :id="'jd' + saIndex + 1"
  32. >
  33. <div class="right_title">阶段{{ saIndex + 1 }}</div>
  34. <div class="saBox">
  35. <div class="saLittleBox">
  36. <div style="position: relative">
  37. <editor-bar
  38. v-model="sa.brief"
  39. @change="upRaceAct"
  40. ></editor-bar>
  41. <div
  42. class="fullCss"
  43. @click="fullTools(sa.brief, 1, '', saIndex)"
  44. >
  45. 全屏编辑
  46. </div>
  47. </div>
  48. <div>
  49. <div class="basic_box">
  50. <div>
  51. <div
  52. class="add_chapters_box"
  53. v-if="sa.data && sa.data.length == 0"
  54. ></div>
  55. <div
  56. v-else
  57. class="add_chapters_box"
  58. style="display: flex; flex-direction: column"
  59. >
  60. <transition-group tag="div">
  61. <div
  62. class="chapter_upload"
  63. v-for="(item, index) in sa.data"
  64. :key="item.id"
  65. draggable="true"
  66. @dragstart="handleDragStart($event, item)"
  67. @dragover.prevent="handleDragOver($event, item)"
  68. @dragenter="handleDragEnter($event, item)"
  69. @dragend="handleDragEnd($event, item, saIndex)"
  70. >
  71. <div class="chapter_upload_t"></div>
  72. <div class="chapter_upload_o">
  73. <div class="chapter_upload_l">
  74. <div
  75. v-if="item.type == 2"
  76. class="chapter_upload_l_i1"
  77. ></div>
  78. <div
  79. v-if="item.type == 1 || item.type == 3"
  80. class="chapter_upload_l_i5"
  81. ></div>
  82. </div>
  83. <div class="chapter_upload_ic">
  84. <div class="chapter_upload_ic_l"></div>
  85. <div
  86. class="chapter_upload_ic_r"
  87. @click.stop="
  88. deleteChapterData($event, saIndex, index)
  89. "
  90. >
  91. <div></div>
  92. </div>
  93. </div>
  94. <div class="chapter_upload_n">
  95. <input
  96. class="first"
  97. v-if="item.type == 1 || item.type == 3"
  98. :placeholder="item.name"
  99. />
  100. <input
  101. class="first"
  102. v-if="item.type == 2"
  103. :placeholder="item.name"
  104. />
  105. <div class="chapter_upload_ud">
  106. <div
  107. class="chapter_upload_up"
  108. @click="upCd($event, saIndex, index)"
  109. ></div>
  110. <div
  111. class="chapter_upload_down"
  112. @click="downCd($event, saIndex, index)"
  113. ></div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </transition-group>
  119. </div>
  120. </div>
  121. <div class="add_info_box">
  122. <div class="upTips">
  123. <button class="info_btn" @click="addImg($event)">
  124. 上传附件
  125. <input
  126. type="file"
  127. 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/*"
  128. style="display: none"
  129. @change="beforeUpload($event, null, saIndex)"
  130. />
  131. </button>
  132. <div>
  133. 上传文件PPT、Word限制为10M,Excel、PDF上传限制为5M,其他文件不限制大小。
  134. </div>
  135. </div>
  136. </div>
  137. <div v-if="sa.data.proVisible" class="mask">
  138. <div class="progressBox">
  139. <!-- <div :id="'closePro' + saIndex" class="closeCss">
  140. <img
  141. src="../../../../assets/icon/proClose.png"
  142. alt=""
  143. />
  144. </div> -->
  145. <div class="lbox">
  146. <img
  147. src="../../../../assets/loading.gif"
  148. />上传中,请稍后
  149. </div>
  150. <div>
  151. <div>
  152. {{ sa.data.isFinishSize }}M /
  153. {{ sa.data.isAllSize ? sa.data.isAllSize : 0 }}M
  154. </div>
  155. </div>
  156. <el-progress
  157. :text-inside="true"
  158. :stroke-width="20"
  159. :percentage="sa.data.progress ? sa.data.progress : 0"
  160. style="width: 80%"
  161. ></el-progress>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. </div>
  171. </div>
  172. <el-dialog
  173. title="编辑富文本"
  174. :visible.sync="full"
  175. :append-to-body="true"
  176. width="100%"
  177. :before-close="handleClose"
  178. class="dialog_diy fullEditor"
  179. >
  180. <editor-bar v-model="fullBrief" :placeholder="plaText"></editor-bar>
  181. <span slot="footer" class="dialog-footer">
  182. <el-button @click="full = false">取 消</el-button>
  183. <el-button type="primary" @click="addFullText">确定</el-button>
  184. </span>
  185. </el-dialog>
  186. </div>
  187. </template>
  188. <script>
  189. import EditorBar from "../../../tools/wangEnduit";
  190. export default {
  191. components: { EditorBar },
  192. props: ["raceProcess"],
  193. data() {
  194. return {
  195. raceAct: {
  196. stageBox: [
  197. {
  198. staTitle: "",
  199. allTime: "",
  200. brief: "",
  201. data: [],
  202. actBox: [
  203. {
  204. actName: "",
  205. actTime: "",
  206. driQuestion: { brief: "", data: [] },
  207. tarDesign: { brief: "", data: [] },
  208. actiDesign: { brief: "", data: [] },
  209. evaDesign: { brief: "", data: [] },
  210. },
  211. ],
  212. },
  213. ],
  214. },
  215. fullBrief: "",
  216. plaText: "",
  217. isBrief: 0,
  218. full: false,
  219. jdIndex: 0,
  220. stage: 0,
  221. ending: null,
  222. dragging: null,
  223. };
  224. },
  225. methods: {
  226. upRaceAct() {
  227. this.$emit("upRaceAct", this.raceAct);
  228. },
  229. handleClose(done) {
  230. done();
  231. },
  232. handleDragStart(e, item) {
  233. this.dragging = item;
  234. },
  235. handleDragEnd(e, item, i) {
  236. if (this.ending.id === this.dragging.id) {
  237. return;
  238. }
  239. let newItems = [...this.raceAct.stageBox[i].data];
  240. const src = newItems.indexOf(this.dragging);
  241. const dst = newItems.indexOf(this.ending);
  242. newItems.splice(src, 1, ...newItems.splice(dst, 1, newItems[src]));
  243. console.log(newItems);
  244. this.raceAct.stageBox[i].data = newItems;
  245. this.$nextTick(() => {
  246. this.dragging = null;
  247. this.ending = null;
  248. });
  249. },
  250. handleDragOver(e) {
  251. // 首先把div变成可以放置的元素,即重写dragenter/dragover
  252. // 在dragenter中针对放置目标来设置
  253. e.dataTransfer.dropEffect = "move";
  254. },
  255. handleDragEnter(e, item) {
  256. // 为需要移动的元素设置dragstart事件
  257. e.dataTransfer.effectAllowed = "move";
  258. this.ending = item;
  259. },
  260. addImg(e) {
  261. var el = e.currentTarget;
  262. el.getElementsByTagName("input")[0].click();
  263. e.target.value = "";
  264. },
  265. jump(t) {
  266. var a = document.getElementById(t);
  267. var b = document.getElementsByClassName("right")[0];
  268. b.scrollTop = a.offsetTop;
  269. },
  270. imgChange(file, fileList, type, sindex) {
  271. var _tmp = this.raceAct.stageBox[sindex].data;
  272. this.noneBtnImg = _tmp.length >= 1;
  273. },
  274. deleteChapterData(e, si, i) {
  275. e.stopPropagation();
  276. this.raceAct.stageBox[si].data.splice(i, 1);
  277. this.upRaceAct();
  278. },
  279. beforeUpload(event, type, sindex) {
  280. var file = event.target.files[0];
  281. var credentials = {
  282. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  283. secretAccessKey: "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",
  284. }; //秘钥形式的登录上传
  285. window.AWS.config.update(credentials);
  286. window.AWS.config.region = "cn-northwest-1"; //设置区域
  287. var type1 = type;
  288. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  289. var _this = this;
  290. var b = [
  291. "DOC",
  292. "DOCX",
  293. "DOCM",
  294. "DOTM",
  295. "DOTX",
  296. "PPTX",
  297. "PPSX",
  298. "PPT",
  299. "PPS",
  300. "PPTM",
  301. "POTM",
  302. "PPAM",
  303. "POTX",
  304. "PPSM",
  305. ];
  306. var c = ["PDF", "DOT", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  307. var d = [
  308. "BMP",
  309. "PJP",
  310. "APNG",
  311. "PNG",
  312. "JPG",
  313. "GIF",
  314. "SVG",
  315. "JPEG",
  316. "JPG",
  317. "ICO",
  318. "PGPEG",
  319. "AVIF",
  320. ];
  321. if (
  322. b.indexOf(
  323. file.name
  324. .split(".")
  325. [file.name.split(".").length - 1].toLocaleUpperCase()
  326. ) != -1
  327. ) {
  328. if (file.size / 1024 / 1024 > 10) {
  329. this.$message.error("上传文件大于10M,请重新选择文件!");
  330. return;
  331. }
  332. } else if (
  333. c.indexOf(
  334. file.name
  335. .split(".")
  336. [file.name.split(".").length - 1].toLocaleUpperCase()
  337. ) != -1
  338. ) {
  339. if (file.size / 1024 / 1024 > 5) {
  340. this.$message.error("添加的上传文件大于5M,请重新选择文件!");
  341. return;
  342. }
  343. } else if (
  344. file.name
  345. .split(".")
  346. [file.name.split(".").length - 1].toLocaleUpperCase() == "MP4" ||
  347. file.name
  348. .split(".")
  349. [file.name.split(".").length - 1].toLocaleUpperCase() == "M4V"
  350. ) {
  351. if (file.size / 1024 / 1024 > 760) {
  352. this.$message.error("添加的上传文件大于760M,请重新选择文件!");
  353. return;
  354. }
  355. }
  356. if (
  357. c.indexOf(
  358. file.name
  359. .split(".")
  360. [file.name.split(".").length - 1].toLocaleUpperCase()
  361. ) != -1
  362. ) {
  363. type1 = 1;
  364. } else if (
  365. d.indexOf(
  366. file.name
  367. .split(".")
  368. [file.name.split(".").length - 1].toLocaleUpperCase()
  369. ) != -1
  370. ) {
  371. type1 = 3;
  372. } else {
  373. type1 = 2;
  374. }
  375. _this.raceAct.stageBox[sindex].data.progress = 0;
  376. _this.raceAct.stageBox[sindex].data.proVisible = true;
  377. _this.raceAct.stageBox[sindex].data.isFinishSize = 0;
  378. _this.raceAct.stageBox[sindex].data.isAllSize = 0;
  379. var a = (file.size / 1024 / 1024).toFixed(2);
  380. _this.raceAct.stageBox[sindex].data.isAllSize = a - 0;
  381. _this.$forceUpdate();
  382. if (file) {
  383. var params = {
  384. Key:
  385. file.name.split(".")[0] +
  386. new Date().getTime() +
  387. "." +
  388. file.name.split(".")[file.name.split(".").length - 1],
  389. ContentType: file.type,
  390. Body: file,
  391. "Access-Control-Allow-Credentials": "*",
  392. ACL: "public-read",
  393. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  394. var options = {
  395. partSize: 2048 * 1024 * 1024,
  396. queueSize: 2,
  397. leavePartsOnError: true,
  398. };
  399. bucket
  400. .upload(params, options)
  401. .on("httpUploadProgress", function (evt) {
  402. //这里可以写进度条
  403. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  404. _this.raceAct.stageBox[sindex].data.isFinishSize = (
  405. evt.loaded /
  406. 1024 /
  407. 1024
  408. ).toFixed(2);
  409. _this.raceAct.stageBox[sindex].data.progress = parseInt(
  410. (evt.loaded / evt.total) * 100
  411. );
  412. _this.$forceUpdate();
  413. })
  414. .send(function (err, data) {
  415. _this.raceAct.stageBox[sindex].data.progress = 100;
  416. _this.raceAct.stageBox[sindex].data.isFinishSize = _this.raceAct.stageBox[sindex].data.isAllSize;
  417. _this.$forceUpdate();
  418. setTimeout(() => {
  419. _this.raceAct.stageBox[sindex].data.proVisible = false;
  420. _this.$forceUpdate();
  421. }, 1000);
  422. if (err) {
  423. _this.$message.error("上传失败");
  424. } else {
  425. _this.raceAct.stageBox[sindex].data.push({
  426. name: file.name,
  427. url: data.Location,
  428. type: type1,
  429. id: "data" + _this.raceAct.stageBox[sindex].data.length,
  430. });
  431. _this.imgChange(null, null, type1, sindex);
  432. _this.upRaceAct();
  433. console.log(data.Location);
  434. }
  435. });
  436. }
  437. },
  438. fullTools(b, t, text, i) {
  439. this.fullBrief = b;
  440. this.isBrief = t;
  441. this.plaText = text;
  442. this.jdIndex = i;
  443. this.full = !this.full;
  444. },
  445. addFullText() {
  446. if (this.isBrief == 1) {
  447. this.raceAct.stageBox[this.jdIndex].brief = this.fullBrief;
  448. } else if (this.isBrief == 2) {
  449. this.raceAct.stageBox[this.jdIndex].brief = this.fullBrief;
  450. } else if (this.isBrief == 3) {
  451. this.raceAct.stageBox[this.jdIndex].brief = this.fullBrief;
  452. } else if (this.isBrief == 4) {
  453. this.raceAct.stageBox[this.jdIndex].brief = this.fullBrief;
  454. }
  455. this.isBrief = 0;
  456. this.fullBrief = "";
  457. this.plaText = "";
  458. this.jdIndex = 0;
  459. this.full = !this.full;
  460. this.upRaceAct();
  461. },
  462. upCd(e, i, j) {
  463. e.stopPropagation();
  464. if (j == 0) {
  465. return;
  466. }
  467. var a = this.raceProcess.stageBox[i].data[j - 1];
  468. this.raceProcess.stageBox[i].data[j - 1] =
  469. this.raceProcess.stageBox[i].data[j];
  470. this.raceProcess.stageBox[i].data[j] = a;
  471. this.$forceUpdate();
  472. },
  473. downCd(e, i, j) {
  474. e.stopPropagation();
  475. if (j == this.raceProcess.stageBox[i].data.length - 1) {
  476. return;
  477. }
  478. var a = this.raceProcess.stageBox[i].data[j + 1];
  479. this.raceProcess.stageBox[i].data[j + 1] =
  480. this.raceProcess.stageBox[i].data[j];
  481. this.raceProcess.stageBox[i].data[j] = a;
  482. this.$forceUpdate();
  483. },
  484. },
  485. created() {
  486. this.raceAct = this.raceProcess;
  487. },
  488. };
  489. </script>
  490. <style scoped>
  491. @media screen and (max-width: 1280px) {
  492. .right_title {
  493. padding: 20px 0 20px 10px !important;
  494. }
  495. .saLittleBox {
  496. padding: 20px 0 10px 10px !important;
  497. }
  498. .upTips {
  499. align-items: flex-start !important;
  500. }
  501. .fullCss {
  502. right: 1% !important;
  503. }
  504. .fullEditor >>> .el-dialog__footer {
  505. padding: 4% 20px 20px !important;
  506. }
  507. }
  508. .dialog_diy >>> .el-dialog__header {
  509. background: #3c3c3c !important;
  510. padding: 15px 20px;
  511. }
  512. .dialog_diy >>> .el-dialog__title {
  513. color: #fff;
  514. }
  515. .pb_content {
  516. width: 100%;
  517. height: 100%;
  518. }
  519. .race_content_body {
  520. width: 100%;
  521. position: relative;
  522. margin: 0;
  523. height: 100%;
  524. }
  525. .raceBox {
  526. width: 100%;
  527. height: 100%;
  528. display: flex;
  529. flex-direction: row;
  530. flex-wrap: nowrap;
  531. align-items: flex-start;
  532. }
  533. .stepBg {
  534. font-size: 16px;
  535. padding: 80px 0 0 0;
  536. margin: 0 25px 0 0;
  537. width: 15%;
  538. display: flex;
  539. justify-content: flex-start;
  540. align-items: center;
  541. flex-wrap: nowrap;
  542. background: #fff;
  543. /* min-height: 800px; */
  544. height: calc(100% - 80px);
  545. border-radius: 15px;
  546. overflow: auto;
  547. min-width: 260px;
  548. flex-direction: column;
  549. }
  550. .steps {
  551. display: flex;
  552. flex-direction: row;
  553. flex-wrap: nowrap;
  554. position: relative;
  555. width: 145px;
  556. max-height: 130px;
  557. margin-bottom: 10px;
  558. }
  559. .steps > div:nth-child(1) > img {
  560. z-index: 9;
  561. position: relative;
  562. }
  563. .stepRightNav {
  564. display: flex;
  565. flex-direction: column;
  566. flex-wrap: nowrap;
  567. justify-content: space-between;
  568. align-items: flex-start;
  569. margin: 10px 0 0 10px;
  570. cursor: pointer;
  571. }
  572. .stepRightNav > div {
  573. margin-bottom: 5px;
  574. }
  575. .stepRightNav > div:nth-child(2) {
  576. width: 130px;
  577. max-height: 63px;
  578. display: -webkit-box;
  579. overflow: hidden;
  580. white-space: normal !important;
  581. text-overflow: ellipsis;
  582. word-wrap: break-word;
  583. -webkit-line-clamp: 3;
  584. -webkit-box-orient: vertical;
  585. }
  586. .stepRightNav:hover {
  587. color: #999;
  588. }
  589. .stepBg .steps::after {
  590. content: "";
  591. height: 100%;
  592. background: #eee;
  593. width: 4px;
  594. position: absolute;
  595. left: 15px;
  596. top: calc(50% + (35px / 2));
  597. transform: translateY(-50%);
  598. z-index: 1;
  599. }
  600. .right {
  601. width: 100%;
  602. background: rgb(255, 255, 255);
  603. border-radius: 10px;
  604. overflow: auto;
  605. height: 100%;
  606. border-radius: 15px;
  607. overflow-x: hidden;
  608. /* max-height: 800px; */
  609. }
  610. .basic_box {
  611. position: relative;
  612. margin: 0;
  613. min-height: 0;
  614. width: 94.5%;
  615. }
  616. .add_info_box {
  617. margin: 20px 0;
  618. }
  619. .add_info_box button {
  620. margin: 0 10px 10px 0;
  621. }
  622. .add_chapters_box {
  623. text-align: left;
  624. background-color: rgb(232 234 237);
  625. width: 100%;
  626. padding: 0px 15px;
  627. border-radius: 15px;
  628. font-size: 16px;
  629. box-sizing: border-box;
  630. position: relative;
  631. padding: 0 10px 5px 10px;
  632. height: 125px;
  633. overflow-y: auto;
  634. overflow-x: hidden;
  635. }
  636. .chapter_upload {
  637. height: 50px;
  638. margin-top: 8px;
  639. position: relative;
  640. display: flex;
  641. align-items: center;
  642. width: 100%;
  643. min-height: 50px;
  644. transition: all linear 0.3s;
  645. }
  646. .chapter_upload_t {
  647. background-color: #fff;
  648. position: absolute;
  649. height: 100%;
  650. top: 0px;
  651. left: 0px;
  652. border-radius: 40px;
  653. box-sizing: border-box;
  654. box-shadow: 0 0 3px 3px #dfdfdf;
  655. width: 100%;
  656. }
  657. .chapter_upload_o {
  658. width: 100%;
  659. height: 100%;
  660. position: relative;
  661. z-index: 1;
  662. display: flex;
  663. align-items: center;
  664. }
  665. .chapter_upload_ic {
  666. height: 30px;
  667. float: right;
  668. cursor: pointer;
  669. position: absolute;
  670. width: 45px;
  671. right: 0;
  672. top: 0;
  673. }
  674. .chapter_upload_ic_l {
  675. width: 50px;
  676. height: 50px;
  677. float: left;
  678. }
  679. .chapter_upload_ic_l div {
  680. width: 30px;
  681. height: 35px;
  682. background: url("../../../../assets/icon/icon.png");
  683. }
  684. .chapter_upload_ic_r {
  685. width: 50px;
  686. height: 50px;
  687. float: left;
  688. margin-left: 0px;
  689. display: flex;
  690. align-items: center;
  691. position: absolute;
  692. }
  693. .chapter_upload_ic_r div {
  694. width: 25px;
  695. height: 25px;
  696. background-image: url("../../../../assets/delete.png");
  697. background-size: 100% 100%;
  698. }
  699. .chapter_upload_n {
  700. display: flex;
  701. text-indent: 10px;
  702. text-decoration: none;
  703. text-overflow: ellipsis;
  704. white-space: nowrap;
  705. overflow: hidden;
  706. width: 55%;
  707. margin-left: 10px;
  708. cursor: pointer;
  709. margin-top: 2px;
  710. }
  711. .chapter_upload_l_i1 {
  712. background-image: url("../../../../assets/icon/video.png");
  713. width: 28px;
  714. height: 28px;
  715. background-size: 100% 100%;
  716. }
  717. .chapter_upload_l_i5 {
  718. background-image: url("../../../../assets/icon/word.png");
  719. width: 24px;
  720. height: 24px;
  721. background-size: 100% 100%;
  722. margin-left: 1px;
  723. }
  724. .chapter_upload_l_i8 {
  725. background-image: url("../../../../assets/icon/line.png");
  726. width: 24px;
  727. height: 24px;
  728. background-size: 100% 100%;
  729. margin-left: 1px;
  730. }
  731. .chapter_upload_ud {
  732. display: flex;
  733. flex-direction: column;
  734. margin-left: 5px;
  735. justify-content: center;
  736. z-index: 99;
  737. }
  738. .chapter_upload_up {
  739. background-image: url("../../../../assets/icon/up.png");
  740. width: 17px;
  741. height: 15px;
  742. background-size: 100% 100%;
  743. cursor: pointer;
  744. }
  745. .chapter_upload_down {
  746. background-image: url("../../../../assets/icon/down.png");
  747. width: 17px;
  748. height: 15px;
  749. margin: 2px auto 0 auto;
  750. background-size: 100% 100%;
  751. cursor: pointer;
  752. }
  753. .chapter_upload_l {
  754. padding: 1px 0 0 10px;
  755. }
  756. .first {
  757. border: none;
  758. outline: none;
  759. width: 80%;
  760. min-width: 215px;
  761. z-index: 99;
  762. font-size: 14px;
  763. white-space: nowrap;
  764. overflow: hidden;
  765. text-overflow: ellipsis;
  766. }
  767. .info_btn {
  768. color: #fff;
  769. background-color: #0f7eff;
  770. padding: 8px 24px;
  771. font-size: 0.9375rem;
  772. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  773. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  774. min-width: 64px;
  775. font-weight: 500;
  776. border-radius: 4px;
  777. box-sizing: border-box;
  778. border: none;
  779. cursor: pointer;
  780. }
  781. .info_btn:hover {
  782. background-color: #4f7cd5 !important;
  783. }
  784. .mask {
  785. background-color: rgb(0 0 0 / 30%);
  786. /* position: fixed; */
  787. position: absolute;
  788. top: 0;
  789. left: 0;
  790. width: 100%;
  791. height: 100%;
  792. z-index: 20000;
  793. display: flex;
  794. align-items: center;
  795. justify-content: center;
  796. }
  797. .progressBox {
  798. width: 300px;
  799. height: 150px;
  800. background: #fff;
  801. border-radius: 10px;
  802. box-shadow: 0 0 6px 1px #bfbfbf;
  803. display: flex;
  804. align-items: center;
  805. justify-content: center;
  806. flex-direction: column;
  807. position: relative;
  808. }
  809. .progressBox >>> .el-progress-bar__outer {
  810. background-color: #d1dfff !important;
  811. }
  812. .progressBox .lbox {
  813. height: 60px;
  814. font-size: 19px;
  815. display: flex;
  816. align-items: center;
  817. color: #747474;
  818. }
  819. .progressBox .lbox img {
  820. width: 40px;
  821. margin-right: 20px;
  822. }
  823. .closeCss {
  824. position: absolute;
  825. top: 8px;
  826. right: 8px;
  827. cursor: pointer;
  828. width: 20px;
  829. height: 20px;
  830. }
  831. .closeCss > img {
  832. width: 100%;
  833. height: 100%;
  834. }
  835. .saBox {
  836. width: 96%;
  837. margin: 0 auto;
  838. background: #fbfbfb;
  839. border-radius: 10px;
  840. }
  841. .saLittleBox {
  842. width: 100%;
  843. padding: 25px 0 10px 25px;
  844. }
  845. .saLittleBox > div:nth-child(1) {
  846. width: 85%;
  847. }
  848. .saLittleBox > div:nth-child(2) {
  849. width: 90%;
  850. margin-top: 25px;
  851. }
  852. .right_title {
  853. height: 30px;
  854. font-size: 1.5em;
  855. font-weight: bold;
  856. color: #0f7eff;
  857. width: 80px;
  858. padding: 20px 0 20px 30px;
  859. }
  860. .isFinishCss {
  861. display: flex;
  862. flex-direction: row;
  863. flex-wrap: nowrap;
  864. align-items: flex-end;
  865. }
  866. .isFinishCss > div:nth-child(2) {
  867. margin-left: 5px;
  868. color: #939393;
  869. }
  870. .isFinish {
  871. width: 16px;
  872. height: 16px;
  873. margin-top: 5px;
  874. }
  875. .isFinish > img {
  876. width: 100%;
  877. height: 100%;
  878. }
  879. .upTips {
  880. display: flex;
  881. flex-direction: row;
  882. flex-wrap: nowrap;
  883. align-items: baseline;
  884. }
  885. .upTips > div {
  886. margin-left: 10px;
  887. color: #999;
  888. font-size: 14px;
  889. }
  890. .fullCss {
  891. font-size: 12px;
  892. position: absolute;
  893. right: 4%;
  894. top: 12px;
  895. cursor: pointer;
  896. }
  897. .fullEditor >>> .text {
  898. height: 100% !important;
  899. }
  900. .fullEditor >>> .el-dialog {
  901. margin: 0 !important;
  902. height: 100%;
  903. }
  904. .fullEditor >>> .el-dialog__body {
  905. height: 70%;
  906. }
  907. .fullEditor >>> .editor {
  908. height: 100%;
  909. }
  910. .fullEditor >>> .el-dialog__footer {
  911. padding: 2% 20px 20px !important;
  912. }
  913. </style>