|
@@ -13,8 +13,9 @@
|
|
|
width="100%"
|
|
|
height="100%"
|
|
|
fit="cover"
|
|
|
- :src="item.url"
|
|
|
+ :src="item.imageUrl"
|
|
|
:show-error="true"
|
|
|
+ @click="clickCarousels(item)"
|
|
|
/>
|
|
|
</van-swipe-item>
|
|
|
</van-swipe>
|
|
@@ -81,9 +82,30 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.getNewsfeed();
|
|
|
+ this.getCarousels();
|
|
|
},
|
|
|
mounted() {},
|
|
|
methods: {
|
|
|
+ // 查询轮播图
|
|
|
+ getCarousels() {
|
|
|
+ let params = { num: 4 };
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.JTXT_GET_CAROUSELS, { params })
|
|
|
+ .then(res => {
|
|
|
+ console.log("----res--" + JSON.stringify(res));
|
|
|
+ this.swiperList = res.data;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$store.commit("toggleLoading", false);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ clickCarousels(item) {
|
|
|
+ if (!item.materialId) return;
|
|
|
+ this.$router.push({
|
|
|
+ name: "learn-content",
|
|
|
+ params: { materialId: item.materialId }
|
|
|
+ });
|
|
|
+ },
|
|
|
// 查询子目录
|
|
|
getNewsfeed() {
|
|
|
let engineertypeid = "";
|