| 12345678910111213141516171819202122232425 |
- <template>
- <view>
- <view class="con">
- <view class="title">支付成功</view>
- <navigator hover-class="none" class="btn" open-type="exit" target="miniProgram">返回应用</navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad(options) {},
- onShow() {},
- methods: {}
- };
- </script>
- <style>
- @import './index.css';
- </style>
|