|
@@ -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>
|