【VUE】调用多个接口怎样使接口信息都返回后再进行下一步操作

		async getConfigListByTypeId() {
			const promises = [
				getConfig1(this.queryParams.code),
				configInfo2(this.queryParams.code),
			];

			await Promise.all(promises).then((result) => {
				console.log('res', result);
				if (result[0].code === 200 && result[1].code === 200) {
					this.configList = result[0].data;
					this.configInfo = result[1].data
				}
			});

		},

你可能感兴趣的:(vue.js,javascript,前端)