const mock = require('mockjs');
const STATUS = [
'default',
'success',
'info',
'critical',
'warning',
'danger',
];
const CITY = {
'310000': '上海市',
'320000': '江苏省',
'330000': '浙江省',
'340000': '安徽省'
}
mock.mock({
'list|8': [{
'id|+1': 1,
name: '@name',
description: '@word',
'status|1': STATUS,
'city|2' CITY,
'action_status|1': STATUS,
update_time: '@datetime'
}]
});