1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <div class="noData">
- <img src="/static/images/noPeople.png" class="appImg" />
- <div class="noText" v-if="$route.params.status == 0">
- 当前用户未授权进入系统,请联系管理员为您【启用积分管理】,<br />如需咨询客服,请到您企业专属的功道云服务群咨询
- </div>
- <div class="noText" v-if="$route.params.status == 4444">
- 您当前的套餐已到期,<br />如需继续使用,请联系客服4006877880
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- created() {}
- };
- </script>
- <style scoped="scoped">
- .appImg {
- width: 280px;
- margin-top: 100px;
- }
- .noData {
- text-align: center;
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- flex-wrap: wrap;
- }
- .noText {
- margin-top: 80px;
- }
- .codeImg {
- width: 200px;
- height: 200px;
- }
- </style>
|