projectActpro.vue 16 KB

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