zengyicheng 2 rokov pred
rodič
commit
3c438f0228

+ 3 - 2
src/components/pages/race/addRace/projectProcess.vue

@@ -24,7 +24,7 @@
             :id="'jd' + saIndex + 1"
           >
             <div class="jdTop">
-              <div class="jdTopFirst">
+              <div class="jdTopFirst jdInput">
                 <div class="right_title">阶段{{ saIndex + 1 }}</div>
                 <el-input
                   v-model="sa.staTitle"
@@ -1478,7 +1478,8 @@ export default {
 .rwInput {
   width: 58%;
 }
-.rwInput >>> .el-input__inner {
+.rwInput >>> .el-input__inner,
+.jdInput >>> .el-input__inner {
   font-size: 16px;
 }
 .rwKs {

+ 19 - 5
src/components/pages/race/addRace/raceDetail.vue

@@ -636,7 +636,7 @@ export default {
       //   return "";
       // }
       if (rowIndex === 0) {
-        return "tr-red";
+        return "tr-blue";
       } else {
         return "";
       }
@@ -1017,8 +1017,20 @@ export default {
       this.dialogVisibleMember = true;
     },
     deleteStudent(i) {
-      this.raceDetail.tableData.splice(i, 1);
-      this.$emit("updateTitle", this.raceDetail);
+      this.$confirm("确定删除此作者吗?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(() => {
+          this.$message({
+            message: "删除成功",
+            type: "success",
+          });
+          this.raceDetail.tableData.splice(i, 1);
+          this.$emit("updateTitle", this.raceDetail);
+        })
+        .catch(() => {});
     },
     selectType() {
       this.ajax
@@ -1849,8 +1861,8 @@ export default {
   margin-left: 10px;
   color: #999;
 }
-.tableColor >>> .tr-red {
-  color: red !important;
+.tableColor >>> .tr-blue {
+  color: #628ff3 !important;
 }
 .lxr {
   color: #fff;
@@ -1858,5 +1870,7 @@ export default {
   background-image: linear-gradient(315deg, #6772ff 0, #00f9e5 100%);
   background-size: 104% 104%;
   min-width: 50px;
+  margin-left: 3px;
+  border-radius: 3px;
 }
 </style>

+ 2 - 2
src/components/pages/race/eventCenter.vue

@@ -122,7 +122,7 @@ export default {
   width: 100%;
   justify-content: center;
   margin: 0 auto;
-  height: calc(100% - 372px);
+  height: calc(100% - 285px);
 }
 
 .center_btn {
@@ -135,6 +135,6 @@ export default {
   box-shadow: 0 -5px 5px 0px #eeeeee;
   z-index: 99;
   position: relative;
-  bottom: -105px;
+  bottom: -20px;
 }
 </style>

+ 7 - 4
src/components/pages/race/eventCenter/myAnli.vue

@@ -25,7 +25,7 @@
             <div class="anliNav">
               <div>项目名称:{{ JSON.parse(an.info).title }}</div>
               <div>单位:{{ an.schoolName }}</div>
-              <div>
+              <div v-if="JSON.parse(an.info).courseText">
                 {{ JSON.parse(an.info).courseText }}
               </div>
               <div class="personAndAutor">
@@ -335,6 +335,7 @@ export default {
   width: 95%;
   margin: 20px auto;
   border-radius: 10px;
+  height: 200px;
 }
 .anliTop {
   display: flex;
@@ -397,7 +398,7 @@ export default {
   width: 100%;
 }
 .anliNav > div:nth-child(1) {
-  font-size: 24px;
+  font-size: 20px;
   /* font-weight: bold; */
 }
 .anliNav > div:nth-child(2) {
@@ -407,7 +408,6 @@ export default {
 .anliNav > div:nth-child(3) {
   color: #aba8a8;
   margin-bottom: 10px;
-  height: 40px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
@@ -419,7 +419,10 @@ export default {
   flex-wrap: nowrap;
   align-items: center;
   justify-content: space-between;
-  padding: 0 10px 15px 30px;
+  margin: -10px 10px 0 30px;
+}
+.bottomLeft{
+  margin-top: 5px;
 }
 .bottomRight {
   display: flex;