Merge branch 'feature/【GFRS-2145】e起陪访' into dev

This commit is contained in:
mengxiaolong
2021-02-19 10:31:34 +08:00

View File

@@ -6,7 +6,7 @@
<div>日期</div> <div>日期</div>
</div> </div>
<div class="divider" /> <div class="divider" />
<van-list v-model="loading" :finished="finished" @load="getListData" :immediate-check="false" finished-text="没有更多了..."> <van-list v-model="loading" :finished="finished" @load="getListData" :immediate-check="false" finished-text="没有更多数据了">
<div class="history-item p10 thin-bottom arrow" v-for="his in dataList" :key="his.accompanyId" @click="jumpToDetail(his.accompanyId)"> <div class="history-item p10 thin-bottom arrow" v-for="his in dataList" :key="his.accompanyId" @click="jumpToDetail(his.accompanyId)">
<div>{{ his.accompanyName }}</div> <div>{{ his.accompanyName }}</div>
<div>{{ his.accompanyAgentName }}</div> <div>{{ his.accompanyAgentName }}</div>
@@ -31,7 +31,7 @@ export default {
finished: false, finished: false,
dataList: [], dataList: [],
index: 5, index: 5,
pageSize: 10, pageSize: 20,
pageNum: 1 pageNum: 1
} }
}, },