projectActpro.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  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. .stepRightNav:hover{
  382. color: #999;
  383. }
  384. .stepBg .steps::after {
  385. content: "";
  386. height: 100%;
  387. background: #eee;
  388. width: 4px;
  389. position: absolute;
  390. left: 15px;
  391. top: calc(50% + (35px / 2));
  392. transform: translateY(-50%);
  393. z-index: 1;
  394. }
  395. .right {
  396. width: calc(100% - 20%);
  397. background: rgb(255, 255, 255);
  398. border-radius: 10px;
  399. overflow: auto;
  400. height: 100%;
  401. border-radius: 15px;
  402. overflow-x: hidden;
  403. /* max-height: 800px; */
  404. }
  405. .basic_box {
  406. position: relative;
  407. margin: 0;
  408. min-height: 0;
  409. width: 90%;
  410. }
  411. .add_info_box {
  412. margin: 20px 0;
  413. }
  414. .add_info_box button {
  415. margin: 0 10px 10px 0;
  416. }
  417. .add_chapters_box {
  418. text-align: left;
  419. background-color: rgb(232 234 237);
  420. width: 100%;
  421. padding: 0px 15px;
  422. border-radius: 15px;
  423. font-size: 16px;
  424. box-sizing: border-box;
  425. position: relative;
  426. padding: 0 10px 5px 10px;
  427. height: 140px;
  428. overflow-y: auto;
  429. overflow-x: hidden;
  430. }
  431. .chapter_upload {
  432. height: 50px;
  433. margin-top: 12px;
  434. position: relative;
  435. display: flex;
  436. align-items: center;
  437. width: 100%;
  438. min-height: 50px;
  439. }
  440. .chapter_upload_t {
  441. background-color: #fff;
  442. position: absolute;
  443. height: 100%;
  444. top: 0px;
  445. left: 0px;
  446. border-radius: 40px;
  447. box-sizing: border-box;
  448. box-shadow: 0 0 3px 3px #dfdfdf;
  449. width: 100%;
  450. }
  451. .chapter_upload_o {
  452. width: 100%;
  453. height: 100%;
  454. position: relative;
  455. z-index: 1;
  456. display: flex;
  457. align-items: center;
  458. }
  459. .chapter_upload_ic {
  460. height: 30px;
  461. float: right;
  462. cursor: pointer;
  463. position: absolute;
  464. width: 45px;
  465. right: 0;
  466. top: 0;
  467. }
  468. .chapter_upload_ic_l {
  469. width: 50px;
  470. height: 50px;
  471. float: left;
  472. }
  473. .chapter_upload_ic_l div {
  474. width: 30px;
  475. height: 35px;
  476. background: url("../../../../assets/icon/icon.png");
  477. }
  478. .chapter_upload_ic_r {
  479. width: 50px;
  480. height: 50px;
  481. float: left;
  482. margin-left: 0px;
  483. display: flex;
  484. align-items: center;
  485. position: absolute;
  486. }
  487. .chapter_upload_ic_r div {
  488. width: 25px;
  489. height: 25px;
  490. background-image: url("../../../../assets/delete.png");
  491. background-size: 100% 100%;
  492. }
  493. .chapter_upload_n {
  494. display: flex;
  495. text-indent: 10px;
  496. text-decoration: none;
  497. text-overflow: ellipsis;
  498. white-space: nowrap;
  499. overflow: hidden;
  500. width: 55%;
  501. margin-left: 10px;
  502. cursor: pointer;
  503. margin-top: 2px;
  504. }
  505. .chapter_upload_l_i1 {
  506. background-image: url("../../../../assets/icon/video.png");
  507. width: 28px;
  508. height: 28px;
  509. background-size: 100% 100%;
  510. }
  511. .chapter_upload_l_i5 {
  512. background-image: url("../../../../assets/icon/word.png");
  513. width: 24px;
  514. height: 24px;
  515. background-size: 100% 100%;
  516. margin-left: 1px;
  517. }
  518. .chapter_upload_l_i8 {
  519. background-image: url("../../../../assets/icon/line.png");
  520. width: 24px;
  521. height: 24px;
  522. background-size: 100% 100%;
  523. margin-left: 1px;
  524. }
  525. .chapter_upload_ud {
  526. display: flex;
  527. flex-direction: column;
  528. margin-left: 5px;
  529. justify-content: center;
  530. z-index: 99;
  531. }
  532. .chapter_upload_up {
  533. background-image: url("../../../../assets/icon/up.png");
  534. width: 17px;
  535. height: 15px;
  536. background-size: 100% 100%;
  537. cursor: pointer;
  538. }
  539. .chapter_upload_down {
  540. background-image: url("../../../../assets/icon/down.png");
  541. width: 17px;
  542. height: 15px;
  543. margin: 2px auto 0 auto;
  544. background-size: 100% 100%;
  545. cursor: pointer;
  546. }
  547. .chapter_upload_l {
  548. padding: 1px 0 0 10px;
  549. }
  550. .first {
  551. border: none;
  552. outline: none;
  553. width: 80%;
  554. min-width: 215px;
  555. z-index: 99;
  556. font-size: 14px;
  557. white-space: nowrap;
  558. overflow: hidden;
  559. text-overflow: ellipsis;
  560. }
  561. .info_btn {
  562. color: #fff;
  563. background-color: #0f7eff;
  564. padding: 8px 24px;
  565. font-size: 0.9375rem;
  566. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  567. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  568. min-width: 64px;
  569. font-weight: 500;
  570. border-radius: 4px;
  571. box-sizing: border-box;
  572. border: none;
  573. cursor: pointer;
  574. }
  575. .info_btn:hover {
  576. background-color: #4f7cd5 !important;
  577. }
  578. .mask {
  579. background-color: rgb(0 0 0 / 30%);
  580. /* position: fixed; */
  581. position: absolute;
  582. top: 0;
  583. left: 0;
  584. width: 100%;
  585. height: 100%;
  586. z-index: 20000;
  587. display: flex;
  588. align-items: center;
  589. justify-content: center;
  590. }
  591. .progressBox {
  592. width: 300px;
  593. height: 150px;
  594. background: #fff;
  595. border-radius: 10px;
  596. box-shadow: 0 0 6px 1px #bfbfbf;
  597. display: flex;
  598. align-items: center;
  599. justify-content: center;
  600. flex-direction: column;
  601. }
  602. .progressBox .lbox {
  603. height: 100px;
  604. font-size: 16px;
  605. display: flex;
  606. align-items: center;
  607. }
  608. .progressBox .lbox img {
  609. width: 40px;
  610. margin-right: 20px;
  611. }
  612. .progressBox >>> .el-progress-bar__outer {
  613. background-color: #d1dfff !important;
  614. }
  615. .progressBox .lbox {
  616. height: 100px;
  617. font-size: 19px;
  618. display: flex;
  619. align-items: center;
  620. }
  621. .progressBox .lbox img {
  622. width: 40px;
  623. margin-right: 20px;
  624. }
  625. .saBox {
  626. width: 96%;
  627. margin: 0 auto;
  628. background: #fbfbfb;
  629. border-radius: 10px;
  630. }
  631. .saLittleBox {
  632. width: 100%;
  633. padding: 25px 0 10px 25px;
  634. }
  635. .saLittleBox > div:nth-child(1) {
  636. width: 85%;
  637. }
  638. .saLittleBox > div:nth-child(2) {
  639. width: 90%;
  640. margin-top: 25px;
  641. }
  642. .right_title {
  643. height: 30px;
  644. font-size: 1.5em;
  645. font-weight: bold;
  646. color: #0f7eff;
  647. width: 80px;
  648. padding: 20px 0 20px 30px;
  649. }
  650. </style>