|
- <template>
- <div class="error">
- <div class="tips">
- <p>非本平台配送的电话卡。</p>
- <!-- <p>无此服务。</p> -->
- </div>
- </div>
- </template>
-
- <script>
- export default {
- name: 'iotcard-error',
- data(){
- return {
-
- }
- }
- }
- </script>
-
- <style scoped lang="scss">
- .error {
- height: 100vh;
- background-color: #fff;
- @include center();
- .tips {
- p {
- font-size: 16px;
- color: #000;
- padding: 10px;
- text-align: left;
- font-weight: 500;
- }
- }
- }
- </style>
|