123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view>
- <image class="scc" src="../img/success.png"></image>
- <view class="resuil">提交成功</view>
- </view>
- </template>
- <script>
- // import uniNavBar from "@/components/uni-nav-bar/uni-nav-bar.vue"
- export default {
- data () {
- return {
-
- }
- },
- // components: {uniNavBar},
- onLoad: function (option){
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- text-align: center;
- background-color: #ffffff;
- }
- .scc{
- margin-top: 100rpx;
- width: 160rpx;
- height: 160rpx;
- }
- .resuil{
- margin-top: 20rpx;
- font-weight: 600;
- letter-spacing: 3rpx;
- font-size: 36rpx;
- }
- .btn{
- width: 280rpx;
- letter-spacing: 3rpx;
- height: 70rpx;
- font-weight: 600;
- line-height: 70rpx;
- border: 2px solid #3bb270;
- color: #3bb270;
- border-radius: 10rpx;
- position: absolute;
- bottom: 200rpx;
- left: 50%;
- margin-left: -130rpx;
- }
- </style>
|