12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="">
- <view class="imgBox">
- <image src="../../static/null_image_success@2x.png" style="width: 100%;height: 100%;"></image>
- </view>
- <view class="text">
- 恭喜您~ 评价完成~
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- }
- }
- </script>
- <style>
- .imgBox{
- width: 520rpx;
- height: 520rpx;
- margin: 0 auto;
- margin-top: 262rpx;
-
- }
- .text{
- width:310rpx;
- height:50rpx;
- font-size:36rpx;
- font-family:PingFang SC;
- font-weight:400;
- color:rgba(36,36,36,1);
- margin-top: 47rpx;
- margin: 0 auto;
- }
- </style>
|