projectEffect.vue 16 KB

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