123456789101112131415161718192021222324 |
- <template>
- <view>
- <uni-nav-bar title="历史出货记录" :status-bar="true" @clickLeft="$utils.back()" background-color="#3F92F9" color="#FFF">
- <view slot="left">
- <u-icon name="arrow-leftward" color="#FFF" size="30"></u-icon>
- </view>
- </uni-nav-bar>
- </view>
- </template>
- <script>
- export default {
- name:"my-nav-bar",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- </style>
|