Commit feae3a32 authored by ZJG's avatar ZJG

订单添加bar

parent e0b93461
...@@ -183,6 +183,7 @@ ...@@ -183,6 +183,7 @@
</view> </view>
</view> </view>
<u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="20" :margin-bottom="20" bg-color="#ECF1F4" /> <u-loadmore :status="status" :load-text="loadText" :font-size="24" :margin-top="20" :margin-bottom="20" bg-color="#ECF1F4" />
<view style="width: 100%;height: 85px;"></view>
</scroll-view> </scroll-view>
</view> </view>
<u-popup v-model="showModal" mode="center" length="80%"> <u-popup v-model="showModal" mode="center" length="80%">
...@@ -205,16 +206,17 @@ ...@@ -205,16 +206,17 @@
</view> </view>
</u-popup> </u-popup>
<auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth='goback'></auth> <auth v-if="showAuth" @changeuserinfo="reloadUserinfo" @gbAuth='goback'></auth>
<tabbar v-if='barshow==1'></tabbar>
</view> </view>
</template> </template>
<script> <script>
import auth from "@/components/auth/index.vue"; import auth from "@/components/auth/index.vue";
import tabbar from "@/components/tabbar/index";
export default{ export default{
components: { components: {
auth, auth,
tabbar
}, },
data(){ data(){
return{ return{
...@@ -251,10 +253,14 @@ ...@@ -251,10 +253,14 @@
index:0, index:0,
item:{}, item:{},
payindex:0,//支付的索引 payindex:0,//支付的索引
barshow:0,
} }
}, },
onLoad(options){ onLoad(options){
this.current = options.status || 0; this.current = options.status || 0;
if(options.barshow){
this.barshow=options.barshow
}
let currentPages = getCurrentPages(); let currentPages = getCurrentPages();
let u = "/" + currentPages[currentPages.length - 1].route; let u = "/" + currentPages[currentPages.length - 1].route;
let pages = wx.getStorageSync("basedata") ? let pages = wx.getStorageSync("basedata") ?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment