projectEffect.vue 17 KB

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