景徳镇旅游微信小程序
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.

54 lines
896 B

  1. <template>
  2. <!-- 达人和讲述 -->
  3. <view class="tell">
  4. <navbar :title="titles[type]" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="tell-top" v-if="type == 0 ">
  6. <view>级别</view>
  7. <view>遗产点</view>
  8. </view>
  9. <cardList :type="type"/>
  10. <tabber/>
  11. </view>
  12. </template>
  13. <script>
  14. import cardList from '../components/list/cardList.vue'
  15. export default {
  16. components: {
  17. cardList
  18. },
  19. data() {
  20. return {
  21. titles: ['遗产讲述', '达人同游'],
  22. type: 0,
  23. }
  24. },
  25. onLoad(args) {
  26. this.type = args.type || 0
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. .tell {
  34. .tell-top {
  35. display: flex;
  36. justify-content: left;
  37. align-items: center;
  38. height: 80rpx;
  39. background-color: #fff;
  40. border-top: 2rpx solid #D0D0D0;
  41. border-bottom: 2rpx solid #D0D0D0;
  42. view {
  43. flex: 1;
  44. margin-left: 5%;
  45. }
  46. }
  47. }
  48. </style>