123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="center">
- <view class="kong">
- <view class="search flex">
- <image src="../../static/index/index09.png" class="address"></image>
- <!-- <view class="shop-name clamp" @click.stop="canChange == 0?nav('/pages/shoping/list'):''">{{ storeInfo.name }}</view> -->
- <view class="shop-name clamp">椒江区</view>
- <image class="shop-jt" src="../../static/index/index07.png" mode=""></image>
- <view class="input-box flex" @click.stop="clickSearch">
- <view class=" input-content flex">
- <view class="iconfont iconsearch"></view>
- <view class="input"><input type="text" disabled value="输入关键字搜索" /></view>
- </view>
- </view>
- </view>
- <!-- <u-empty mode="data" text="敬请期待"></u-empty> -->
- </view>
- <u-tabbar activeColor="#EE0979" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar>
- </view>
- </template>
- <script>
- import { tabbar } from '@/utils/tabbar.js';
- export default {
- data() {
- return {
- tabbar: tabbar,
- current: 1
- };
- }
- };
- </script>
- <style lang="less">
- .kong {
- height: 100vh;
- width: 750rpx;
- }
- </style>
|