yitisheng-mini-app/pages/error/serviceDown.vue

35 lines
578 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<view>
<text style="font-size: 25px;color: #333;">
系统维护中请稍后重试~
</text>
</view>
<view>
<text style="font-size: 18px;color: #999;">
{{errMsg}}
</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad(query) {
this.errMsg = query.errMsg || ''
},
methods: {
}
}
</script>
<style>
</style>