zengyicheng 3 年 前
コミット
613a263ee9

+ 3 - 3
src/App.vue

@@ -263,11 +263,11 @@ body {
 
 .pb_head {
   height: 3rem;
-  background-image: url("./assets/icon/zhuangtailan.png");
-  background-size: 100% 100%;
+  background: #F4F4F4;
+  /* background-image: url("./assets/icon/zhuangtailan.png"); */
+  /* background-size: 100% 100%; */
   text-align: center;
   line-height: 3rem;
-  color: #fff;
   font-size: 0.9rem;
   position: sticky;
   z-index: 9999;

+ 81 - 0
src/components/pages/login.vue

@@ -0,0 +1,81 @@
+<template>
+  <div class="pb_content2" style="background: #fff; display: inline">
+    <div class="pb_head">
+      <!-- <van-icon
+        name="arrow-left"
+        color="#fff"
+        class="pb_back"
+        size="1.2rem"
+        @click="goBack"
+      /> -->
+      <span>登录</span>
+    </div>
+    <div class="pb_content_body">
+      
+    </div>
+    
+  </div>
+</template>
+
+<script>
+import "../../common/aws-sdk-2.235.1.min";
+
+export default {
+  data() {
+    return {
+      
+    };
+  },
+  computed: {
+    playsinline() {
+      let ua = navigator.userAgent.toLocaleLowerCase();
+      // x5内核
+      if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) {
+        return false;
+      } else {
+        // ios端
+        return true;
+      }
+    },
+  },
+  methods: {
+    
+    goBack() {
+      document.getElementsByClassName("pb_content2")[0].style.display = "block";
+      this.$router.isBack = true;
+      if (window.history.length <= 1) {
+        this.$router.push({ path: "/" });
+        return false;
+      } else {
+        this.$router.go(-1);
+      }
+    },
+    
+  },
+  created() {
+  },
+};
+</script>
+
+<style scoped>
+
+.pb_content_body {
+  font-size: 0.9rem;
+  display: flex;
+  flex-direction: column;
+  /* justify-content: space-around; */
+  width: 90%;
+  margin: 0 auto;
+}
+
+.pb_content_body div {
+  margin: 0.5rem 0 0;
+}
+.pb_content_body div > img {
+  width: 5rem;
+}
+.pb_content_body .van-cell {
+  margin: 0;
+}
+
+</style>

+ 0 - 786
src/components/pages/submitWork.vue

@@ -1,786 +0,0 @@
-<template>
-  <div class="pb_content2" style="background: #fff; display: inline">
-    <div class="pb_head">
-      <van-icon
-        name="arrow-left"
-        color="#fff"
-        class="pb_back"
-        size="1.2rem"
-        @click="goBack"
-      />
-      <span>提交作业</span>
-    </div>
-    <div class="pb_content_body">
-      <div class="sw_select">
-        <span>作业提交</span>
-        <el-select
-          v-model="courseId"
-          placeholder="请选择要上传的课题..."
-          no-data-text="暂无作业"
-        >
-          <el-option
-            v-for="item in course"
-            :key="item.hid"
-            :label="item.name"
-            :value="item.hid"
-          ></el-option>
-        </el-select>
-      </div>
-      <div>
-        <span>上传作业</span>
-        <div class="myp_parent_textarea">
-          <van-field
-            v-model="message"
-            rows="6"
-            autosize
-            type="textarea"
-            placeholder="输入文字描述..."
-            border
-          />
-        </div>
-      </div>
-      <div>
-        <span>上传图片</span>
-        <div>
-          <!-- capture="camera"  -->
-          <van-uploader
-            v-model="fileList"
-            :after-read="afterRead"
-            preview-size="5rem"
-            accept="image/*"
-            v-loading="photoLoading"
-          >
-            <img src="../../assets/icon/photo.png" alt />
-            <template #preview-cover>
-              <div class></div>
-            </template>
-          </van-uploader>
-          <!-- <div v-for="(item,idnex) in fileaaa" :key="idnex">
-            {{ item.webkitRelativePath }} -- {{ item.name }}--{{ item.size }} --
-            {{ item.type }}
-          </div>-->
-          <div>{{ error }}</div>
-        </div>
-      </div>
-      <div>
-        <span>上传视频</span>
-        <div>
-          <!-- capture="camera"   -->
-          <van-uploader
-            v-model="fileList2"
-            :after-read="afterReadM"
-            preview-size="5rem"
-            accept="video/*"
-            max-count="1"
-            v-loading="mediaLoading"
-            @click-preview="mediaPreview"
-          >
-            <img src="../../assets/icon/shipin.png" alt />
-            <template #preview-cover>
-              <div class></div>
-            </template>
-          </van-uploader>
-          <!-- <div v-for="item in filebbb" :key="item.name">
-            {{ item.webkitRelativePath }} -- {{ item.name }}--{{ item.size }} --
-            {{ item.type }}
-          </div>-->
-          <!-- <div>{{fileMname}}</div> -->
-        </div>
-      </div>
-      <div class="class_learn">
-        <button @click="findWorkRepeat">提交作业</button>
-      </div>
-    </div>
-    <van-overlay
-      :show="show"
-      @click="overlayShow"
-      style="display: flex; align-items: center"
-    >
-      <div class="wrapper" @click.stop>
-        <video-player
-          class="video-player vjs-custom-skin"
-          ref="videoPlayer"
-          :playsinline="playsinline"
-          @canplay="onPlayerCanplay($event)"
-          :options="playerO"
-          @play="onPlayerPlay($event)"
-          style="width: 100%; height: 100%"
-        ></video-player>
-      </div>
-    </van-overlay>
-    <van-dialog
-      v-model="Dshow"
-      :show-confirm-button="false"
-      overlay-class="classOverlay"
-      close-on-click-overlay
-      :before-close="handleClose"
-      theme="round-button"
-      style="border-radius: 7px"
-      class="present"
-      bind:cancel="colseArea"
-    >
-      <div class="dia_title">
-        <div class="close" @click="$router.go(-1)">
-          <img src="../../assets/ranking/cancel.png" />
-        </div>
-      </div>
-      <div class="dia_content">
-        <div style="position: relative">
-          <img src="../../assets/ranking/champion.png" />
-          <span class="scoreInner">提交成功</span>
-        </div>
-        <div class="score">
-          恭喜获得
-          <span style="color: orange; font-size: 1.8rem; margin: 0 0.5rem"
-            >2</span
-          >积分
-        </div>
-        <div class="btn" @click="$router.go(-1)">我收下了</div>
-      </div>
-    </van-dialog>
-    <div v-if="proVisible" class="mask">
-      <div class="progressBox">
-        <div class="lbox">
-          <img :src="require('../../assets/loading.gif')" />压缩上传中,请稍后
-        </div>
-        <el-progress
-          :text-inside="true"
-          :stroke-width="20"
-          :percentage="progress"
-          style="width: 80%"
-        ></el-progress>
-      </div>
-    </div>
-  </div>
-</template>
-
-<script>
-import "../../common/aws-sdk-2.235.1.min";
-
-export default {
-  data() {
-    return {
-      cid: this.$route.query.cid,
-      course: null,
-      courseId: "",
-      message: "",
-      fileList: [],
-      fileList2: [],
-      fileaaa: [],
-      filebbb: [],
-      now: null,
-      photoLoading: false,
-      mediaLoading: false,
-      error: "",
-      show: false,
-      Dshow: false,
-      Dtype: 1,
-      playerOptions: {
-        playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
-        autoplay: false, //如果true,浏览器准备好时开始回放。
-        muted: false, // 默认情况下将会消除任何音频。
-        loop: false, // 导致视频一结束就重新开始。
-        preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
-        language: "zh-CN",
-        aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
-        fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
-        sources: [
-          {
-            type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目   || "video/ogg"|| "video/webm"
-            src: "", //url地址require("../../assets/media/aaa.mp4")
-          },
-        ],
-        // poster: require("../../assets/tu31.png"), //你的封面地址
-        // poster: dataRes.imgUrl, //你的封面地址
-        notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
-        controlBar: {
-          timeDivider: true, //当前时间和持续时间的分隔符
-          durationDisplay: true, //显示持续时间
-          remainingTimeDisplay: false, //是否显示剩余时间功能
-          fullscreenToggle: true, //全屏按钮
-        },
-      },
-      playerO: {},
-      fileMname: "",
-      proVisible: false,
-      progress: 0,
-    };
-  },
-  computed: {
-    playsinline() {
-      let ua = navigator.userAgent.toLocaleLowerCase();
-      // x5内核
-      if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) {
-        return false;
-      } else {
-        // ios端
-        return true;
-      }
-    },
-  },
-  methods: {
-    overlayShow() {
-      this.show = false;
-      this.$refs.videoPlayer.player.pause();
-    },
-    time() {
-      if (!this.now) {
-        this.now = new Date().getTime();
-        return true;
-      } else {
-        let time = new Date().getTime();
-        if (time - this.now > 3000) {
-          this.now = time;
-          return true;
-        } else {
-          return false;
-        }
-      }
-    },
-    goBack() {
-      document.getElementsByClassName("pb_content2")[0].style.display = "block";
-      this.$router.isBack = true;
-      if (window.history.length <= 1) {
-        this.$router.push({ path: "/" });
-        return false;
-      } else {
-        this.$router.go(-1);
-      }
-    },
-    //上传图片
-    afterRead(file) {
-      this.photoLoading = true;
-
-      var _file = file.file;
-      this.fileaaa.push(_file);
-      file.status = "uploading";
-      file.message = "上传中...";
-
-      var credentials = {
-        accessKeyId: "AKIATLPEDU37QV5CHLMH",
-        secretAccessKey: "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",
-      }; //秘钥形式的登录上传
-      window.AWS.config.update(credentials);
-      window.AWS.config.region = "cn-northwest-1"; //设置区域
-
-      var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
-      var _this = this;
-
-      var mediaFormatList = ["png", "jpg", "jpeg"];
-
-      if (
-        mediaFormatList.indexOf(
-          _file.name
-            .split(".")
-            [_file.name.split(".").length - 1].toLocaleLowerCase()
-        ) == "-1"
-      ) {
-        _this.$toast.fail("请上传jpg或者png的图片格式文件");
-        _this.fileList = _this.fileList.filter((fileA) => {
-          return fileA.file.lastModified != file.file.lastModified;
-        });
-        file.status = "failed";
-        file.message = "上传失败";
-        this.photoLoading = false;
-
-        return;
-      }
-
-      // var reader = new FileReader();
-      // reader.readAsDataURL(_file);
-      // reader.onload = function (e) {
-      //   this.result; //base64编码
-      //   var a = {}
-      //   a.file = _file
-      //   a.url = this.result;
-      //   a.content = this.result;
-      //   _this.fileList.push(a);
-      //   _this.photoLoading = false;
-      //   file.status = "success";
-      // };
-      // return;
-      if (_file) {
-        var params = {
-          Key: _file.name,
-          ContentType: _file.type,
-          Body: _file,
-          "Access-Control-Allow-Credentials": "*",
-          ACL: "public-read",
-        }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
-        var options = {
-          partSize: 2048 * 1024 * 1024,
-          queueSize: 2,
-          leavePartsOnError: true,
-        };
-        bucket
-          .upload(params, options)
-          .on("httpUploadProgress", function (evt) {
-            //这里可以写进度条
-            // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
-          })
-          .send(function (err, data) {
-            _this.photoLoading = false;
-            if (err) {
-              _this.error = err;
-              _this.$toast.fail("上传失败");
-              file.status = "failed";
-              file.message = "上传失败";
-              //上传错误处理
-              _this.fileList = _this.fileList.filter((fileA) => {
-                return fileA.file.lastModified != _file.lastModified;
-              });
-            } else {
-              //上传成功处理
-              file.status = "success";
-              // _file.url = data.Location;
-              // _this.fileList.push(_file);
-              _this.fileList = _this.fileList.filter((fileA) => {
-                if (fileA.file.lastModified == _file.lastModified) {
-                  fileA.url = data.Location;
-                  return fileA;
-                } else {
-                  return fileA;
-                }
-              });
-              console.log(data.Location);
-            }
-          });
-      }
-    },
-    //上传视频
-    afterReadM(file) {
-      this.mediaLoading = true;
-      var _file = file.file;
-      this.filebbb.push(_file);
-      file.status = "uploading";
-      file.message = "上传中...";
-      var renameReportFile = new File(
-        [_file],
-        "MEDIA" + new Date().getTime() + "." + _file.name.split(".")[1],
-        { type: _file.type }
-      );
-      _file = renameReportFile;
-      var credentials = {
-        accessKeyId: "AKIATLPEDU37QV5CHLMH",
-        secretAccessKey: "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",
-      }; //秘钥形式的登录上传
-      window.AWS.config.update(credentials);
-      window.AWS.config.region = "cn-northwest-1"; //设置区域
-
-      var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
-      var _this = this;
-      _this.progress = 0;
-      _this.proVisible = true;
-
-      // var mediaFormatList = [
-      //   "avi",
-      //   "flv",
-      //   "mpg",
-      //   "mpeg",
-      //   "mpe",
-      //   "m1v",
-      //   "m2v",
-      //   "mpv2",
-      //   "mp2v",
-      //   "dat",
-      //   "ts",
-      //   "tp",
-      //   "tpr",
-      //   "pva",
-      //   "pss",
-      //   "mp4",
-      //   "m4v",
-      //   "m4p",
-      //   "m4b",
-      //   "3gp",
-      //   "3gpp",
-      //   "3g2",
-      //   "3gp2",
-      //   "ogg",
-      //   "mov",
-      //   "qt",
-      //   "amr",
-      //   "rm",
-      //   "ram",
-      //   "rmvb",
-      //   "rpm",
-      // ];
-      // _this.$toast.fail(_file.name.split(".")[_file.name.split(".").length-1]);
-      // _this.fileMname = _file.name
-      // if (mediaFormatList.indexOf(_file.name.split(".")[_file.name.split(".").length-1].toLocaleLowerCase()) == "-1") {
-      //   _this.$toast.fail("请上传视频格式文件");
-      //   // _this.$toast.fail(_file.name);
-      //   _this.fileList2 = _this.fileList2.filter((fileA) => {
-      //     return fileA.file.lastModified != file.file.lastModified;
-      //   });
-      //   file.status = "failed";
-      //   file.message = "上传失败";
-      //   this.photoLoading = false;
-
-      //   return;
-      // }
-
-      if (_file) {
-        var params = {
-          Key: _file.name,
-          ContentType: _file.type,
-          Body: _file,
-          "Access-Control-Allow-Credentials": "*",
-          ACL: "public-read",
-        }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
-        var options = {
-          partSize: 2048 * 1024 * 1024,
-          queueSize: 2,
-          leavePartsOnError: true,
-        };
-        bucket
-          .upload(params, options)
-          .on("httpUploadProgress", function (evt) {
-            //这里可以写进度条
-            // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
-          })
-          .send(function (err, data) {
-            _this.progress = 100;
-            _this.mediaLoading = false;
-            setTimeout(() => {
-              _this.proVisible = false;
-            }, 1000);
-            if (err) {
-              _this.$toast.fail("上传失败");
-              file.status = "failed";
-              file.message = "上传失败";
-              //上传错误处理
-              _this.fileList2 = _this.fileList2.filter((fileA) => {
-                return fileA.file.lastModified != _file.lastModified;
-              });
-            } else {
-              //上传成功处理
-              file.status = "success";
-              // _file.url = data.Location;
-              // var renameReportFile = new File(
-              //   [_file],
-              //   "MEDIA." + _file.name.split(".")[1],
-              //   { type: _file.type }
-              // );
-              // _file = renameReportFile;
-              // _this.fileList2.push(_file);
-              // console.log(_file);
-              _this.fileList2 = _this.fileList2.filter((fileA) => {
-                // if (fileA.file.lastModified == _file.lastModified) {
-                fileA.url = data.Location;
-                var renameReportFile = new File(
-                  [fileA.file],
-                  "MEDIA." + fileA.file.name.split(".")[1],
-                  { type: fileA.file.type }
-                );
-                fileA.file = renameReportFile;
-                return fileA;
-                // } else {
-                //   return fileA;
-                // }
-              });
-              console.log(data.Location);
-            }
-          });
-      }
-    },
-    //获取课程
-    getCourse() {
-      let params = { cid: this.cid };
-      this.ajax
-        .get(this.$store.state.api + "getCourseByid", params)
-        .then((res) => {
-          console.log(JSON.parse(res.data[0][0].chapters).homework);
-          this.course = JSON.parse(res.data[0][0].chapters).homework;
-        })
-        .catch((err) => {
-          console.error(err);
-        });
-    },
-    findWorkRepeat() {
-      if (this.courseId == "") {
-        this.$toast.fail("请选择课题");
-        return;
-      } else if (this.message == "") {
-        this.$toast.fail("请填写作业描述");
-        return;
-      } else if (this.fileList.length == 0) {
-        this.$toast.fail("请上传作业图片");
-        return;
-      } else if (this.fileList2.length == 0) {
-        this.$toast.fail("请上传作业视频");
-        return;
-      }
-      let params = {
-        cid: this.cid,
-        uid: this.$store.state.userInfo.userid,
-        hid: this.courseId,
-      };
-      this.ajax
-        .get(this.$store.state.api + "findWorkRepeat", params)
-        .then((res) => {
-          if (res.data[0].length) {
-            this.$Dialog
-              .confirm({
-                title: "作业确认",
-                message:
-                  "您已经提交了该作业了,如果您再提交将覆盖上次提交的作业!",
-              })
-              .then(() => {
-                this.Dtype = 2;
-                this.SubmitWork();
-              })
-              .catch(() => {
-                // on cancel
-              });
-          } else {
-            this.Dtype = 1;
-            this.SubmitWork();
-          }
-        })
-        .catch((err) => {
-          console.error(err);
-        });
-    },
-    //提交作业
-    SubmitWork() {
-      if (this.time()) {
-        var photo = [];
-        var media = [];
-
-        for (var i = 0; i < this.fileList.length; i++) {
-          photo.push(this.fileList[i].url);
-        }
-
-        for (var i = 0; i < this.fileList2.length; i++) {
-          media.push(this.fileList2[i].url);
-        }
-
-        this.$store.commit("update", ["loading", true]);
-        // 自定义加载图标
-        this.$toast.loading({
-          message: "提交中...",
-          forbidClick: true,
-          loadingType: "spinner",
-          duration: 0,
-        });
-        let params = [
-          {
-            uid: this.$store.state.userInfo.userid,
-            cid: this.cid,
-            hid: this.courseId,
-            ccontent: JSON.stringify({
-              content: this.message,
-              photo: photo.join(","),
-              media: media.join(","),
-            }),
-          },
-        ];
-        this.ajax
-          .post(this.$store.state.api + "submitWork", params)
-          .then((res) => {
-            this.$store.commit("update", ["loading", false]);
-            this.$toast.success("提交成功");
-            if (this.Dtype == 1) {
-              this.addScore();
-            } else {
-              this.goBack();
-            }
-            // this.$router.go(-1);
-          })
-          .catch((err) => {
-            this.$store.commit("update", ["loading", false]);
-            this.$toast.fail("提交失败");
-            console.error(err);
-          });
-      } else {
-        return false;
-      }
-    },
-    addScore() {
-      let params = [
-        {
-          uid: this.$store.state.userInfo.userid,
-          score: 2,
-          c: "积分增加-提交作业",
-        },
-      ];
-      this.ajax
-        .post(this.$store.state.api + "addScore", params)
-        .then((res) => {
-          this.Dshow = true;
-        })
-        .catch((err) => {
-          console.error(err);
-        });
-    },
-    handleClose(action, done) {
-      this.goBack();
-      done();
-    },
-    mediaPreview(file) {
-      console.log(file);
-      this.show = true;
-      this.playerOptions.sources[0].src = file.url;
-      this.playerO = this.playerOptions;
-    },
-    onPlayerCanplay() {},
-    onPlayerPlay() {},
-  },
-  created() {
-    // this.$vConsole
-    this.getCourse();
-  },
-};
-</script>
-
-<style scoped>
-.myp_parent_textarea {
-  width: 93%;
-  margin: 0 auto;
-  border: 1px solid rgb(207, 207, 207);
-}
-.van-cell {
-  background: #fdfdfd;
-}
-.pb_content_body {
-  font-size: 0.9rem;
-  display: flex;
-  flex-direction: column;
-  /* justify-content: space-around; */
-  width: 90%;
-  margin: 0 auto;
-}
-
-.pb_content_body div {
-  margin: 0.5rem 0 0;
-}
-.pb_content_body div > img {
-  width: 5rem;
-}
-.pb_content_body .van-cell {
-  margin: 0;
-}
-.sw_select >>> .el-input__inner {
-  /* border: none !important; */
-  border: 1px solid #eee !important;
-}
-.sw_select >>> .el-select {
-  width: 12rem;
-}
-.class_learn button {
-  color: white;
-  background: #58a5e6;
-  border: none;
-  box-sizing: border-box;
-  margin: 0;
-  padding: 0;
-  font-size: 1rem;
-  text-align: center;
-  border-radius: 5px;
-  cursor: pointer;
-  transition: opacity 0.2s;
-  height: 2rem;
-  width: 100%;
-  font-size: 0.8rem;
-  line-height: 1.5rem;
-  margin-bottom: 0.5rem;
-}
-.wrapper {
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  height: 11rem;
-  width: 100%;
-}
-.dia_title {
-  display: flex;
-  width: 100%;
-  align-items: center;
-  height: 2rem;
-  justify-content: center;
-}
-.close {
-  position: absolute;
-  right: 5%;
-  top: 0.5rem;
-}
-.close img {
-  width: 1rem;
-}
-
-.dia_content {
-  display: flex;
-  flex-direction: column;
-  align-items: center;
-}
-.dia_content .score {
-  font-size: 1.2rem;
-  font-family: "Microsoft JhengHei";
-  font-weight: 600;
-  color: rgb(39, 39, 39);
-  margin: 0.8rem 0;
-  display: flex;
-  align-items: center;
-}
-.dia_content .btn {
-  font-family: "Microsoft JhengHei";
-  font-size: 0.85rem;
-  width: 8rem;
-  height: 1.8rem;
-  line-height: 1.8rem;
-  text-align: center;
-  background: #58a5e6;
-  color: #fff;
-  border-radius: 3rem;
-}
-
-.scoreInner {
-  position: absolute;
-  bottom: 0.4rem;
-  width: fit-content;
-  left: 50%;
-  font-size: 1rem;
-  color: #fff;
-  transform: translateX(-50%);
-}
-.mask {
-  background-color: rgba(0, 0, 0, 0);
-  position: fixed;
-  top: 0;
-  left: 0;
-  width: 100%;
-  height: 100%;
-  z-index: 20000;
-  display: flex;
-  align-items: center;
-  justify-content: center;
-}
-.progressBox {
-  width: 95%;
-  height: 6rem;
-  background: #fff;
-  border-radius: 10px;
-  box-shadow: 0 0 6px 1px #bfbfbf;
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  flex-direction: column;
-}
-.progressBox .lbox {
-  height: 3rem;
-  font-size: 0.8rem;
-  display: flex;
-  align-items: center;
-}
-
-.progressBox .lbox img {
-  width: 1.3rem;
-  margin-right: 1.2rem;
-}
-
-.progressBox >>> .el-progress-bar__outer {
-  background-color: #d1dfff !important;
-  height: 1.2rem !important;
-}
-</style>

