Selaa lähdekoodia

修改评分简介太长问题及bulid

zengyicheng 1 vuosi sitten
vanhempi
commit
b0ca754f62

+ 1 - 1
dist/index.html

@@ -24,4 +24,4 @@
             height: 100%;
             width: 100%;
             background: #e6eaf0;
-        }</style><link href=./static/css/app.b59f6b8cb005a041d22c349d54ad789b.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.f73e1f5407603f6a733b.js></script><script type=text/javascript src=./static/js/vendor.0c21445a4cd992a83ee9.js></script><script type=text/javascript src=./static/js/app.4b67afed15bcff64965a.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>
+        }</style><link href=./static/css/app.dd65da7bf43b5b8c78be1ed8d262b5fa.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.f73e1f5407603f6a733b.js></script><script type=text/javascript src=./static/js/vendor.0c21445a4cd992a83ee9.js></script><script type=text/javascript src=./static/js/app.a50d411d691bfa29b4af.js></script></body></html><script>document.domain = document.domain.split(".").slice(-2).join(".");</script>

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/css/app.dd65da7bf43b5b8c78be1ed8d262b5fa.css


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/css/app.dd65da7bf43b5b8c78be1ed8d262b5fa.css.map


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/js/app.4b67afed15bcff64965a.js


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/js/app.a50d411d691bfa29b4af.js


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/js/app.a50d411d691bfa29b4af.js.map


Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 0 - 0
dist/static/js/manifest.f73e1f5407603f6a733b.js.map


+ 8 - 6
src/components/pages/disAdmin/anliList.vue

@@ -674,13 +674,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

+ 8 - 6
src/components/pages/disAdmin/score.vue

@@ -675,13 +675,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

+ 8 - 6
src/components/pages/munAdmin/anliList.vue

@@ -825,13 +825,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

+ 8 - 6
src/components/pages/munAdmin/score.vue

@@ -674,13 +674,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

+ 9 - 7
src/components/pages/proAdmin/anliList.vue

@@ -1,5 +1,5 @@
 <template>
-<!-- 省级案例管理 -->
+  <!-- 省级案例管理 -->
   <div class="pb_content">
     <div class="pb_head">
       <div>
@@ -645,13 +645,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

+ 8 - 6
src/components/pages/race/eventCenter/anliDetail.vue

@@ -2541,13 +2541,15 @@ export default {
       //   this.$message.error("请将信息填写完整");
       //   return;
       // }
-      let params = {
-        rid: this.scoreDetail[0].id,
-        suser: this.$store.state.userInfo.userid,
-        s: JSON.stringify(this.scoreDetail[0].scoreAll),
-      };
+      let params = [
+        {
+          rid: this.scoreDetail[0].id,
+          suser: this.$store.state.userInfo.userid,
+          s: JSON.stringify(this.scoreDetail[0].scoreAll),
+        },
+      ];
       this.ajax
-        .get(this.$store.state.api + "addScore", params)
+        .post(this.$store.state.api + "addScore", params)
         .then((res) => {
           this.$message({
             message: "评分成功",

Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä