addRace.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <div style="height: 100%; width: 100%; overflow: hidden">
  3. <div class="race_nav">
  4. <div class="first" @click="checkSteps(1)" :class="{ active: steps == 1 }">
  5. <div class="navImg">
  6. <img src="../../../assets/icon/anliDetail/first.png" alt="" />
  7. </div>
  8. <div>项目基础信息</div>
  9. </div>
  10. <div class="first" @click="checkSteps(2)" :class="{ active: steps == 2 }">
  11. <div class="navImg">
  12. <img src="../../../assets/icon/anliDetail/second.png" alt="" />
  13. </div>
  14. <div>项目概况</div>
  15. </div>
  16. <div class="first" @click="checkSteps(3)" :class="{ active: steps == 3 }">
  17. <div class="navImg">
  18. <img src="../../../assets/icon/anliDetail/third.png" alt="" />
  19. </div>
  20. <div>项目安排</div>
  21. </div>
  22. <div class="first" @click="checkSteps(4)" :class="{ active: steps == 4 }">
  23. <div class="navImg">
  24. <img src="../../../assets/icon/anliDetail/fouth.png" alt="" />
  25. </div>
  26. <div>项目活动过程</div>
  27. </div>
  28. <div class="first" @click="checkSteps(5)" :class="{ active: steps == 5 }">
  29. <div class="navImg">
  30. <img src="../../../assets/icon/anliDetail/five.png" alt="" />
  31. </div>
  32. <div>项目成果交流与评价</div>
  33. </div>
  34. <div class="first" @click="checkSteps(6)" :class="{ active: steps == 6 }">
  35. <div class="navImg">
  36. <img src="../../../assets/icon/anliDetail/six.png" alt="" />
  37. </div>
  38. <div>项目成效与反思</div>
  39. </div>
  40. </div>
  41. <div class="race_body">
  42. <RaceDetail
  43. v-if="steps == 1"
  44. :raceInfo="raceInfo"
  45. @updateTitle="updateRaceInfoTitle"
  46. ></RaceDetail>
  47. <RaceOverview
  48. v-if="steps == 2"
  49. :raceOverView="raceOverView"
  50. @upRaceOver="updateRaceOver"
  51. ></RaceOverview>
  52. <ProjectProcess
  53. @upRacePro="updateRacePro"
  54. :raceProcess="raceProcess"
  55. v-if="steps == 3"
  56. ></ProjectProcess>
  57. <ProjectActpro
  58. @upRaceAct="updateRaceAct"
  59. :raceProcess="raceProcess"
  60. v-if="steps == 4"
  61. ></ProjectActpro>
  62. <ProjectExceva
  63. @upExc="updateProExc"
  64. :raceExceva="raceExceva"
  65. v-if="steps == 5"
  66. ></ProjectExceva>
  67. <ProjectEffect
  68. @upproEff="updateProEff"
  69. :raceEffect="raceEffect"
  70. v-if="steps == 6"
  71. ></ProjectEffect>
  72. </div>
  73. <div class="race_btn">
  74. <el-button type="primary" @click="isGoto">活动信息</el-button>
  75. <div
  76. style="
  77. display: flex;
  78. flex-direction: row;
  79. flex-wrap: nowrap;
  80. align-items: center;
  81. "
  82. >
  83. <el-button
  84. type="primary"
  85. @click="dialogVisible1 = true"
  86. v-if="steps == 2"
  87. >跳过</el-button
  88. >
  89. <el-button type="primary" @click="lastSteps" v-if="steps != 1"
  90. >上一步</el-button
  91. >
  92. <el-button type="primary" @click="nextSteps" v-if="steps != 6"
  93. >下一步</el-button
  94. >
  95. <el-button type="primary" @click="isAddOrUpRace(0)" v-if="steps == 6"
  96. >确认上传</el-button
  97. >
  98. </div>
  99. </div>
  100. <el-dialog
  101. title="提示"
  102. :visible.sync="dialogVisible"
  103. :append-to-body="true"
  104. width="650px"
  105. :before-close="handleClose"
  106. class="dialog_diy"
  107. >
  108. <div class="createBox">
  109. <div class="success">
  110. <img src="../../../assets/icon/success.png" alt="" />
  111. </div>
  112. <div class="cresteMessage">
  113. 案例征集必填内容已完成,请在
  114. <span>"活动管理 > 我的案例"中查看。</span> 你可以点击
  115. <span>"平台实施填报入口"</span> ,提交选填内容。<span
  116. style="color: #9a9a9a"
  117. >(填报后可以运用平台进行教学,调用平台工具,收集过程性数据并生成数据报告。)</span
  118. >
  119. </div>
  120. </div>
  121. <span slot="footer" class="dialog-footer">
  122. <el-button @click="dialogVisible = false">取 消</el-button>
  123. <el-button type="primary" @click="goTo('/eventCenter?steps=' + '2')"
  124. >确 定</el-button
  125. >
  126. </span>
  127. </el-dialog>
  128. <el-dialog
  129. title="提示"
  130. :visible.sync="dialogVisible1"
  131. :append-to-body="true"
  132. width="650px"
  133. :before-close="handleClose"
  134. class="dialog_diy"
  135. >
  136. <div class="createBox">
  137. <div class="success">
  138. <img src="../../../assets/icon/success.png" alt="" />
  139. </div>
  140. <div class="cresteMessage">
  141. 案例征集必填内容已提交,您确定要跳过网页端填写吗?
  142. <div style="color: #9a9a9a">
  143. 建议:网页端填写便于平台留存与展示,建议填写。
  144. </div>
  145. </div>
  146. </div>
  147. <span slot="footer" class="dialog-footer">
  148. <el-button type="primary" @click="isAddOrUpRace(1)"
  149. >跳过并提交</el-button
  150. >
  151. <el-button @click="dialogVisible1 = false">继续填写</el-button>
  152. </span>
  153. </el-dialog>
  154. <el-dialog
  155. title="提示"
  156. :visible.sync="dialogVisible2"
  157. :append-to-body="true"
  158. width="650px"
  159. :before-close="handleClose"
  160. class="dialog_diy"
  161. >
  162. <div class="createBox" style="align-items: center">
  163. <div class="success">
  164. <img src="../../../assets/icon/success.png" alt="" />
  165. </div>
  166. <div class="cresteMessage">
  167. 您当前所编辑的内容尚未保存,确定离开当前页码吗?
  168. </div>
  169. </div>
  170. <span slot="footer" class="dialog-footer">
  171. <el-button type="primary" @click="isAddOrUpRace(1)"
  172. >保存并离开</el-button
  173. >
  174. <el-button @click="dialogVisible2 = false">继续填写</el-button>
  175. </span>
  176. </el-dialog>
  177. </div>
  178. </template>
  179. <script>
  180. import RaceDetail from "./addRace/raceDetail.vue";
  181. import RaceOverview from "./addRace/raceOverview.vue";
  182. import ProjectProcess from "./addRace/projectProcess.vue";
  183. import ProjectActpro from "./addRace/projectActpro.vue";
  184. import ProjectExceva from "./addRace/projectExceva.vue";
  185. import ProjectEffect from "./addRace/projectEffect.vue";
  186. export default {
  187. components: {
  188. RaceDetail,
  189. RaceOverview,
  190. ProjectProcess,
  191. ProjectActpro,
  192. ProjectExceva,
  193. ProjectEffect,
  194. },
  195. data() {
  196. return {
  197. steps: 1,
  198. userid: this.$store.state.userInfo.userid,
  199. oid: this.$store.state.userInfo.school,
  200. aid: this.$route.query.aid ? this.$route.query.aid : "",
  201. dialogVisible: false,
  202. dialogVisible1: false,
  203. dialogVisible2:false,
  204. isJump: 0,
  205. raceInfo: {
  206. title: "",
  207. type: [],
  208. cover: [],
  209. autor: [],
  210. tableData: [],
  211. courseText: "",
  212. data: [],
  213. },
  214. raceOverView: {
  215. driQuestion: { brief: "", data: [] },
  216. tarDesign: { brief: "", data: [] },
  217. actiDesign: { brief: "", data: [] },
  218. },
  219. raceProcess: {
  220. stageBox: [
  221. {
  222. staTitle: "",
  223. allTime: "",
  224. brief: "",
  225. data: [],
  226. actBox: [
  227. {
  228. actName: "",
  229. actTime: "",
  230. driQuestion: { brief: "", data: [] },
  231. tarDesign: { brief: "", data: [] },
  232. actiDesign: { brief: "", data: [] },
  233. evaDesign: { brief: "", data: [] },
  234. },
  235. ],
  236. },
  237. ],
  238. },
  239. raceExceva: {
  240. brief: "",
  241. data: [],
  242. },
  243. raceEffect: {
  244. brief: "",
  245. data: [],
  246. },
  247. };
  248. },
  249. methods: {
  250. handleClose(done) {
  251. done();
  252. },
  253. goTo(path) {
  254. this.$router.push(path);
  255. },
  256. checkSteps(steps) {
  257. if (steps > 1) {
  258. if (this.raceInfo.title == "") {
  259. this.$message.error("标题不能为空");
  260. return;
  261. } else if (this.raceInfo.type.length == 0) {
  262. this.$message.error("课程分类不能为空");
  263. return;
  264. } else if (this.raceInfo.autor.length == 0) {
  265. this.$message.error("请添加联系人");
  266. return;
  267. } else if (this.raceInfo.tableData.length == 0) {
  268. this.$message.error("请添加协作者");
  269. return;
  270. } else if (this.raceInfo.courseText == "") {
  271. this.$message.error("请填写项目简介");
  272. return;
  273. } else if (this.raceInfo.data.length == 0) {
  274. this.$message.error("上传文件不能为空");
  275. return;
  276. } else {
  277. this.steps = steps;
  278. }
  279. } else {
  280. this.steps = steps;
  281. }
  282. },
  283. nextSteps() {
  284. if (this.steps == 1) {
  285. if (this.raceInfo.title == "") {
  286. this.$message.error("标题不能为空");
  287. return;
  288. } else if (this.raceInfo.type.length == 0) {
  289. this.$message.error("课程分类不能为空");
  290. return;
  291. } else if (this.raceInfo.autor.length == 0) {
  292. this.$message.error("请添加联系人");
  293. return;
  294. } else if (this.raceInfo.tableData.length == 0) {
  295. this.$message.error("请添加协作者");
  296. return;
  297. } else if (this.raceInfo.courseText == "") {
  298. this.$message.error("请填写项目简介");
  299. return;
  300. } else if (this.raceInfo.data.length == 0) {
  301. this.$message.error("上传文件不能为空");
  302. return;
  303. } else {
  304. this.dialogVisible1 = true;
  305. this.steps++;
  306. }
  307. } else {
  308. this.steps++;
  309. }
  310. // else if(2 <= this.steps < 6) {
  311. // this.dialogVisible1 = true;
  312. // this.steps++;
  313. // }
  314. this.isAddOrUpRace1(3);
  315. },
  316. lastSteps() {
  317. this.steps--;
  318. },
  319. goTo(path) {
  320. this.$router.push(path);
  321. },
  322. updateRaceInfoTitle(raceInfo) {
  323. this.raceInfo = raceInfo;
  324. },
  325. updateRaceOver(raceOver) {
  326. this.raceOverView = raceOver;
  327. },
  328. updateRacePro(racePro) {
  329. this.raceProcess = racePro;
  330. },
  331. updateRaceAct(raceAct) {
  332. this.raceProcess = raceAct;
  333. },
  334. updateProEff(raceEff) {
  335. this.raceEffect = raceEff;
  336. },
  337. updateProExc(raceExc) {
  338. this.raceExceva = raceExc;
  339. },
  340. isAddOrUpRace(t) {
  341. if (this.raceInfo.title == "") {
  342. this.$message.error("标题不能为空");
  343. return;
  344. } else if (this.raceInfo.type.length == 0) {
  345. this.$message.error("课程分类不能为空");
  346. return;
  347. } else if (this.raceInfo.tableData.length == 0) {
  348. this.$message.error("请添加作者");
  349. return;
  350. } else if (this.raceInfo.courseText == "") {
  351. this.$message.error("请填写项目简介");
  352. return;
  353. } else if (this.raceInfo.data.length == 0) {
  354. this.$message.error("上传文件不能为空");
  355. return;
  356. }
  357. this.isJump = t;
  358. if (this.aid == "" || this.aid == undefined) {
  359. this.addRace();
  360. } else {
  361. this.updateRace();
  362. }
  363. },
  364. isAddOrUpRace1(t) {
  365. this.isJump = t;
  366. if (this.aid == "" || this.aid == undefined) {
  367. this.addRace();
  368. } else {
  369. this.updateRace();
  370. }
  371. },
  372. addRace() {
  373. let params = [
  374. {
  375. uid: this.userid,
  376. info: JSON.stringify(this.raceInfo).replaceAll(/%/g, "%25"),
  377. over: JSON.stringify(this.raceOverView).replaceAll(/%/g, "%25"),
  378. pro: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  379. act: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  380. exc: JSON.stringify(this.raceExceva).replaceAll(/%/g, "%25"),
  381. courseType: JSON.stringify(this.raceInfo.type).replaceAll(
  382. /%/g,
  383. "%25"
  384. ),
  385. res: JSON.stringify(this.raceEffect).replaceAll(/%/g, "%25"),
  386. },
  387. ];
  388. this.ajax
  389. .post(this.$store.state.api + "addRace", params)
  390. .then((res) => {
  391. this.aid = res.data.courseId;
  392. if (this.isJump == 0) {
  393. this.$message({
  394. message: "新增成功",
  395. type: "success",
  396. });
  397. this.dialogVisible = true;
  398. } else if (this.isJump == 1) {
  399. this.$message({
  400. message: "新增成功",
  401. type: "success",
  402. });
  403. this.goTo("/eventCenter?steps=" + "2");
  404. this.dialogVisible1 = false;
  405. } else {
  406. console.log("下一步");
  407. }
  408. })
  409. .catch((err) => {
  410. this.$message.error("网络不佳");
  411. console.error(err);
  412. });
  413. },
  414. updateRace() {
  415. let params = [
  416. {
  417. id: this.aid,
  418. info: JSON.stringify(this.raceInfo).replaceAll(/%/g, "%25"),
  419. over: JSON.stringify(this.raceOverView).replaceAll(/%/g, "%25"),
  420. pro: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  421. act: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  422. exc: JSON.stringify(this.raceExceva).replaceAll(/%/g, "%25"),
  423. res: JSON.stringify(this.raceEffect).replaceAll(/%/g, "%25"),
  424. courseType: JSON.stringify(this.raceInfo.type).replaceAll(
  425. /%/g,
  426. "%25"
  427. ),
  428. uid: this.userid,
  429. },
  430. ];
  431. this.ajax
  432. .post(this.$store.state.api + "updateRace", params)
  433. .then((res) => {
  434. if (this.isJump == 0) {
  435. this.$message({
  436. message: "修改成功",
  437. type: "success",
  438. });
  439. this.dialogVisible = true;
  440. } else if (this.isJump == 1) {
  441. this.$message({
  442. message: "修改成功",
  443. type: "success",
  444. });
  445. this.goTo("/eventCenter?steps=" + "2");
  446. this.dialogVisible1 = false;
  447. } else {
  448. console.log("下一步");
  449. }
  450. })
  451. .catch((err) => {
  452. this.$message.error("网络不佳");
  453. console.error(err);
  454. });
  455. },
  456. selectAnLi() {
  457. if (this.aid != "") {
  458. let params = {
  459. id: this.aid,
  460. };
  461. this.ajax
  462. .get(this.$store.state.api + "selectRaceDetail", params)
  463. .then((res) => {
  464. if (res.data.length > 0) {
  465. this.raceInfo = JSON.parse(res.data[0][0].info);
  466. this.raceOverView = JSON.parse(res.data[0][0].overview);
  467. this.raceProcess = JSON.parse(res.data[0][0].process);
  468. this.raceExceva = JSON.parse(res.data[0][0].proexc);
  469. this.raceEffect = JSON.parse(res.data[0][0].results);
  470. }
  471. })
  472. .catch((err) => {
  473. console.error(err);
  474. });
  475. }
  476. },
  477. isGoto() {
  478. if (
  479. this.raceInfo.title != "" ||
  480. this.raceInfo.type.length > 0 ||
  481. this.raceInfo.cover.length > 0 ||
  482. this.raceInfo.tableData.length > 0 ||
  483. this.raceInfo.courseText != "" ||
  484. this.raceInfo.data.length > 0
  485. ) {
  486. this.dialogVisible2 = true;
  487. } else {
  488. this.goTo("/eventCenter?steps=" + "2");
  489. }
  490. },
  491. },
  492. created() {
  493. this.selectAnLi();
  494. },
  495. };
  496. </script>
  497. <style scoped>
  498. @media screen and (max-width: 1280px) {
  499. .first > div:nth-child(2) {
  500. width: 80px;
  501. white-space: nowrap;
  502. overflow: hidden;
  503. text-overflow: ellipsis;
  504. }
  505. }
  506. .dialog_diy >>> .el-dialog__header {
  507. background: #3c3c3c !important;
  508. padding: 15px 20px;
  509. }
  510. .dialog_diy >>> .el-dialog__title {
  511. color: #fff;
  512. }
  513. .race_nav {
  514. display: flex;
  515. align-items: center;
  516. justify-content: center;
  517. width: 90%;
  518. margin: 10px auto;
  519. background: #fff;
  520. border-radius: 10px;
  521. padding: 10px 0;
  522. }
  523. .race_nav span {
  524. border: 1px solid #929292;
  525. border-radius: 5px;
  526. padding: 10px 15px;
  527. cursor: pointer;
  528. color: #4988bf;
  529. }
  530. .race_nav span + span {
  531. margin-left: 10px;
  532. }
  533. .race_nav .active {
  534. background: #3d5ea1;
  535. }
  536. .race_body {
  537. display: flex;
  538. width: 90%;
  539. justify-content: center;
  540. margin: 0 auto;
  541. height: calc(100% - 175px);
  542. }
  543. .race_btn {
  544. width: 90%;
  545. margin: 0 auto;
  546. display: flex;
  547. justify-content: space-between;
  548. flex-direction: row;
  549. flex-wrap: nowrap;
  550. padding-top: 10px;
  551. }
  552. .race_btn > button {
  553. z-index: 9;
  554. }
  555. .createSuccessCss {
  556. position: fixed;
  557. right: 30%;
  558. top: 50%;
  559. width: 717px;
  560. height: 346px;
  561. z-index: 999;
  562. background: #fff;
  563. border-radius: 30px;
  564. overflow: hidden;
  565. transform: translateY(-50%);
  566. box-shadow: 0px 0 8px 0px #c5c5c5;
  567. }
  568. .createBox {
  569. padding: 0 10px 0 10px;
  570. display: flex;
  571. flex-direction: row;
  572. flex-wrap: nowrap;
  573. align-items: flex-start;
  574. }
  575. .success {
  576. width: 68px;
  577. height: 68px;
  578. }
  579. .success > img {
  580. width: 100%;
  581. height: 100%;
  582. }
  583. .cresteMessage {
  584. width: 500px;
  585. margin-left: 22px;
  586. line-height: 50px;
  587. }
  588. .cresteMessage > span {
  589. color: #0f40f5;
  590. }
  591. .createButton {
  592. width: 163px;
  593. height: 35px;
  594. text-align: center;
  595. line-height: 35px;
  596. background: #0f40f5 100%;
  597. color: #fff;
  598. font-size: 14px;
  599. border-radius: 4px;
  600. position: absolute;
  601. right: 74px;
  602. bottom: 19px;
  603. }
  604. .first {
  605. background: #6e9cd8;
  606. width: 200px;
  607. display: flex;
  608. flex-direction: row;
  609. flex-wrap: nowrap;
  610. align-items: center;
  611. color: #fff;
  612. height: 53px;
  613. justify-content: center;
  614. border-radius: 10px;
  615. margin: 0 15px;
  616. cursor: pointer;
  617. }
  618. .navImg {
  619. width: 30px;
  620. height: 30px;
  621. }
  622. .navImg > img {
  623. width: 100%;
  624. height: 100%;
  625. }
  626. </style>