From c25e12565ad5c737692f9af61ffd1f965f4491bd Mon Sep 17 00:00:00 2001
From: queenwuli <942534046@qq.com>
Date: Thu, 24 Dec 2020 16:09:48 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/jyyforjava/hive-app into master
---
hive-app/pages/workbench/selectService.vue | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/hive-app/pages/workbench/selectService.vue b/hive-app/pages/workbench/selectService.vue
index 3d432d7..a437d22 100644
--- a/hive-app/pages/workbench/selectService.vue
+++ b/hive-app/pages/workbench/selectService.vue
@@ -70,9 +70,7 @@
<button class="blue-btn btn mr-0">提交订单</button>
</navigator>
</view>
- <uni-popup ref="popup" type="bottom">
- <shopping-cart></shopping-cart>
- </uni-popup>
+ <shopping-cart ref="shopCart"></shopping-cart>
</view>
</template>
@@ -90,9 +88,14 @@
return{
}
},
+ onLoad(options) {
+ uni.setNavigationBarTitle({
+ title: '当前客户:' + options.vipName
+ });
+ },
methods:{
openShoppingCart(){
- this.$refs.popup.open()
+ this.$refs.shopCart.show()
}
}
}
--
Gitblit v1.9.1