index.js 1.64 KB
/**
 * on sale page store
 * @author: qi.li <qi.li@yoho.cn>
 * @date: 2017/04/13
 */

let tableCols = [
    {
        title: 'SKN',
        key: 'productSkn',
        align: 'center'
    },
    {
        title: '图片',
        key: 'image',
        align: 'center',
        render(row) {
            return `<div> <img v-prod-img="row.productSkn"> </div>`
        }
    },
    {
        title: '商品名称',
        key: 'productName',
        align: 'center',
    },
    {
        title: '品牌',
        key: 'brandName',
        align: 'center',
    },
    {
        title: '库存',
        key: 'storage',
        align: 'center',
    },
    {
        title: '销售价',
        key: 'salePrice',
        align: 'center'
    },
    {
        title: '更新时间',
        key: 'editTime',
        align: 'center'
    },
    {
        title: '操作',
        key: 'action',
        align: 'center',
        render: function(row) {
            return `<div class="action-btn-row">
                <i-button type="primary" size="small" @click="editStore(row)">库存编辑</i-button>
            </div> `;
        }
    }
];

let tableData = [
    {
        "brandId": 1306,
        "brandName": "BLOCCO5",
        "editTime": 0,
        "isAdvance": "N",
        "isJit": "Y",
        "productName": "B5 BY BLOCCO 5 2016年春夏 平底女士时装鞋 G1ABY143A2L06 裸色",
        "productSkn": 51203652,
        "salePrice": 1683.00,
        "shopId": 412,
        "sknFactoryCode": "",
        "storage": 0,
        "supplierId": 1186
    }
];

let pageData = {
    total: 0,
    current: 1,
    pageSize: 20
};

export {
    tableCols,
    tableData,
    pageData
}