nav.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view class="nav-content">
  3. <view class="nav"><view class="log" v-if="navtype" @tap="clickOrder"></view>{{ navname }} <view class="up" v-if="navtypes">关于</view></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. props:{
  13. navname:{
  14. type:String,
  15. default:''
  16. },
  17. navtype:{
  18. type:Boolean,
  19. default:true
  20. },
  21. navtypes:{
  22. type:Boolean,
  23. default:false
  24. }
  25. },
  26. created(option) {
  27. },
  28. onLoad(){
  29. },
  30. onUnload() {
  31. },
  32. onShow() {
  33. },
  34. mounted() {
  35. },
  36. methods: {
  37. clickOrder () {
  38. this.$emit('fall')
  39. }
  40. },
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. .nav-content{
  45. >.nav{
  46. width: 100%;
  47. height: 4.375rem;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. padding-top: .9375rem;
  52. // background: rgba(49,85,99,1);
  53. color: rgb(255, 255, 255);
  54. font-family: Noto Sans SC;
  55. font-size: 1rem;
  56. position: relative;
  57. >.log{
  58. width: .375rem;
  59. height: .75rem;
  60. font-size: .75rem;
  61. position: absolute;
  62. left: 1.5rem;
  63. background: url('../../static/ico.png') no-repeat;
  64. background-size: 100% 100%;
  65. }
  66. >.up{
  67. position: absolute;
  68. right: 1.5rem;
  69. color: rgb(255, 255, 255);
  70. font-family: Noto Sans SC;
  71. font-size: .875rem;
  72. font-weight: 500;
  73. }
  74. }
  75. }
  76. </style>