13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
import dayjs from "dayjs";
|
|
|
|
// 商品默认sku
|
|
export const $defaultSku = {
|
|
salePrice: '',
|
|
memberPrice: '',
|
|
costPrice: '',
|
|
originPrice: '',
|
|
// stockNumber: '',
|
|
suitNum: 1,
|
|
barCode: `${uni.getStorageSync("shopId")}${dayjs().valueOf()}`,
|
|
}
|