290714ba by 任超

style:弹框组件修改

1 parent 8daad855
......@@ -52,12 +52,19 @@
position: absolute;
top: 50%;
left: 50%;
transform: translate(calc(-50% + 85px), -50%) !important;
transform: translate(calc(-50% + 85px), -50%);
}
.mainCenter {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.is-fullscreen {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) !important;
}
\ No newline at end of file
......
......@@ -75,7 +75,7 @@ export default {
}
},
methods: {
handleFullscreen () {
handleFullscreen (val) {
this.fullscreen = !this.fullscreen
let height = document.getElementById('dialogBox').clientHeight
if (!this.fullscreen) {
......
<template>
<dialogBox title="申请业务规则配置" @submitForm="submitForm" @closeDialog="closeDialog" v-model="value">
<dialogBox title="申请业务规则配置" @submitForm="submitForm" isMain @closeDialog="closeDialog" v-model="value">
<div class="sqywgz-edit">
<ul class="sqywgz-edit-left">
<li v-for="(item, index) in leftList" :key="index" :class="{ active: index == n }" @click="hanldeItem(index)">{{
......