You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** |
|
/** |
|
* 商品配置 |
|
* @author yujialong |
|
*/ |
|
|
|
export default { |
|
// 商品状态 |
|
goodsStatus: [ |
|
{ |
|
id: 1, |
|
name: '上架中' |
|
}, |
|
{ |
|
id: 2, |
|
name: '已下架' |
|
}, |
|
{ |
|
id: 3, |
|
name: '草稿' |
|
}, |
|
{ |
|
id: 4, |
|
name: '审核中' |
|
}, |
|
], |
|
}
|
|
|