user-order.md 1.24 KB

个人中心-我的订单

order: {
    title: '我的订单',
    // 标签数据
    tabs: [
        {
            text: '',                    // 标题
            isActive: true/false,        // 是否选中
            type: 'all'/'paying'/'delivering' // 类型
        }
    ],

    // 是否显示搜索
    showSearch: true/false,

    // 订单数据
    orders: [
        {
            orderTime: ''                // 下单时间
            validLeftTime: '',           // 订单剩余有效时间
            serialNumber: ''             // 订单编码
            showMobile: true/false,      // 是否是手机下单
            cost: '',                    // 订单花费
            status: '',                  // 订单状态
            payVia: '',                  // 支付方式
            showPayButton: true/false,   // 是否显示立即付款按钮
            showEditOption: true/false   // 是否显示编辑项

            // 订单中的商品
            goods: [
                {
                    img: '',
                    name: '',
                    price: '',
                    color: '',
                    size: '',
                    quantity: ''
                }
            ]
        }
    ]
}