emptyPage.vue 1.15 KB
<template>
  <view class="container">
    <Navbar :title="pageTitle" canBack></Navbar>
    <view class="flex containerMain justify-center flex-direction">
      <view class="flex flex-direction align-center">
        <u-image src="@/static/images/home/emptyPage.png" width="370rpx" height="250rpx"></u-image>
      </view>
      <view class="padding  text-gray text-center line-gray" style="line-height: 33px; font-size: 38rpx">
        系统升级中,本功能暂停使用 具体恢复时间另行通知
      </view>
    </view>
  </view>
</template>

<script>
export default {
  name: "repairReportSuccess",
  data(){
    return{
      pageTitle:''
    }

  },
  onLoad(data){
    if(data.pageName){
      this.pageTitle = data.pageName;
    }
    console.log('打印data', data)

  },
  methods:{
    goBack(){
      uni.switchTab({
        url: '/pages/home/home'
      });
      // uni.navigateTo({
      //   url:'/pages/home/home'
      // })
    },

  }
}
</script>

<style lang="scss" scoped>
.container{
  .containerMain{
    background-color: #ffffff;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    height: calc(100vh - 70px);

  }
}
</style>