// 模拟接口请求返回数据
Mock.mock('http://test/mock', {
"data|10": [{
'id|+1': 1800,
'name': '@cname',
'value': '@integer(2000, 90000)',
}]
});
axios.get('http://test/mock', null)
.then(res => {
if(isEmpty(res) || isEmpty(res.data) || isEmpty(res.data.data)) {
this.list = [];
this.isEmpty = true;
return;
}
this.list = res.data.data;
// console.log('list: ', this.list);
this.getOptions();
}).catch(err => {
// console.log('error: ', err);
this.list = [];
this.isEmpty = true;
});
网友评论