# Variable: goods
• goods(): Promise‹ReadonlyWithExtensions‹Goods[]››
name
商城中的商品列表
description
返回普通商城的所有商品列表
example
// 在头部引入商城模块
import { shopSystem } from "@timi/mogs-sdk";
...
// 使用
const result = await shopSystem.goods;
result.forEach((item) => console.log(item.name));
1
2
3
4
5
6
2
3
4
5
6
# 返回值:
Promise‹ReadonlyWithExtensions‹Goods[]››
Goods
结构
属性 | 类型 | 描述 |
---|---|---|
buyLimitation? | Limitation | 限购信息 |
currency | Currency | 购买币种 |
customStr | string | 自定义字符串 |
description | string | 商品描述 |
discountedPrice? | Long | 折扣后价格 |
id | number | 商品ID |
isDynamicPrice | boolean | 是否浮动价格 |
maximumCount | number | 商品数量最大值 |
minimumCount | number | 商品数量最小值 |
name | string | 商品名称 |
onSaleEndTime? | Date | 下架时间 |
onSaleStartTime? | Date | 上架时间 |
position | number | 展示位置 |
price? | Long | 价格 |
rewardPool | RewardPool | 商品对应的奖励物品池 |
saleType | ShopSaleType | 销售状态 |
subtabType | ShopSubtabType | 商品所属子标签页 |
tabType | ShopTabType | 商品所属标签页 |