style:样式
Showing
3 changed files
with
5 additions
and
4 deletions
| ... | @@ -10,9 +10,9 @@ | ... | @@ -10,9 +10,9 @@ |
| 10 | top: -2px; | 10 | top: -2px; |
| 11 | 11 | ||
| 12 | b { | 12 | b { |
| 13 | @include flex-center; | ||
| 13 | flex: 1; | 14 | flex: 1; |
| 14 | width: 100%; | 15 | width: 100%; |
| 15 | @flex-center(); | ||
| 16 | } | 16 | } |
| 17 | } | 17 | } |
| 18 | 18 | ||
| ... | @@ -26,7 +26,7 @@ | ... | @@ -26,7 +26,7 @@ |
| 26 | .dialog_full { | 26 | .dialog_full { |
| 27 | position: absolute; | 27 | position: absolute; |
| 28 | top: 0; | 28 | top: 0; |
| 29 | right: 6%; | 29 | right: 30px; |
| 30 | } | 30 | } |
| 31 | 31 | ||
| 32 | .el-dialog__body { | 32 | .el-dialog__body { |
| ... | @@ -40,6 +40,7 @@ | ... | @@ -40,6 +40,7 @@ |
| 40 | 40 | ||
| 41 | .dialog_button { | 41 | .dialog_button { |
| 42 | margin-top: 8px; | 42 | margin-top: 8px; |
| 43 | @include flex-center; | ||
| 43 | } | 44 | } |
| 44 | } | 45 | } |
| 45 | } | 46 | } | ... | ... |
| 1 | <template> | 1 | <template> |
| 2 | <el-dialog :visible.sync="dialogVisible" :width="width" :fullscreen="fullscreen" top="0" :append-to-body="true" | 2 | <el-dialog :visible.sync="dialogVisible" :width="width" :fullscreen="fullscreen" top="0" :append-to-body="true" |
| 3 | :lock-scroll="true" :close-on-click-modal="false" :custom-class="[isMain ? 'mainCenter' : 'contentCenter']" | 3 | :lock-scroll="true" :close-on-click-modal="false" :custom-class="isMain ? 'mainCenter' : 'contentCenter'" |
| 4 | :destroy-on-close="true" ref="dialogBox"> | 4 | :destroy-on-close="true" ref="dialogBox"> |
| 5 | <div slot="title" class="dialog_title" ref="dialogTitle"> | 5 | <div slot="title" class="dialog_title" ref="dialogTitle"> |
| 6 | <b>{{ title }}</b> | 6 | <b>{{ title }}</b> |
| ... | @@ -113,5 +113,6 @@ export default { | ... | @@ -113,5 +113,6 @@ export default { |
| 113 | } | 113 | } |
| 114 | </script> | 114 | </script> |
| 115 | <style rel="stylesheet/scss" lang="scss" > | 115 | <style rel="stylesheet/scss" lang="scss" > |
| 116 | @import "~@/styles/mixin.scss"; | ||
| 116 | @import "./dialogBox.scss"; | 117 | @import "./dialogBox.scss"; |
| 117 | </style> | 118 | </style> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -37,7 +37,6 @@ | ... | @@ -37,7 +37,6 @@ |
| 37 | 37 | ||
| 38 | <el-col :span="4" class="btnCol"> | 38 | <el-col :span="4" class="btnCol"> |
| 39 | <el-form-item> | 39 | <el-form-item> |
| 40 | {{ isDialog }} | ||
| 41 | <el-button type="primary" @click="queryClick()">查询</el-button> | 40 | <el-button type="primary" @click="queryClick()">查询</el-button> |
| 42 | <el-button @click="moreQueryClick()">高级查询</el-button> | 41 | <el-button @click="moreQueryClick()">高级查询</el-button> |
| 43 | </el-form-item> | 42 | </el-form-item> | ... | ... |
-
Please register or sign in to post a comment