index.vue 388 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <view class="con">
  4. <view class="title">支付成功</view>
  5. <navigator hover-class="none" class="btn" open-type="exit" target="miniProgram">返回应用</navigator>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. onLoad(options) {},
  15. onShow() {},
  16. methods: {}
  17. };
  18. </script>
  19. <style>
  20. @import './index.css';
  21. </style>