天波h5前端应用
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

37 行
648B

  1. <template>
  2. <div class="error">
  3. <div class="tips">
  4. <p>非本平台配送的电话卡。</p>
  5. <!-- <p>无此服务。</p> -->
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'iotcard-error',
  12. data(){
  13. return {
  14. }
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .error {
  20. height: 100vh;
  21. background-color: #fff;
  22. @include center();
  23. .tips {
  24. p {
  25. font-size: 16px;
  26. color: #000;
  27. padding: 10px;
  28. text-align: left;
  29. font-weight: 500;
  30. }
  31. }
  32. }
  33. </style>