projectEffect.vue 16 KB

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