historyRecord.vue 406 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!-- 历史记录 -->
  2. <template>
  3. <view id="gasCylinderHistoryRecord">
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. onLoad(option) {
  13. },
  14. onShow() {
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style lang="stylus" scoped>
  21. #gasCylinderHistoryRecord {
  22. height: 100%;
  23. width: 100%;
  24. display flex ;
  25. flex-direction column;
  26. overflow: hidden;
  27. }
  28. </style>