| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="content-box">
-
- <uni-nav-bar
- fixed="true"
- statusBar="true"
- left-icon="back"
- title="搜索"
- @clickLeft="back"
- >
- <!--右菜单-->
- <template slot="right">
- <u-button
- type="success"
- size="small"
- class="u-reset-button"
- @click="$refs.treePicker._show()"
- text="选择分类"
- ></u-button>
- </template>
- </uni-nav-bar>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .content-box {
- height: 100vh;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- background-color: $page-bg;
- }
- </style>
|