| | |
| | | <template> |
| | | <div class="public-bounced" v-show="flag"> |
| | | <div class="public-bounced" v-draw v-show="flag"> |
| | | <div class="public-bounced-title"> |
| | | <span>{{ displayContent.Name }}</span> |
| | | <i class="el-icon-circle-close" @click="closePopup"></i> |
| | | </div> |
| | | <div class="public-bounced-content"> |
| | | <span>内容</span> |
| | | <div class="public-bounced-content-left"></div> |
| | | <div class="public-bounced-content-right"></div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | |
| | | import '@/components/BaseNav/SolidWaste/directive' |
| | | |
| | | export default { |
| | | name: 'PublicBounced', |
| | |
| | | left: 10%; |
| | | background-color: #002432; |
| | | margin: 1% auto; |
| | | border: 1px #a5bfd8 solid; |
| | | border: 1px #9fc5c8 solid; |
| | | |
| | | .public-bounced-title { |
| | | width: 100%; |
| | |
| | | } |
| | | } |
| | | |
| | | .public-bounced-content { |
| | | width: 100%; |
| | | height: 100%; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-around; |
| | | .public-bounced-content-left { |
| | | width: 48%; |
| | | height: 400px; |
| | | border: 1px red solid; |
| | | } |
| | | .public-bounced-content-right { |
| | | width: 48%; |
| | | height: 400px; |
| | | border: 1px red solid; |
| | | } |
| | | } |
| | | |
| | | } |
| | | </style> |