business.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="center">
  3. <view class="kong">
  4. <view class="search flex">
  5. <image src="../../static/index/index09.png" class="address"></image>
  6. <!-- <view class="shop-name clamp" @click.stop="canChange == 0?nav('/pages/shoping/list'):''">{{ storeInfo.name }}</view> -->
  7. <view class="shop-name clamp">椒江区</view>
  8. <image class="shop-jt" src="../../static/index/index07.png" mode=""></image>
  9. <view class="input-box flex" @click.stop="clickSearch">
  10. <view class=" input-content flex">
  11. <view class="iconfont iconsearch"></view>
  12. <view class="input"><input type="text" disabled value="输入关键字搜索" /></view>
  13. </view>
  14. </view>
  15. </view>
  16. <!-- <u-empty mode="data" text="敬请期待"></u-empty> -->
  17. </view>
  18. <u-tabbar activeColor="#EE0979" v-model="current" :list="tabbar" :mid-button="true"></u-tabbar>
  19. </view>
  20. </template>
  21. <script>
  22. import { tabbar } from '@/utils/tabbar.js';
  23. export default {
  24. data() {
  25. return {
  26. tabbar: tabbar,
  27. current: 1
  28. };
  29. }
  30. };
  31. </script>
  32. <style lang="less">
  33. .kong {
  34. height: 100vh;
  35. width: 750rpx;
  36. }
  37. </style>