123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <home-frame @toPath="toPath">
- <view class="main">
- <view class="one">
- <view class="list" v-for="(item,index) in list" :key="index" @tap="toWeb(item)">
- <image class="image" :src="item.img_url&&item.img_url.length>0?item.img_url[0].url:''" mode="">
- </image>
- <view class="name textOver">
- {{item.title}}
- </view>
- </view>
- </view>
- </view>
- </home-frame>
- </template>
- <script>
- import homeFrame from "../components/home-frame.vue";
- export default {
- components: {
- homeFrame
- },
- data() {
- return {
- list: []
- };
- },
- onLoad() {
- const that = this;
- that.search()
- },
- onShow() {
- },
- methods: {
- async search() {
- const that = this;
- // 轮播图
- let res;
- res = await that.$api('appapk', 'GET', {
- is_use: '0',
- limit: 100
- });
- if (res.errcode == '0') {
- that.$set(that, `list`, res.data)
- }
- },
- toWeb(e) {
- const that = this;
- let system = that.$config.system
- if (system.uniPlatform == 'app') {
- plus.runtime.openURL(e.web_url)
- } else if (system.uniPlatform == 'mp-weixin') {
- uni.showToast({
- title: '小程序无法打开链接,请打开app进行跳转',
- icon: "none"
- })
- }
- },
- // 跳转页面
- toPath(e) {
- let url = `/${e.route}`;
- if (e.type == '0') uni.navigateTo({
- url
- })
- else if (e.type == '1') uni.redirectTo({
- url
- })
- else if (e.type == '2') uni.reLaunch({
- url
- })
- else if (e.type == '3') uni.switchTab({
- url
- })
- }
- },
- };
- </script>
- <style lang="scss">
- .main {
- background-color: var(--rgb000);
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 92vh;
- .one {
- padding: 8px;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- background-color: var(--rgb000);
- .list {
- width: 18%;
- margin: 0 0 10px 0;
- .image {
- width: 100%;
- height: 62px;
- overflow: hidden;
- border-radius: 5px;
- }
- .name {
- font-size: 12px;
- color: var(--rgbfff);
- text-align: center;
- }
- }
- }
- }
- </style>
|