TopBar.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="topbar flex-between" :style="{'height':`${topbarOffsetHeight-statusBarHeight}px`,'padding-top':`${statusBarHeight}px`}">
  3. <view class="icon flex-center" @click="action">
  4. <image src="../../static/back.png" mode="aspectFill" class="icon-img" v-if="icon==='back'"></image>
  5. </view>
  6. <view class="text font32 fw600" :style="{'line-height':`${topbarOffsetHeight-statusBarHeight}px`}">
  7. {{title}}
  8. </view>
  9. <view class="null">
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. name:"TopBar",
  16. props:{
  17. icon:{
  18. type:String,
  19. default:''
  20. },
  21. title:{
  22. type:String,
  23. default:''
  24. }
  25. },
  26. data() {
  27. return {
  28. };
  29. },
  30. computed:{
  31. statusBarHeight(){
  32. return this.$store.state.statusBarHeight;
  33. },
  34. topbarOffsetHeight(){
  35. return this.$store.state.topbarOffsetHeight;
  36. }
  37. },
  38. methods:{
  39. action(){
  40. switch(this.icon){
  41. case 'back':
  42. uni.navigateBack({
  43. delta:1
  44. })
  45. break;
  46. }
  47. }
  48. }
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. @import "../../public.scss";
  53. .topbar{
  54. background-color: $bgcolor1;
  55. }
  56. .icon{
  57. width: 128rpx;
  58. height: 100%;
  59. .icon-img{
  60. width: 40rpx;
  61. height: 40rpx;
  62. }
  63. }
  64. .text{
  65. height: 100%;
  66. flex: 1;
  67. color: $fontcolor5;
  68. text-align: center;
  69. }
  70. .null{
  71. width: 128rpx;
  72. height: 100%;
  73. }
  74. </style>