|
@@ -181,7 +181,7 @@ export const ORDER_ITEM_STATUS_CONFIG = {
|
|
|
/**
|
|
|
* 订单类型选项数据
|
|
|
* @readonly
|
|
|
- * @type {ReadonlyArray<{readonly label: string, readonly value: typeof ORDER_TYPES[keyof typeof ORDER_TYPES]}>}
|
|
|
+ * @type {Array<{readonly label: string, readonly value: typeof ORDER_TYPES[keyof typeof ORDER_TYPES]}>}
|
|
|
*/
|
|
|
export const ORDER_TYPE_OPTIONS = [
|
|
|
{ label: '未知类型', value: ORDER_TYPES.UNKNOWN },
|
|
@@ -191,7 +191,7 @@ export const ORDER_TYPE_OPTIONS = [
|
|
|
/**
|
|
|
* 订单状态选项数据
|
|
|
* @readonly
|
|
|
- * @type {ReadonlyArray<{readonly label: string, readonly value:typeof ORDER_STATUS[keyof typeof ORDER_STATUS]}>}
|
|
|
+ * @type {Array<{readonly label: string, readonly value:typeof ORDER_STATUS[keyof typeof ORDER_STATUS]}>}
|
|
|
*/
|
|
|
export const ORDER_STATUS_OPTIONS = [
|
|
|
{ label: '草稿', value: ORDER_STATUS.DRAFT },
|