page.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <view
  3. :class="customClass"
  4. @click="clickPage"
  5. :style="{
  6. 'background': bgColor,
  7. 'min-height': '100vh'
  8. }"
  9. >
  10. <view
  11. v-if="nav"
  12. class="pagae-nav"
  13. :class="navClass"
  14. :style="{
  15. background: navColor,
  16. paddingTop: statusBarHeight + 'px',
  17. height: statusBarHeight + 40 + 'px'
  18. }"
  19. >
  20. <view class="relative flex-align-center" style="height: 36px">
  21. <view
  22. v-if="title"
  23. class="title line-ellipsis"
  24. :class="[light ? 'color-white' : 'color-1']"
  25. :style="{ background: navColor }"
  26. >
  27. {{ title }}
  28. </view>
  29. <view
  30. v-if="showBack"
  31. class="back cuIcon-back "
  32. @click="backAction"
  33. :style="light ? 'color:#fff' : 'color:#000'"
  34. ></view>
  35. </view>
  36. </view>
  37. <view v-if="nav" :style="{ height: statusBarHeight + 36 + 'px' }"></view>
  38. <slot></slot>
  39. <loading />
  40. <message ref="notify" />
  41. </view>
  42. </template>
  43. <script>
  44. import store from '@/store'
  45. import { SET_NOTIFY } from '@/store/mutation-types'
  46. import loading from './loading.vue'
  47. import message from './message.vue'
  48. export default {
  49. components: { loading, message },
  50. props: {
  51. customClass: {
  52. type: String,
  53. default: ''
  54. },
  55. nav: {
  56. type: Boolean,
  57. default: true
  58. },
  59. navColor: {
  60. type: String,
  61. default: '#fff'
  62. },
  63. navClass: {
  64. type: String,
  65. default: ''
  66. },
  67. title: {
  68. type: String,
  69. default: ''
  70. },
  71. titleColor: {
  72. type: String,
  73. default: ''
  74. },
  75. showBack: {
  76. type: Boolean,
  77. default: true
  78. },
  79. light: {
  80. type: Boolean,
  81. default: false
  82. },
  83. bgColor: {
  84. type: String,
  85. default: ''
  86. }
  87. },
  88. data() {
  89. return { }
  90. },
  91. mounted() {
  92. this.refreshNotify()
  93. },
  94. computed: {
  95. statusBarHeight() {
  96. if (store.state.systemInfo) {
  97. return store.state.systemInfo.statusBarHeight
  98. }
  99. return 32
  100. }
  101. },
  102. methods: {
  103. refreshNotify() {
  104. store.commit(SET_NOTIFY, this.$refs.notify)
  105. },
  106. backAction() {
  107. // this.$router.back()
  108. uni.navigateBack({
  109. delta:1
  110. })
  111. },
  112. clickPage() {
  113. this.$emit('click')
  114. }
  115. }
  116. }
  117. </script>
  118. <style lang="scss" scoped>
  119. .pagae-nav {
  120. position: fixed;
  121. top: 0;
  122. left: 0;
  123. width: 100%;
  124. z-index: 1800;
  125. .title {
  126. font-size: 30rpx;
  127. font-weight: bold;
  128. text-align: center;
  129. line-height: 72rpx;
  130. width: 500rpx;
  131. }
  132. .back {
  133. position: absolute;
  134. left: 28rpx;
  135. width: 48rpx;
  136. height: 64rpx;
  137. line-height: 64rpx;
  138. font-size: 32rpx;
  139. z-index: 1800;
  140. }
  141. }
  142. </style>