|
@@ -91,6 +91,10 @@
|
|
|
@change="setMindData"
|
|
|
></el-input>
|
|
|
</div>
|
|
|
+ <el-button @click="addEJson" type="text" v-if="!update"
|
|
|
+ >保存</el-button
|
|
|
+ >
|
|
|
+ <el-button @click="updateEJson" type="text" v-else>保存</el-button>
|
|
|
</div>
|
|
|
<div class="e_add_content">
|
|
|
<div class="e_add_list">
|
|
@@ -424,6 +428,7 @@ export default {
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
this.page = val;
|
|
|
+ this.getData();
|
|
|
},
|
|
|
handleClose(done) {
|
|
|
done();
|
|
@@ -574,7 +579,7 @@ export default {
|
|
|
this.ajax
|
|
|
.post(this.$store.state.api + "addEvaluation", params)
|
|
|
.then((res) => {
|
|
|
- this.$message.success("添加成功");
|
|
|
+ this.$message.success("保存成功");
|
|
|
this.init();
|
|
|
this.dialogVisible = false;
|
|
|
this.getData();
|
|
@@ -744,6 +749,9 @@ export default {
|
|
|
.dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
|
|
|
color: #fff;
|
|
|
}
|
|
|
+.dialog_diy >>> .el-dialog__body{
|
|
|
+ padding:15px 20px 0;
|
|
|
+}
|
|
|
.dialog_diy >>> .el-dialog__body,
|
|
|
.dialog_diy >>> .el-dialog__footer {
|
|
|
background: #e6eaf0;
|
|
@@ -891,14 +899,14 @@ export default {
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
overflow: auto;
|
|
|
- height: 550px;
|
|
|
+ height: 530px;
|
|
|
}
|
|
|
.e_add_list {
|
|
|
background: #fff;
|
|
|
height: 500px;
|
|
|
width: 210px;
|
|
|
position: relative;
|
|
|
- margin: 15px 5px 0 0;
|
|
|
+ margin: 15px 10px 0 0;
|
|
|
flex-shrink: 0;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
@@ -941,7 +949,7 @@ export default {
|
|
|
justify-content: center;
|
|
|
position: relative;
|
|
|
box-sizing: border-box;
|
|
|
- padding: 15px 40px;
|
|
|
+ padding: 15px 62px 15px 30px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
.e_add_list_child span {
|