You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
794 B

  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. },
  7. onHide: function() {
  8. }
  9. }
  10. </script>
  11. <style lang="scss">
  12. /*每个页面公共css */
  13. @import "@/uni_modules/uview-ui/index.scss";
  14. @import '@/static/style/common/common.scss';
  15. body,uni-page-body {
  16. height: 100%;
  17. }
  18. /* 隐藏路径为 pages/payment/payment 页面的 navigationBar */
  19. uni-page[data-page="pages/payment/payment"] uni-page-head {
  20. display: none;
  21. }
  22. /* 隐藏路径为 pages/merchant-login/index 页面的 navigationBar */
  23. uni-page[data-page="pages/merchant-login/index"] uni-page-head {
  24. display: none;
  25. }
  26. /* 隐藏路径为 pages/agent-login/index 页面的 navigationBar */
  27. uni-page[data-page="pages/agent-login/index"] uni-page-head {
  28. display: none;
  29. }
  30. </style>