Commit 74f0dda4 authored by youjie's avatar youjie

no message

parent a0338343
......@@ -320,7 +320,7 @@ export default defineComponent({
}else{
x.NewDetailList = []
x.DetailList.forEach((y:any,index:Number)=>{
if(index==0){
if(index<2){
x.NewDetailList.push(y)
}
})
......@@ -350,7 +350,7 @@ export default defineComponent({
arrList(r.data.data.pageData)
r.data.data.pageData.forEach((x: any) => {
x.typeInfo = data.status.find(y => y.StatusId == x.OrderStatus) ?? data.status[1]
if(x.DetailList.length>1){
if(x.DetailList.length>2){
x.isMore = true
}
let dataLists = []
......@@ -362,7 +362,7 @@ export default defineComponent({
})
console.log(PeopleNum)
y.PeopleNum = PeopleNum
if(index<1){
if(index<2){
dataLists.push(y)
}
})
......
......@@ -276,7 +276,7 @@ export default defineComponent({
});
};
addList(r.data.data.TicketPriceList);
data.types = r.data.data.TicketPriceList
data.types = r.data.data.TicketPriceList.filter((x:any)=>{ return x.B2BPrice>0})
methods.getNum()
if(data.types&&data.types.length==0){
message.errorMsg(`${t('v102.ticket.nobj')}`)
......
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