Commit b91156c8 authored by Facius's avatar Facius

Merge branch 'dev-1.5.3' into test

parents 309c8823 7491e366
...@@ -35,8 +35,8 @@ ...@@ -35,8 +35,8 @@
<AppliedCell @operate="handleOperate" :info="item" @action="handleClickCell" @express="handleClickExpress"></AppliedCell> <AppliedCell @operate="handleOperate" :info="item" @action="handleClickCell" @express="handleClickExpress"></AppliedCell>
</view> </view>
<!-- 底部加载状态 --> <!-- 底部加载状态 -->
<view class="load-more-view"> <view class="load-more-view" v-if="(pageNumber == 1 && loaded) || pageNumber > 1">
<u-loadmore v-show="(pageNumber == 1 && loaded) || pageNumber > 1" :status="loadStatus" <u-loadmore :status="loadStatus"
bgColor="#F4F5F7"></u-loadmore> bgColor="#F4F5F7"></u-loadmore>
</view> </view>
</template> </template>
......
...@@ -439,7 +439,7 @@ export default { ...@@ -439,7 +439,7 @@ export default {
this.type = option.type this.type = option.type
} }
this.loadOrderDetail() // this.loadOrderDetail() // onShow里面刷新
this.getLocation() this.getLocation()
if (this.isOther) { if (this.isOther) {
// 获取结算信息 // 获取结算信息
...@@ -454,13 +454,13 @@ export default { ...@@ -454,13 +454,13 @@ export default {
if (this.uploadTask.length > 0) { if (this.uploadTask.length > 0) {
upload.uploadImageTask(this) upload.uploadImageTask(this)
} }
this.loadOrderDetail()
// 从过程反馈回来,需要刷新数据 // 从过程反馈回来,需要刷新数据
let pages = getCurrentPages() let pages = getCurrentPages()
let page = pages[pages.length - 1] let page = pages[pages.length - 1]
if (page.needFresh) { if (page.needFresh) {
page.needFresh = null page.needFresh = null
this.loadOrderDetail()
this.loadOrderRecord() this.loadOrderRecord()
} }
if (page.needRefresh) { if (page.needRefresh) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment