|
|
@@ -69,13 +69,13 @@ |
|
|
|
</view> |
|
|
|
<view class="content-newadd"> |
|
|
|
<view class="c-items"> |
|
|
|
挖掘执行:100% |
|
|
|
挖掘执行:{{item.wordFraction||0}}% |
|
|
|
</view> |
|
|
|
<view class="c-items"> |
|
|
|
挖掘成功:100% |
|
|
|
挖掘成功:{{item.wordFinishFraction||0}}% |
|
|
|
</view> |
|
|
|
<view class="c-items"> |
|
|
|
销讲业务:生鲜 |
|
|
|
<!-- 销讲业务:生鲜 --> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="content-last"> |
|
|
@@ -563,6 +563,8 @@ |
|
|
|
if (newmenulist.jdjl_ck != true) { |
|
|
|
return |
|
|
|
} |
|
|
|
this.wordFinishFraction=item.wordFinishFraction |
|
|
|
this.wordFraction=item.wordFraction |
|
|
|
uni.showLoading({ |
|
|
|
title: '加载中', |
|
|
|
mask: true |
|
|
@@ -605,13 +607,15 @@ |
|
|
|
uni.hideLoading(); |
|
|
|
}, 2000); |
|
|
|
let newobj = res[0]; |
|
|
|
console.log(newobj); |
|
|
|
// console.log(item); |
|
|
|
if (res[0].merge == 0) { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/pages/mine/details2?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=${"2"}` |
|
|
|
url: `/pages/mine/details2?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=2&wordFraction=${this.wordFraction}&wordFinishFraction=${this.wordFinishFraction}` |
|
|
|
}) |
|
|
|
} else { |
|
|
|
uni.navigateTo({ |
|
|
|
url: `/pages/mine/details?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=${"1"}` |
|
|
|
url: `/pages/mine/details?customerId=${newobj.customerId}&status=${newobj.status}&stateisshow=1` |
|
|
|
}) |
|
|
|
} |
|
|
|
} |
|
|
@@ -678,18 +682,18 @@ |
|
|
|
} |
|
|
|
}) |
|
|
|
parames.query.marketingBusiness = ars.join(',') |
|
|
|
|
|
|
|
|
|
|
|
this.$u.post("/customer/findbypage", parames).then(data => { |
|
|
|
this.LOADING = false |
|
|
|
var list = data.results || []; |
|
|
|
console.log(data) |
|
|
|
let list = data.records || []; |
|
|
|
if(this.isRefresh){ |
|
|
|
this.recordList = list; |
|
|
|
}else{ |
|
|
|
this.recordList = [...this.recordList, ...list]; |
|
|
|
this.recordList = [].concat(this.recordList,list) |
|
|
|
// [...this.recordList, ...list]; |
|
|
|
} |
|
|
|
this.totalRecord = data.totalPage; |
|
|
|
this.totalRecords = data.totalRecord; |
|
|
|
this.totalRecord = data.pages; |
|
|
|
this.totalRecords = data.total; |
|
|
|
if(this.staTime && this.endtime) { |
|
|
|
this.arriveFilter = `${this.staTime}-${this.endtime}` |
|
|
|
} |
|
|
|