12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="draw_container" :style="{'top': viewTop + 'px', 'height': viewHeight + 'px'}">
- <view class="content">
- AI_画图,暂未开放
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- props: {
- viewTop: {
- type: Number,
- default: 0
- },
- viewHeight: {
- type: Number,
- default: 0
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .draw_container{
- display: flex;
- box-sizing: border-box;
- position: fixed;
- width: 100%;
- background-color: #2A2832;
- .content{
- display: flex;
- box-sizing: border-box;
- width: 100%;
- margin-top: 100px;
- color: #ffffff;
- font-size: 30px;
- justify-content: center;
- }
- }
- </style>
|