async funone() {
	await axios.post('xxxxxxx', params)
    .then(res => {})
    .catch(err => {})
}
async funtwo() {
	await axios.post('xxxxxxx', params)
    .then(res => {})
    .catch(err => {})
}
async funthree() {
	await this.funone()
	await this.funtwo()
	await axios.post('xxxxxxx', params)
    .then(res => {})
    .catch(err => {})
}
Logo

前往低代码交流专区

更多推荐