1234567891011121314151617181920212223 |
- <template>
- <view style="display: flex;flex-direction: column;align-items: center;" @click="$jump('/pages/category/index')">
- <tui-icon class="search-icon" name="manage" color="#000000" :size="18"></tui-icon>
- <text style="font-size: 26upx;">分类</text>
- </view>
- </template>
- <script>
- export default {
- methods: {
- handleClick() {
- uni.showToast({
- title: '功能未开放',
- duration: 2000,
- icon: 'none'
- })
- }
- }
- }
- </script>
- <style lang="less" scoped>
- </style>
|