|
@@ -50,7 +50,7 @@
|
|
|
</view>
|
|
|
<u-back-top :scroll-top="scrollTop" tips="顶部" :custom-style="{backgroundColor: '#a0cfff',color: '#2979ff'}"
|
|
|
:iconStyle="{color: '#2979ff',fontSize: '34rpx'}" mode="square"icon="arrow-up" ></u-back-top>
|
|
|
- <view class="cu-bar tabbar bg-white shadow foot">
|
|
|
+ <!-- <view class="cu-bar tabbar bg-white shadow foot">
|
|
|
<view :class="PageCur=='sale'?'action text-pink':'action text-gray'" @click="NavChange" data-cur="sale">
|
|
|
<view><image style='width:21px;height:23px;' :src="PageCur=='sale'?'https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/zixun_check.png':'https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/zixun.png'"></image></view> 资讯
|
|
|
</view>
|
|
@@ -64,7 +64,7 @@
|
|
|
</button>
|
|
|
粮信
|
|
|
</view>
|
|
|
- <view v-if="showTran" :class="PageCur=='tran'?'action text-pink':'action text-gray'" @click="NavChange" data-cur="tran">
|
|
|
+ <view :class="PageCur=='tran'?'action text-pink':'action text-gray'" @click="NavChange" data-cur="tran">
|
|
|
<view><image style='width:25px;height:20px;' :src="PageCur=='tran'?'https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wuliu_check.png':'https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wuliu.png'"></image></view> 物流
|
|
|
</view>
|
|
|
<view :class="PageCur=='my'?'action text-pink':'action text-gray'" @click="NavChange" data-cur="my">
|
|
@@ -74,7 +74,9 @@
|
|
|
</view>
|
|
|
我的
|
|
|
</view>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
+
|
|
|
+ <u-tabbar v-model="current" :list="listTab" :mid-button="true"></u-tabbar>
|
|
|
<drag-button
|
|
|
:isDock="true"
|
|
|
:existTabBar="true"
|
|
@@ -101,9 +103,53 @@
|
|
|
scrollTop: 0,
|
|
|
categoryList:[{title:'我要买粮',id:'0'},{title:'我要卖粮',id:'1'}],
|
|
|
TabCur: 0,
|
|
|
+ listTab: [
|
|
|
+ {
|
|
|
+ iconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/zixun.png",
|
|
|
+ selectedIconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/zixun_check.png",
|
|
|
+ text: '资讯',
|
|
|
+ count: 0 ,
|
|
|
+ isDot: true,
|
|
|
+ customIcon: false,
|
|
|
+ pagePath:'/pages/sale/information'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ iconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/jiaoyi.png",
|
|
|
+ selectedIconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/jiaoyi_check.png",
|
|
|
+ text: '交易',
|
|
|
+ customIcon: false,
|
|
|
+ pagePath:'/pages/buy/transaction'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ iconPath: "chat",
|
|
|
+ selectedIconPath: "chat",
|
|
|
+ text: '粮信',
|
|
|
+ midButton: true,
|
|
|
+ customIcon: false,
|
|
|
+ // pagePath:'/pages/home/home'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ iconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wuliu.png",
|
|
|
+ selectedIconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wuliu_check.png",
|
|
|
+ text: '物流',
|
|
|
+ customIcon: false,
|
|
|
+ pagePath:'/pages/tran/tran'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ iconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wode.png",
|
|
|
+ selectedIconPath: "https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/wode_check.png",
|
|
|
+ text: '我的',
|
|
|
+ count: this.myTip,
|
|
|
+ isDot: false,
|
|
|
+ customIcon: false,
|
|
|
+ pagePath:'/pages/user/user'
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ current: 1
|
|
|
};
|
|
|
},
|
|
|
onShow() {
|
|
|
+ uni.hideTabBar()
|
|
|
if(uni.getStorageSync("PageCur")){
|
|
|
this.PageCur = uni.getStorageSync("PageCur");
|
|
|
}
|