123456789101112131415161718192021222324252627282930 |
- <template>
- <div class='app-container'>
- <uni-icons type="checkbox-filled" color="#FFF" size="68" />
- <span>支付成功</span>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- payStatus.postMessage('{"status": 1}')
- }
- }
- </script>
- <style lang="scss" scoped>
- .app-container {
- height: 100%;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- </style>
|