index.vue 456 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="content-box">
  3. <uni-nav-bar fixed="true" statusBar="true" left-icon="back" title="投料单" background-color="#F7F9FA" color="#000"
  4. @clickLeft="back"></uni-nav-bar>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .content-box {
  19. height: 100vh;
  20. overflow: hidden;
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. </style>