| 123456789101112131415161718192021222324252627282930313233 |
- const goods = {
- url: '/goods',
- type: 'get',
- response: {
- code: 200,
- msg: 'success',
- total: 0,
- data: [
- {
- id: 1000,
- goodsName: '黄金',
- goodsCode: 'CFN001',
- lastPrice: 100,
- },
- {
- id: 1001,
- goodsName: '昆特牌',
- goodsCode: 'CFN002',
- lastPrice: 200,
- },
- {
- id: 1002,
- goodsName: '大豆',
- goodsCode: 'CFN003',
- lastPrice: 300,
- },
- ]
- }
- }
- export default [
- goods,
- ]
|