Commit f1302eef authored by youjie's avatar youjie

no message

parent 05db2314
......@@ -531,7 +531,7 @@ export default {
}).exec();
if(index==3) uni.hideLoading()
})
},3000)
},10000)
}
},
deep:true,
......
......@@ -140,7 +140,7 @@
@click="goTeamLeader(item)">
<view class="list-top row justify-between">
<view class="list-top-left row items-center">
<view class="list-top-tisp" v-if="item.TravelPriceList.length>0&&item.TravelPriceList[0].CombinationNum"></view>
<view class="list-top-tisp" v-if="item.TravelPriceList.length>1"></view>
<view class="list-top-text">{{ item.LineName }}</view>
<u-icon name="arrow" size="28" color="#ccc"></u-icon>
</view>
......@@ -207,7 +207,7 @@ export default {
// noData:'',//
// currentPage: 1,//
TCStatus: 2,// 团期状态 0不限 1未开始,2进行中,3已结束
LeaderId: '',// 领队id2811 3036
LeaderId: '2811',// 领队id2811 3036
orderBy: 1,
},
b2b_user_info: {}
......@@ -248,9 +248,10 @@ export default {
uni.showLoading()
if(this.msg.pageIndex==1) this.couponDataList = []
this.apipost("travel_get_GetUniteDmcPageList", this.msg, (res) => {
this.loading = false;
uni.hideLoading()
if (res.resultCode == 1) {
uni.hideLoading()
this.loading = false;
const d = res.data.pageData;
this.page_count = res.data.pageCount;
this.dataList = this.dataList.concat(d)
......@@ -258,6 +259,8 @@ export default {
return new Date(b.TravelPriceList[0].StartDate) - new Date(a.TravelPriceList[0].StartDate)
})
if(this.page_count==1) this.status = 'nomore'
}else {
uni.hideLoading()
}
}, (failed) => {
uni.hideLoading()
......
......@@ -69,7 +69,7 @@
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
-webkit-line-clamp: 2;
overflow: hidden;
}
.triangle {
......@@ -88,7 +88,7 @@
<view class="scheduleHeaderBox">
<view class="scheduleTitle">
<headers textAlign="left" :title="pageTitle" color="#fff"></headers>
<view class="PT10 row justify-center items-center colorFFF"
<view v-if="BaseInfo&&BaseInfo.length>1" class="PT10 row justify-center items-center colorFFF"
@click="BaseInfo.length>1?optionVisible=true:''">
<text class="fz36">{{ BaseInfo[currentIndex].TCNUMS }}</text>
<view class="triangle ML10" v-if="BaseInfo.length>1"></view>
......@@ -369,48 +369,27 @@ export default {
}
arrList(this.inforData1.PrincipalList)
this.PrincipalList.forEach((item,index)=> {
if(index){
let data = this.inforData1.PrincipalList[0]
data.CreateByNameList = [{
data.CreateByNameList.push({
name:data.CreateByName,
tel:data.CreateByMobile
},{
name:item.CreateByName,
tel:item.CreateByMobile
}]
data.HConfirmNameList = [{
})
data.HConfirmNameList.push({
name:data.HConfirmName,
tel:data.HConfirmMobile
},{
name:item.HConfirmName,
tel:item.HConfirmMobile
}]
data.BConfirmNameList = [{
})
data.BConfirmNameList.push({
name:data.BConfirmName,
tel:data.BConfirmMobile
},{
name:item.BConfirmName,
tel:item.BConfirmMobile
}]
data.DConfirmNameList = [{
})
data.DConfirmNameList.push({
name:data.DConfirmName,
tel:data.DConfirmMobile
},{
name:item.DConfirmName,
tel:item.DConfirmMobile
}]
data.TConfirmNameList = [{
})
data.TConfirmNameList.push({
name:data.TConfirmName,
tel:data.TConfirmMobile
},{
name:item.TConfirmName,
tel:item.TConfirmMobile
}]
}
})
})
uni.hideLoading()
}
......
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