shopSum(){
return new Promise(resolve=>{
resolve();
this.$post('ord003', {
"flag":true
}).then(res => {
//请求1
})
})
}
activitySum(){
return new Promise(resolve=>{
resolve();
this.$post('ord003', {
"flag":true
}).then(res => {
//请求2
})
})
}
orderySum(){
return new Promise(resolve=>{
resolve();
this.$post('ord003', {
"flag":true
}).then(res => {
//请求3
})
})
}
shopSum()
.then(activitySum())
.then(orderySum())
这样写他并没有按照顺序 求教
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…