template.uvue 5.3 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1
<template>
DCloud-WZF's avatar
DCloud-WZF 已提交
2 3 4 5 6 7
  <!-- #ifdef APP -->
  <scroll-view style="flex: 1">
    <!-- #endif -->
    <view class="uni-container">
      <view class="uni-header-logo">
        <image class="uni-header-image" src="/static/templateIndex.png"></image>
DCloud-WZF's avatar
DCloud-WZF 已提交
8
      </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
9 10 11 12 13 14 15 16 17 18
      <view class="uni-hello-text">
        <text class="hello-text">以下是部分模板示例,更多模板见插件市场:</text>
        <u-link
          class="hello-link"
          href="https://ext.dcloud.net.cn"
          :text="'https://ext.dcloud.net.cn'"
          :inWhiteList="true"
        ></u-link>
      </view>
      <view class="uni-panel" v-for="(item, index) in list" :key="item.id">
DCloud-WZF's avatar
DCloud-WZF 已提交
19
        <view
DCloud-WZF's avatar
DCloud-WZF 已提交
20 21 22
          class="uni-panel-h"
          :class="item.open ? 'uni-panel-h-on' : ''"
          @click="triggerCollapse(index, item)"
DCloud-WZF's avatar
DCloud-WZF 已提交
23 24
        >
          <text
DCloud-WZF's avatar
DCloud-WZF 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
            class="uni-panel-text"
            :class="item.enable == false ? 'text-disabled' : ''"
            >{{ item.name }}</text
          >
          <image
            :src="
              item.pages.length > 0
                ? item.open
                  ? arrowUpIcon
                  : arrowDownIcon
                : arrowRightIcon
            "
            class="uni-icon"
          >
          </image>
        </view>
        <view class="uni-panel-c" v-if="item.open">
          <view
M
mehaotian 已提交
43 44
            class="uni-navigate-item"
						:hover-class="page.enable == false?'':'is--active'"
DCloud-WZF's avatar
DCloud-WZF 已提交
45 46 47
            v-for="(page, key) in item.pages"
            :key="key"
            @click="goDetailPage(page)"
DCloud-WZF's avatar
DCloud-WZF 已提交
48
          >
DCloud-WZF's avatar
DCloud-WZF 已提交
49 50 51 52 53 54 55
            <text
              class="uni-navigate-text"
              :class="page.enable == false ? 'text-disabled' : ''"
              >{{ page.name }}</text
            >
            <image :src="arrowRightIcon" class="uni-icon"></image>
          </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
56 57 58
        </view>
      </view>
    </view>
DCloud-WZF's avatar
DCloud-WZF 已提交
59
    <!-- #ifdef APP -->
DCloud-WZF's avatar
DCloud-WZF 已提交
60
  </scroll-view>
DCloud-WZF's avatar
DCloud-WZF 已提交
61
  <!-- #endif -->
DCloud_JSON's avatar
DCloud_JSON 已提交
62 63
</template>

Y
yurj26 已提交
64
<script lang="uts">
DCloud-WZF's avatar
DCloud-WZF 已提交
65 66 67 68 69
type Page = {
  name: string
  enable?: boolean
  url: string
}
DCloud_JSON's avatar
DCloud_JSON 已提交
70

DCloud-WZF's avatar
DCloud-WZF 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
type ListItem = {
  id: string
  name: string
  open: boolean
  pages: Page[]
  url?: string
  enable?: boolean
}
export default {
  data() {
    return {
      list: [
        {
          id: 'long-list',
          url: 'long-list',
          name: '复杂长列表',
          open: false,
H
hdx 已提交
88
          enable: true,
DCloud-WZF's avatar
DCloud-WZF 已提交
89 90 91
          pages: [] as Page[],
        },
        {
92 93
          id: 'scroll-fold-nav',
          url: 'scroll-fold-nav',
W
wanganxp 已提交
94
          name: '随滚动折叠的导航栏',
DCloud-WZF's avatar
DCloud-WZF 已提交
95 96 97 98 99 100 101 102
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'swiper-list',
          url: 'swiper-list',
          name: 'swiper-list',
          open: false,
H
hdx 已提交
103
          enable: true,
DCloud-WZF's avatar
DCloud-WZF 已提交
104
          pages: [] as Page[],
105 106 107 108 109 110 111 112
        },
        {
          id: 'swiper-list2',
          url: 'swiper-list2',
          name: 'swiper-list2',
          open: false,
          enable: true,
          pages: [] as Page[],
DCloud-WZF's avatar
DCloud-WZF 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
        },
        {
          id: 'custom-refresher',
          url: 'custom-refresher',
          name: '自定义下拉刷新',
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'pull-zoom-image',
          url: 'pull-zoom-image',
          name: '下拉缩放顶部封面图',
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'swiper-vertical-video',
          url: 'swiper-vertical-video',
          name: '竖滑视频',
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'scroll-sticky',
          url: 'scroll-sticky',
          name: '吸顶',
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'half-screen',
          url: 'half-screen',
          name: '半屏弹窗',
DCloud-yyl's avatar
DCloud-yyl 已提交
146 147
          open: false,
          enable: false,
DCloud-WZF's avatar
DCloud-WZF 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
          pages: [] as Page[],
        },
        {
          id: 'drop-card',
          url: 'drop-card',
          name: '划走式卡片',
          open: false,
          pages: [] as Page[],
        },
        {
          id: 'calendar',
          url: 'calendar',
          name: '日历',
          open: false,
          pages: [] as Page[],
        },
      ] as ListItem[],
      arrowUpIcon: '/static/icons/arrow-up.png',
      arrowDownIcon: '/static/icons/arrow-down.png',
      arrowRightIcon: '/static/icons/arrow-right.png',
    }
  },
  methods: {
    triggerCollapse(index?: number, item: ListItem) {
      if (item.pages.length == 0) {
        const page: Page = {
          name: item.name,
          enable: item.enable,
          url: item.url!,
        }
        this.goDetailPage(page)
        return
      }
      for (var i = 0; i < this.list.length; ++i) {
        if (index == i) {
          this.list[i].open = !this.list[i].open
        } else {
          this.list[i].open = false
        }
      }
    },
    goDetailPage(e: Page) {
      if (e.enable == false) {
        uni.showToast({
          icon: 'none',
          title: '暂不支持',
        })
        return
      }
      const url =
        e.url.indexOf('platform') > -1
          ? e.url
          : `/pages/template/${e.url}/${e.url}`
      uni.navigateTo({
        url,
      })
    },
  },
}
DCloud_JSON's avatar
DCloud_JSON 已提交
207 208 209
</script>

<style>
DCloud-WZF's avatar
DCloud-WZF 已提交
210 211
@import '../../common/uni-uvue.css';
</style>