successSubmit.vue 1.26 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; color: #EA5504;" 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="w90 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'
      // });
      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>