|
@@ -238,7 +238,7 @@
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取消</el-button>
|
|
|
+ <el-button @click="cancel" size="btn">取消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 修改军车管理设置 -->
|
|
@@ -312,7 +312,7 @@
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">重置</el-button>
|
|
|
+ <el-button @click="cancel" size="btn">取消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -422,7 +422,9 @@ export default {
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
|
+ this.opens = false;
|
|
|
this.reset();
|
|
|
+
|
|
|
},
|
|
|
// 表单重置
|
|
|
reset() {
|
|
@@ -723,4 +725,16 @@ export default {
|
|
|
.box{
|
|
|
background-color: #ffba00 !important;
|
|
|
}
|
|
|
+.el-button--btc{
|
|
|
+ width: 34px !important;
|
|
|
+}
|
|
|
+::v-deep .el-icon-plus:before {
|
|
|
+ margin-left: 6px !important;
|
|
|
+}
|
|
|
+.el-button--btd{
|
|
|
+ width: 34px !important;
|
|
|
+}
|
|
|
+::v-deep .el-icon-delete:before {
|
|
|
+ margin-left: 5px !important;
|
|
|
+}
|
|
|
</style>
|