transactionDetail.vue 245 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="content"></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {};
  8. },
  9. onLoad() {},
  10. onShow() {},
  11. methods: {}
  12. };
  13. </script>
  14. <style lang="scss">
  15. page,
  16. .content {
  17. min-height: 100%;
  18. height: auto;
  19. }
  20. </style>