|
@@ -1290,14 +1290,16 @@ export default {
|
|
|
},
|
|
|
submitForm() {
|
|
|
let that = this;
|
|
|
- console.log("this.form",this.form)
|
|
|
+ console.log("this.form", this.form);
|
|
|
this.$refs["form"].validate((valid, rules) => {
|
|
|
if (valid) {
|
|
|
} else {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- goBack() {},
|
|
|
+ goBack() {
|
|
|
+ this.$router.go(-1);
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -1310,7 +1312,7 @@ export default {
|
|
|
.ss_scoreTable {
|
|
|
padding-bottom: 50px;
|
|
|
table {
|
|
|
- width: 500px;
|
|
|
+ width: 600px;
|
|
|
margin-left: 120px;
|
|
|
-moz-user-select: none;
|
|
|
-webkit-user-select: none;
|
|
@@ -1337,7 +1339,7 @@ export default {
|
|
|
text-align: left;
|
|
|
}
|
|
|
.table-textarea {
|
|
|
- width: 110px;
|
|
|
+ width: 150px;
|
|
|
border: none;
|
|
|
height: 50px;
|
|
|
resize: none;
|
|
@@ -1368,5 +1370,12 @@ export default {
|
|
|
input:disabled {
|
|
|
background-color: #fff !important;
|
|
|
}
|
|
|
+ .btnList {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ padding-bottom: 40px;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|