12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view class="successWrapper">
-
- <view>
- <img src="../../../static/success.png" alt="">
- <!-- <img src="../../../static/fail.png" alt=""> -->
- <view>提交成功</view>
- </view>
- <view class="btn-area submitBottomBtn padding-lr-sm">
- <button class="bg-blue round margin-top" @click="submit()">返 回 </button>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad: function(option) {
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
-
- </style>
|