+ 352 - 0
src/components/pages/twentyFour.vue

@@ -0,0 +1,352 @@
+<template>
+  <el-container>
+    <el-header>
+      <h1>24点</h1>
+    </el-header>
+
+    <el-main>
+      <div class="main">
+        <!-- 计算公式 -->
+
+        <el-card shadow="always">
+          {{ result }}
+        </el-card>
+
+        <!-- 随机数字 -->
+
+        <el-row :gutter="20">
+          <el-col :span="12" v-for="(num, index) in randomNum" :key="index">
+            <div class="card-sep">
+              <el-card
+                class="card-sep"
+                shadow="always"
+                @click.native="getVal(num, index)"
+              >
+                {{ num }}
+              </el-card>
+            </div>
+          </el-col>
+
+          <!-- <el-col :span="12">
+						    <el-card shadow="hover">
+						      3
+						    </el-card>
+						  </el-col>
+						</el-row>
+						<el-row :gutter="20">
+						  <el-col :span="12">
+						    <el-card shadow="always">
+						      8
+						    </el-card>
+						  </el-col>
+						  <el-col :span="12">
+						    <el-card shadow="hover">
+						      9
+						    </el-card>
+						  </el-col> -->
+        </el-row>
+
+        <!-- 运算符选择 -->
+
+        <el-row class="h-sep">
+          <el-col :span="4">
+            <el-button type="primary" plain icon="el-icon-plus" @click="add"
+              >加</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button type="primary" plain icon="el-icon-minus" @click="inc"
+              >减</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button type="primary" plain icon="el-icon-close" @click="mul"
+              >乘</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button type="primary" plain icon="" @click="div"
+              >/&nbsp;&nbsp;除</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button
+              type="primary"
+              plain
+              icon="el-icon-arrow-left"
+              @click="left"
+              >括</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button
+              type="primary"
+              plain
+              icon="el-icon-arrow-right"
+              @click="right"
+              >号</el-button
+            >
+          </el-col>
+        </el-row>
+
+        <el-row :gutter="20" class="footBtn">
+          <el-col :span="4">
+            <el-button
+              type="primary"
+              plain
+              icon="el-icon-refresh-right"
+              @click="clean"
+              >清除</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button
+              type="primary"
+              plain
+              icon="el-icon-success"
+              @click="confirm"
+              >确定</el-button
+            >
+          </el-col>
+
+          <el-col :span="4">
+            <el-button
+              type="primary"
+              plain
+              icon="el-icon-refresh"
+              @click="resert"
+              >换题</el-button
+            >
+          </el-col>
+        </el-row>
+      </div>
+    </el-main>
+    <div
+      id="cas"
+      style="
+        position: absolute;
+        width: 200px;
+        height: 200px;
+        left: 200px;
+        z-index: 99999;
+      "
+    ></div>
+  </el-container>
+</template>
+
+<script>
+export default {
+  el: "#app", //选择器
+
+  data() {
+    return {
+      msg: "hello",
+
+      randomNum: [],
+
+      result: "",
+
+      tempResult: "",
+
+      flag0: false,
+
+      flag1: false,
+
+      flag2: false,
+
+      flag3: false,
+    };
+  },
+
+  mounted() {
+    this.getRandomNum();
+  },
+
+  methods: {
+    getRandomNum() {
+      this.randomNum = [];
+
+      for (var i = 0; i < 4; i++) {
+        // 生成1-9的随机数
+
+        this.randomNum.push(Math.floor(Math.random(9) * 10 + 1));
+      }
+    },
+
+    getVal(num, index) {
+      let selNum = num;
+
+      this.result += num;
+
+      switch (index) {
+        case 0:
+          this.flag0 = !this.flag0;
+
+          break;
+
+        case 1:
+          this.flag1 = !this.flag1;
+
+          break;
+
+        case 2:
+          this.flag2 = !this.flag2;
+
+          break;
+
+        case 3:
+          this.flag3 = !this.flag3;
+
+          break;
+      }
+    },
+
+    // 重置flag标识
+
+    resertFlag() {
+      this.flag0 = false;
+
+      this.flag1 = false;
+
+      this.flag2 = false;
+
+      this.flag3 = false;
+    },
+
+    add() {
+      this.result += "+";
+    },
+
+    inc() {
+      this.result += "-";
+    },
+
+    mul() {
+      this.result += "*";
+    },
+
+    div() {
+      this.result += "/";
+    },
+
+    left() {
+      this.result += "(";
+    },
+
+    right() {
+      this.result += ")";
+    },
+
+    clean() {
+      this.result = "";
+
+      this.resertFlag();
+    },
+
+    confirm() {
+      try {
+        var flag = this.flag0 && this.flag1 && this.flag2 && this.flag3;
+
+        console.log("res:", this.result);
+
+        if (flag) {
+          // 计算结果:直接将字符串转成js语句执行, 也可以用队列来实现
+
+          this.tempResult = eval(this.result);
+
+          if (this.tempResult === 24) {
+            this.$message.success("计算正确!");
+
+            // this.$message({
+
+            //   showClose: true,
+
+            //   message: '正确',
+
+            //   type: 'success'
+
+            // });
+
+            this.result = "";
+
+            this.getRandomNum();
+          } else {
+            this.$message.error("计算错误!");
+
+            this.result = "";
+
+            this.resertFlag();
+          }
+        } else {
+          this.$message.error("每个数字仅可使用1次!");
+        }
+      } catch (err) {
+        this.$message.error("输入有误!");
+
+        this.result = "";
+      }
+    },
+
+    resert() {
+      this.getRandomNum();
+
+      this.resertFlag();
+
+      this.result = "";
+    },
+  },
+  created() {
+    this.getRandomNum();
+  },
+};
+</script>
+
+
+
+<style scoped>
+html,
+body,
+#app {
+  text-align: center;
+  height: 100%;
+  margin: 0;
+  padding: 0;
+}
+
+.el-container {
+  height: 100%;
+}
+
+.main {
+  width: 40%;
+  margin-left: 30%;
+}
+
+.el-row {
+  margin-top: 2.5rem;
+}
+
+.el-card__body {
+  height: 3.75rem;
+  font-size: xx-large;
+  line-height: 3.75rem;
+}
+
+.footBtn {
+  margin-left: 0 !important;
+}
+
+.card-sep {
+  margin-bottom: 1.25rem;
+}
+
+.h-sep {
+  margin-top: 1.375rem;
+}
+</style>

+ 12 - 3
src/router/index.js

@@ -2,18 +2,27 @@ import Vue from 'vue'
 import Router from 'vue-router'
 // import vantui from 'vant'
 // import 'vant/lib/index.css'
-import submitWork from '@/components/pages/submitWork'
+import login from '@/components/pages/login'
+import twentyFour from '@/components/pages/twentyFour'
 Vue.use(Router)
 
 export default new Router({
     routes: [{
         path: '/',
-        name: 'Home',
-        component: submitWork,
+        name: 'login',
+        component: login,
         meta: {
             title: '上传作业',
             requireAuth: '' // 是否需要判断是否登录,这里是需要判断
         }
+    }, {
+        path: '/twentyFour',
+        name: 'twentyFour',
+        component: twentyFour,
+        meta: {
+            title: '24点功能',
+            requireAuth: '' // 是否需要判断是否登录,这里是需要判断
+        }
     }, ]
 })