AI-draw.vue 733 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="draw_container" :style="{'top': viewTop + 'px', 'height': viewHeight + 'px'}">
  3. <view class="content">
  4. AI_画图,暂未开放
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. props: {
  15. viewTop: {
  16. type: Number,
  17. default: 0
  18. },
  19. viewHeight: {
  20. type: Number,
  21. default: 0
  22. }
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. .draw_container{
  30. display: flex;
  31. box-sizing: border-box;
  32. position: fixed;
  33. width: 100%;
  34. background-color: #2A2832;
  35. .content{
  36. display: flex;
  37. box-sizing: border-box;
  38. width: 100%;
  39. margin-top: 100px;
  40. color: #ffffff;
  41. font-size: 30px;
  42. justify-content: center;
  43. }
  44. }
  45. </style>