5442fa03 by 任超

style:样式

1 parent b741a01f
......@@ -10,9 +10,9 @@
top: -2px;
b {
@include flex-center;
flex: 1;
width: 100%;
@flex-center();
}
}
......@@ -26,7 +26,7 @@
.dialog_full {
position: absolute;
top: 0;
right: 6%;
right: 30px;
}
.el-dialog__body {
......@@ -40,6 +40,7 @@
.dialog_button {
margin-top: 8px;
@include flex-center;
}
}
}
......
<template>
<el-dialog :visible.sync="dialogVisible" :width="width" :fullscreen="fullscreen" top="0" :append-to-body="true"
:lock-scroll="true" :close-on-click-modal="false" :custom-class="[isMain ? 'mainCenter' : 'contentCenter']"
:lock-scroll="true" :close-on-click-modal="false" :custom-class="isMain ? 'mainCenter' : 'contentCenter'"
:destroy-on-close="true" ref="dialogBox">
<div slot="title" class="dialog_title" ref="dialogTitle">
<b>{{ title }}</b>
......@@ -113,5 +113,6 @@ export default {
}
</script>
<style rel="stylesheet/scss" lang="scss" >
@import "~@/styles/mixin.scss";
@import "./dialogBox.scss";
</style>
\ No newline at end of file
......
......@@ -37,7 +37,6 @@
<el-col :span="4" class="btnCol">
<el-form-item>
{{ isDialog }}
<el-button type="primary" @click="queryClick()">查询</el-button>
<el-button @click="moreQueryClick()">高级查询</el-button>
</el-form-item>
......