|
|
@@ -5,7 +5,7 @@
|
|
|
</view>
|
|
|
<view class="list-box" v-for="(item,index) in science" :key='index' @click="navTo('/pages/applic/info?id='+item.id)">
|
|
|
<view class="box-left">
|
|
|
- <image :src="item.image_input[0]" mode="" class="left-img"></image>
|
|
|
+ <image :src="item.image" mode="" class="left-img"></image>
|
|
|
</view>
|
|
|
<view class="box-right">
|
|
|
<view class="right-top word1_ellipsis">
|
|
|
@@ -54,11 +54,12 @@
|
|
|
obj.loadingType = 'loading'
|
|
|
getArticList({
|
|
|
paga: obj.page,
|
|
|
- limit: obj.limit
|
|
|
- },2).then(({ data }) => {
|
|
|
- console.log(data);
|
|
|
- obj.science = obj.science.concat(data.list);
|
|
|
- if(obj.limit == data.list.length) {
|
|
|
+ limit: obj.limit,
|
|
|
+ ifyid: 1
|
|
|
+ }).then(({ data }) => {
|
|
|
+ obj.science = obj.science.concat(data);
|
|
|
+ console.log(obj.science,1236);
|
|
|
+ if(obj.limit == data.length) {
|
|
|
obj.loadingType = 'more'
|
|
|
}else {
|
|
|
obj.loadingType = 'noMore'
|