interview-answe icon indicating copy to clipboard operation
interview-answe copied to clipboard

226.account_allApi

Open webVueBlog opened this issue 4 years ago • 1 comments

[js]

webVueBlog avatar May 06 '20 09:05 webVueBlog

account_allApi(this.allQuery).then(res => {
	let array = []
	let list = res.data.data.data
	list.map(item => {
		array.push(
		Object.assign({}, item, {
		show: false
		})
	)
	});
	this.accountData = array
	}).catch(error => {
	console.log(error)
})

webVueBlog avatar May 06 '20 09:05 webVueBlog