123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <view>
- <u-navbar title="提交结果" title-color="#101010"></u-navbar>
- <view class="data">
- <image class="img" src="@/assets/img/success.png" mode=""></image>
- <view class="t1">上报成功
- </view>
- <view class="t2">本次故障问题已提交成功</view>
- </view>
- <view class="floating-button" >
- <view class="button button2" @click="goBack()" >
- 返回
- </view>
-
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss" scoped>
-
- .body {
- padding: 32rpx;
- background-color: rgba(242, 244, 246, 1);
- }
- .data{
- text-align: center;
- padding-top:120rpx;
- .img{
- width: 200rpx;
- height: 200rpx;
- }
- .t1{
- color: #101010;
- font-weight: bold;
- margin-top: 40rpx;
- font-size: 40rpx;
- }
- .t2{
- margin-top: 8rpx;
- color: rgba(119,119,119,1);
- font-size: 24rpx;
- }
- }
- .floating-button {
- padding-top:120rpx;
- text-align: center;
- .button {
- margin: 0 auto;
-
- border-radius: 50px;
- height: 80rpx;
- width: 80%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 12rpx;
- background-color:#1677FF ;
- color: rgba(255, 255, 255, 1);
- font-size: 36rpx;
- }
- .button2{
- background-color: #1677FF
- }
- }
- </style>
|