Merge pull request 'gdpao' (#137) from gyh into master

Reviewed-on: http://git.luyuan.tk/luyuan/deming/pulls/137
This commit was merged in pull request #137.
This commit is contained in:
gyh
2020-08-09 11:33:25 +08:00
12 changed files with 385 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="video-item" v-if="item" @click="toDetailsPage(item.article_id)">
<view class="video-item" v-if="item" @click="toDetailsPage(item.article_id,item.video_path)">
<image class="head" :src="item.article_pic" v-if="item.type == 1" ></image>
<view class="header_fist" v-else>
<view class="backes"></view>
@@ -245,10 +245,16 @@ export default {
}
})
},
toDetailsPage(id) {
uni.navigateTo({
url: '/pageB/photo/index?id=' + id
});
toDetailsPage(id,type) {
if (type) {
uni.navigateTo({
url: '/pageB/video/video?id=' + id
});
} else {
uni.navigateTo({
url: '/pageB/photo/index?id=' + id
});
}
},
},
}

View File

@@ -5,7 +5,7 @@
<view class="notice_view">
<image :src="item.picture" mode="aspectFill" ></image>
<view class="text_view u-line-2">{{ item.content }}</view>
<view class="notice_list">
<view class="notice_list" @click="gotoInfo(index)">
<text>查看详情</text>
<u-icon name="arrow-right" color="#666"></u-icon>
</view>
@@ -87,7 +87,15 @@
}
},
methods: {
gotoInfo(index) {
console.log(index);
this.$u.route({
url: "/pageD/notice/info",
params: {
index: index
},
})
}
}
}
</script>