my-nav-bar.vue 417 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <uni-nav-bar title="历史出货记录" :status-bar="true" @clickLeft="$utils.back()" background-color="#3F92F9" color="#FFF">
  4. <view slot="left">
  5. <u-icon name="arrow-leftward" color="#FFF" size="30"></u-icon>
  6. </view>
  7. </uni-nav-bar>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name:"my-nav-bar",
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. </style>