This commit is contained in:
liuye
2021-12-24 09:04:23 +08:00
parent b2fed2be73
commit e2879a8337
4 changed files with 30 additions and 8 deletions

View File

@@ -1,9 +1,9 @@
<template>
<div class="AppServicePublic">
<AiTopFixed v-if="tabs.length">
<div class="tab-select" @click="tabClick(item)">
<div class="tab-select">
<div class="item" :class="tabIndex == index ? 'active' : ''" v-for="(item, index) in tabs" :key="index"
@click="tabClick(item)">{{ item.categoryName }}<span></span></div>
@click="tabClick(index, item)">{{ item.categoryName }}<span></span></div>
</div>
</AiTopFixed>
<div class="header-top">
@@ -19,7 +19,7 @@
<u-parse :html="item.content"></u-parse>
</p>
<div class="img-list" v-if="item.files.length">
<img :src="item.accessUrl" alt="" v-for="(item, index) in item.files" :key="index" v-if="index < 3" />
<img :src="items.accessUrl" alt="" v-for="(items, index) in item.files" :key="index" v-if="index < 3" @click.stop="previewImage(item.files, items.accessUrl)" />
</div>
<div class="flex">
<span class="left">
@@ -99,6 +99,12 @@ export default {
uni.setNavigationBarTitle({title: this.listName})
},
methods: {
previewImage(images, img) {
uni.previewImage({
urls: images.map(v => v.url),
current: img
})
},
getType() {
this.$http.post(`/app/appcontentmoduleinfo/listByName?names=${this.listName}`).then((res) => {
if (res.code == 0) {
@@ -113,14 +119,20 @@ export default {
}
})
},
tabClick(row) {
this.tabIndex = row.showIndex
tabClick(index, row) {
this.tabIndex = index
this.categoryId = row.id
this.current = 1
this.getList()
},
search() {
this.current = 1
this.getList()
},
getList() {
this.$http.post('/app/appcontentinfo/list', null, {
params: {
size: 6,
size: 20,
current: this.current,
areaId: this.areaId,
title: this.keyword,