14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
/**
|
|
* 商户端统计数据 Mock
|
|
*/
|
|
import type { MerchantStats } from '@/typings/merchant'
|
|
|
|
export const mockMerchantStats: MerchantStats = {
|
|
todayOrders: 128,
|
|
pendingOrders: 23,
|
|
todaySales: 15680.50,
|
|
totalGoods: 356,
|
|
lowStockGoods: 12,
|
|
pendingSettlement: 8560.00,
|
|
}
|