index.vue 927 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="box">
  3. 网站已关闭
  4. </view>
  5. </template>
  6. <script>
  7. // +----------------------------------------------------------------------
  8. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  9. // +----------------------------------------------------------------------
  10. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  11. // +----------------------------------------------------------------------
  12. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  13. // +----------------------------------------------------------------------
  14. // | Author: CRMEB Team <admin@crmeb.com>
  15. // +----------------------------------------------------------------------
  16. </script>
  17. <style lang="scss">
  18. .box{
  19. position: fixed;
  20. left: 50%;
  21. top: 50%;
  22. transform: translate(-50%,-50%);
  23. font-size: 40rpx;
  24. font-weight: bold;
  25. color: #666;
  26. text-align: center;
  27. }
  28. </style>