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.
28 lines
263 B
28 lines
263 B
11 months ago
|
/**
|
||
|
/**
|
||
|
* 商品配置
|
||
|
* @author yujialong
|
||
|
*/
|
||
|
|
||
|
export default {
|
||
|
// 商品状态
|
||
|
goodsStatus: [
|
||
|
{
|
||
|
id: 0,
|
||
|
name: '上架中'
|
||
|
},
|
||
|
{
|
||
|
id: 2,
|
||
|
name: '已下架'
|
||
|
},
|
||
|
{
|
||
|
id: 3,
|
||
|
name: '草稿'
|
||
|
},
|
||
|
{
|
||
|
id: 4,
|
||
|
name: '审核中'
|
||
|
},
|
||
|
],
|
||
|
}
|