projectActpro.vue 20 KB

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