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.
33 lines
530 B
33 lines
530 B
/** |
|
* 商户入驻表单提交 |
|
*/ |
|
export const merchantFormDefault = () => { |
|
return { |
|
captcha: '', |
|
categoryId: null, |
|
handlingFee: 0, |
|
name: '', |
|
phone: '', |
|
qualificationPicture: '', |
|
realName: '', |
|
typeId: null, |
|
keywords: '', |
|
} |
|
} |
|
|
|
/** |
|
* 商户商品搜索条件 |
|
*/ |
|
export const merchantProductSeachDefault = () => { |
|
return { |
|
keyword: '', |
|
priceOrder: '', |
|
salesOrder: '', |
|
page: 1, |
|
limit: 20, |
|
cid: null, |
|
merId: null, |
|
minPrice: null, |
|
maxPrice: null, |
|
} |
|
}
|
|
|