repairReportSuccess.vue 1.24 KB
<template>
  <view class="container">
    <Navbar title="结果反馈" canBack></Navbar>
    <view class="flex containerMain justify-center flex-direction">
      <view class="flex flex-direction align-center">
        <u-image src="@/static/images/home/u118.png" width="90px" height="97px"></u-image>
        <view style="font-size: 34rpx" class="margin-top-sm">
          提交成功
        </view>
      </view>
      <view class="padding text-gray text-center line-gray" style="line-height: 26px">
        您可在《我的》“维护/报修”内查看提交记录, 并可实时跟踪相关进展情况
      </view>
      <view class="flex justify-center">
        <view class="w40 flex justify-center margin-top" @click="goBack">
          <u-button color="#EA5504">返回首页</u-button>
        </view>
      </view>
    </view>
  </view>
</template>

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

    }

  },
  methods:{
    goBack(){
      uni.switchTab({
        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>