混凝土运输管理微信小程序、替班
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.

27 lines
472 B

2 weeks ago
1 week ago
2 weeks ago
1 week ago
2 weeks ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. // 初始化角色状态
  5. this.$store.commit('initRole');
  6. },
  7. onShow: function() {
  8. // this.$store.commit('initConfig')
  9. // 确保角色状态正确
  10. this.$store.commit('initRole');
  11. },
  12. onHide: function() {
  13. }
  14. }
  15. </script>
  16. <style>
  17. @import url("common.scss");
  18. /*每个页面公共css */
  19. body{
  20. background-color: #f7f7f7;
  21. font-size: 30rpx;
  22. }
  23. .page{
  24. padding-top: var(--window-top);
  25. }
  26. </style>