addRace.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  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; line-height: 25px">
  143. 本次案例征集必填内容已提交,为实现更佳的展示效果,建议您根据平台指引完成网页端资料填写。
  144. </div>
  145. </div>
  146. </div>
  147. <span slot="footer" class="dialog-footer">
  148. <el-button @click="isAddOrUpRace(1)">跳过并提交</el-button>
  149. <el-button type="primary" @click="dialogVisible1 = false"
  150. >继续填写</el-button
  151. >
  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="dialogVisible2 = false"
  172. >继续填写</el-button
  173. >
  174. <el-button @click="isAddOrUpRace(1)">保存并离开</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. this.$message.error("案例组别不能为空");
  264. return;
  265. } else if (this.raceInfo.autor.length == 0) {
  266. this.$message.error("请添加联系人");
  267. return;
  268. } else if (this.raceInfo.courseText == "") {
  269. this.$message.error("请填写项目简介");
  270. return;
  271. } else if (this.raceInfo.data.length == 0) {
  272. this.$message.error("上传文件不能为空");
  273. return;
  274. } else if (this.raceInfo.type.length > 0) {
  275. var t = 1;
  276. var a = [
  277. "24d162b0-d030-11ec-8c78-005056b86db5",
  278. "264bd103-d030-11ec-8c78-005056b86db5",
  279. "28d2c456-d030-11ec-8c78-005056b86db5",
  280. "2ad17d24-d030-11ec-8c78-005056b86db5",
  281. ];
  282. for (var i = 0; i < this.raceInfo.type.length; i++) {
  283. if (t == 1) {
  284. if (this.raceInfo.type[i] != "") {
  285. if (a.indexOf(this.raceInfo.type[i]) == -1) {
  286. console.log(this.raceInfo.type[i]);
  287. } else {
  288. t = 2;
  289. }
  290. }
  291. }
  292. }
  293. if (t == 1) {
  294. this.$message.error("案例组别不能为空");
  295. return;
  296. } else if (t == 2) {
  297. this.steps = steps;
  298. }
  299. // this.$message.error("课程分类不能为空");
  300. }
  301. // else {
  302. // this.steps = steps;
  303. // }
  304. // else if (this.raceInfo.tableData.length == 0) {
  305. // this.$message.error("请添加协作者");
  306. // return;
  307. // }
  308. } else {
  309. this.steps = steps;
  310. }
  311. },
  312. nextSteps() {
  313. if (this.steps == 1) {
  314. if (this.raceInfo.title == "") {
  315. this.$message.error("标题不能为空");
  316. return;
  317. } else if (this.raceInfo.type.length == 0) {
  318. // this.$message.error("课程分类不能为空");
  319. this.$message.error("案例组别不能为空");
  320. return;
  321. } else if (this.raceInfo.autor.length == 0) {
  322. this.$message.error("请添加联系人");
  323. return;
  324. } else if (this.raceInfo.courseText == "") {
  325. this.$message.error("请填写项目简介");
  326. return;
  327. } else if (this.raceInfo.data.length == 0) {
  328. this.$message.error("上传文件不能为空");
  329. return;
  330. } else if (this.raceInfo.type.length > 0) {
  331. var t = 1;
  332. var a = [
  333. "24d162b0-d030-11ec-8c78-005056b86db5",
  334. "264bd103-d030-11ec-8c78-005056b86db5",
  335. "28d2c456-d030-11ec-8c78-005056b86db5",
  336. "2ad17d24-d030-11ec-8c78-005056b86db5",
  337. ];
  338. for (var i = 0; i < this.raceInfo.type.length; i++) {
  339. if (t == 1) {
  340. if (this.raceInfo.type[i] != "") {
  341. if (a.indexOf(this.raceInfo.type[i]) == -1) {
  342. } else {
  343. t = 2;
  344. }
  345. }
  346. }
  347. }
  348. if (t == 1) {
  349. this.$message.error("案例组别不能为空");
  350. return;
  351. } else if (t == 2) {
  352. this.dialogVisible1 = true;
  353. setTimeout(() => {
  354. this.dialogVisible1 = false;
  355. this.steps++;
  356. }, 5000);
  357. }
  358. // this.$message.error("课程分类不能为空");
  359. }
  360. } else {
  361. this.steps++;
  362. }
  363. // else if(2 <= this.steps < 6) {
  364. // this.dialogVisible1 = true;
  365. // this.steps++;
  366. // }
  367. this.isAddOrUpRace1(3);
  368. },
  369. lastSteps() {
  370. this.steps--;
  371. },
  372. goTo(path) {
  373. this.$router.push(path);
  374. },
  375. updateRaceInfoTitle(raceInfo) {
  376. this.raceInfo = raceInfo;
  377. },
  378. updateRaceOver(raceOver) {
  379. this.raceOverView = raceOver;
  380. },
  381. updateRacePro(racePro) {
  382. this.raceProcess = racePro;
  383. },
  384. updateRaceAct(raceAct) {
  385. this.raceProcess = raceAct;
  386. },
  387. updateProEff(raceEff) {
  388. this.raceEffect = raceEff;
  389. },
  390. updateProExc(raceExc) {
  391. this.raceExceva = raceExc;
  392. },
  393. isAddOrUpRace(q) {
  394. if (this.raceInfo.title == "") {
  395. this.$message.error("标题不能为空");
  396. return;
  397. } else if (this.raceInfo.type.length == 0) {
  398. // this.$message.error("课程分类不能为空");
  399. this.$message.error("案例组别不能为空");
  400. return;
  401. } else if (this.raceInfo.autor.length == 0) {
  402. this.$message.error("请添加联系人");
  403. return;
  404. } else if (this.raceInfo.courseText == "") {
  405. this.$message.error("请填写项目简介");
  406. return;
  407. } else if (this.raceInfo.data.length == 0) {
  408. this.$message.error("上传文件不能为空");
  409. return;
  410. } else if (this.raceInfo.type.length > 0) {
  411. var t = 1;
  412. var a = [
  413. "24d162b0-d030-11ec-8c78-005056b86db5",
  414. "264bd103-d030-11ec-8c78-005056b86db5",
  415. "28d2c456-d030-11ec-8c78-005056b86db5",
  416. "2ad17d24-d030-11ec-8c78-005056b86db5",
  417. ];
  418. for (var i = 0; i < this.raceInfo.type.length; i++) {
  419. if (t == 1) {
  420. if (this.raceInfo.type[i] != "") {
  421. if (a.indexOf(this.raceInfo.type[i]) == -1) {
  422. } else {
  423. t = 2;
  424. }
  425. }
  426. }
  427. }
  428. if (t == 1) {
  429. this.$message.error("案例组别不能为空");
  430. return;
  431. } else if (t == 2) {
  432. this.isJump = q;
  433. if (this.aid == "" || this.aid == undefined) {
  434. this.addRace();
  435. } else {
  436. this.updateRace();
  437. }
  438. }
  439. // this.$message.error("课程分类不能为空");
  440. }
  441. },
  442. isAddOrUpRace1(t) {
  443. this.isJump = t;
  444. if (this.aid == "" || this.aid == undefined) {
  445. this.addRace();
  446. } else {
  447. this.updateRace();
  448. }
  449. },
  450. addRace() {
  451. let params = [
  452. {
  453. uid: this.userid,
  454. info: JSON.stringify(this.raceInfo).replaceAll(/%/g, "%25"),
  455. over: JSON.stringify(this.raceOverView).replaceAll(/%/g, "%25"),
  456. pro: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  457. act: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  458. exc: JSON.stringify(this.raceExceva).replaceAll(/%/g, "%25"),
  459. courseType: JSON.stringify(this.raceInfo.type).replaceAll(
  460. /%/g,
  461. "%25"
  462. ),
  463. res: JSON.stringify(this.raceEffect).replaceAll(/%/g, "%25"),
  464. },
  465. ];
  466. this.ajax
  467. .post(this.$store.state.api + "addRace", params)
  468. .then((res) => {
  469. this.aid = res.data.courseId;
  470. if (this.isJump == 0) {
  471. this.$message({
  472. message: "新增成功",
  473. type: "success",
  474. });
  475. this.dialogVisible = true;
  476. } else if (this.isJump == 1) {
  477. this.$message({
  478. message: "新增成功",
  479. type: "success",
  480. });
  481. this.goTo("/eventCenter?steps=" + "1");
  482. this.dialogVisible1 = false;
  483. } else {
  484. console.log("下一步");
  485. }
  486. })
  487. .catch((err) => {
  488. this.$message.error("网络不佳");
  489. console.error(err);
  490. });
  491. },
  492. updateRace() {
  493. let params = [
  494. {
  495. id: this.aid,
  496. info: JSON.stringify(this.raceInfo).replaceAll(/%/g, "%25"),
  497. over: JSON.stringify(this.raceOverView).replaceAll(/%/g, "%25"),
  498. pro: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  499. act: JSON.stringify(this.raceProcess).replaceAll(/%/g, "%25"),
  500. exc: JSON.stringify(this.raceExceva).replaceAll(/%/g, "%25"),
  501. res: JSON.stringify(this.raceEffect).replaceAll(/%/g, "%25"),
  502. courseType: JSON.stringify(this.raceInfo.type).replaceAll(
  503. /%/g,
  504. "%25"
  505. ),
  506. uid: this.userid,
  507. },
  508. ];
  509. this.ajax
  510. .post(this.$store.state.api + "updateRace", params)
  511. .then((res) => {
  512. if (this.isJump == 0) {
  513. this.$message({
  514. message: "修改成功",
  515. type: "success",
  516. });
  517. this.dialogVisible = true;
  518. } else if (this.isJump == 1) {
  519. this.$message({
  520. message: "修改成功",
  521. type: "success",
  522. });
  523. this.goTo("/eventCenter?steps=" + "1");
  524. this.dialogVisible1 = false;
  525. } else {
  526. console.log("下一步");
  527. }
  528. })
  529. .catch((err) => {
  530. this.$message.error("网络不佳");
  531. console.error(err);
  532. });
  533. },
  534. selectAnLi() {
  535. if (this.aid != "") {
  536. let params = {
  537. id: this.aid,
  538. };
  539. this.ajax
  540. .get(this.$store.state.api + "selectRaceDetail", params)
  541. .then((res) => {
  542. if (res.data.length > 0) {
  543. this.raceInfo = JSON.parse(res.data[0][0].info);
  544. this.raceOverView = JSON.parse(res.data[0][0].overview);
  545. this.raceProcess = JSON.parse(res.data[0][0].process);
  546. this.raceExceva = JSON.parse(res.data[0][0].proexc);
  547. this.raceEffect = JSON.parse(res.data[0][0].results);
  548. }
  549. })
  550. .catch((err) => {
  551. console.error(err);
  552. });
  553. }
  554. },
  555. isGoto() {
  556. this.steps = 1;
  557. if (
  558. this.raceInfo.title != "" ||
  559. this.raceInfo.type.length > 0 ||
  560. this.raceInfo.autor.length > 0 ||
  561. this.raceInfo.courseText != "" ||
  562. this.raceInfo.data.length > 0
  563. ) {
  564. this.dialogVisible2 = true;
  565. } else {
  566. this.goTo("/eventCenter?steps=" + "1");
  567. }
  568. },
  569. },
  570. created() {
  571. this.selectAnLi();
  572. },
  573. };
  574. </script>
  575. <style scoped>
  576. @media screen and (max-width: 1280px) {
  577. .first > div:nth-child(2) {
  578. width: 80px;
  579. white-space: nowrap;
  580. overflow: hidden;
  581. text-overflow: ellipsis;
  582. }
  583. }
  584. .dialog_diy >>> .el-dialog__header {
  585. background: #3c3c3c !important;
  586. padding: 15px 20px;
  587. }
  588. .dialog_diy >>> .el-dialog__title {
  589. color: #fff;
  590. }
  591. .race_nav {
  592. display: flex;
  593. align-items: center;
  594. justify-content: center;
  595. width: 90%;
  596. margin: 10px auto;
  597. background: #fff;
  598. border-radius: 10px;
  599. padding: 10px 0;
  600. }
  601. .race_nav span {
  602. border: 1px solid #929292;
  603. border-radius: 5px;
  604. padding: 10px 15px;
  605. cursor: pointer;
  606. color: #4988bf;
  607. }
  608. .race_nav span + span {
  609. margin-left: 10px;
  610. }
  611. .race_nav .active {
  612. background: #3d5ea1;
  613. }
  614. .race_body {
  615. display: flex;
  616. width: 90%;
  617. justify-content: center;
  618. margin: 0 auto;
  619. height: calc(100% - 145px);
  620. }
  621. .race_btn {
  622. width: 90%;
  623. margin: 0 auto;
  624. display: flex;
  625. justify-content: space-between;
  626. flex-direction: row;
  627. flex-wrap: nowrap;
  628. padding-top: 10px;
  629. }
  630. .race_btn > button {
  631. z-index: 9;
  632. }
  633. .createSuccessCss {
  634. position: fixed;
  635. right: 30%;
  636. top: 50%;
  637. width: 717px;
  638. height: 346px;
  639. z-index: 999;
  640. background: #fff;
  641. border-radius: 30px;
  642. overflow: hidden;
  643. transform: translateY(-50%);
  644. box-shadow: 0px 0 8px 0px #c5c5c5;
  645. }
  646. .createBox {
  647. padding: 0 10px 0 10px;
  648. display: flex;
  649. flex-direction: row;
  650. flex-wrap: nowrap;
  651. align-items: flex-start;
  652. }
  653. .success {
  654. width: 68px;
  655. height: 68px;
  656. }
  657. .success > img {
  658. width: 100%;
  659. height: 100%;
  660. }
  661. .cresteMessage {
  662. width: 500px;
  663. margin-left: 22px;
  664. line-height: 50px;
  665. }
  666. .cresteMessage > span {
  667. color: #0f40f5;
  668. }
  669. .createButton {
  670. width: 163px;
  671. height: 35px;
  672. text-align: center;
  673. line-height: 35px;
  674. background: #0f40f5 100%;
  675. color: #fff;
  676. font-size: 14px;
  677. border-radius: 4px;
  678. position: absolute;
  679. right: 74px;
  680. bottom: 19px;
  681. }
  682. .first {
  683. background: #6e9cd8;
  684. width: 200px;
  685. display: flex;
  686. flex-direction: row;
  687. flex-wrap: nowrap;
  688. align-items: center;
  689. color: #fff;
  690. height: 53px;
  691. justify-content: center;
  692. border-radius: 10px;
  693. margin: 0 15px;
  694. cursor: pointer;
  695. }
  696. .navImg {
  697. width: 30px;
  698. height: 30px;
  699. }
  700. .navImg > img {
  701. width: 100%;
  702. height: 100%;
  703. }
  704. </style>