Authored by yyq

Merge branch 'master' of git.yoho.cn:fe/yoho-community-web

... ... @@ -27,8 +27,8 @@
<div :id="`ph${data.index}`"></div>
</template>
</LayoutRecycleList>
<div class="thumbs">
<slot name="thumb" v-if="showThumb"></slot>
<div class="thumbs" v-if="showThumb">
<slot name="thumb"></slot>
</div>
</Layout>
<ArticleActionSheet v-if="showArticleDetailAction" ref="actionSheet"></ArticleActionSheet>
... ...
... ... @@ -17,6 +17,7 @@ module.exports = {
},
'/api/grass/columnArticleDetail': {
api: 'app.grass.columnArticleDetail',
cache: true,
auth: true,
params: {
page: {type: Number, require: false},
... ...
module.exports = [
{
route: /grass\/article\/\d+/,
route: /grass\/article\/\d+$/,
cacheKey: '$url$params',
cache: true
},
{
route: /grass\/article\/\d+\/user/,
cacheKey: '$url$params',
cache: true
},
... ...