express-detail.vue 1.53 KB
<template>
    <LayoutBody>
        <Button type="primary" @click="backExpList">返回发货物流表</Button>
        <span>物流单号:{{expressNo}}</span>
        <span>发货时间:{{expressTime}}</span>
        <LayoutList>
            <Table border :columns="table.cols" :data="table.list"></Table>
        </LayoutList>
    </LayoutBody>
</template>

<script>

export default {
    created() {
    },
    data() {
        return {
            table: {
                cols: [
                    {
                        title: 'sku',
                        align: 'center'
                    },{
                        title: '条码',
                        align: 'center'
                    },{
                        title: '商品图片',
                        align: 'center'
                    },{
                        title: '商品名称',
                        align: 'center'
                    },{
                        title: '规格',
                        align: 'center'
                    },{
                        title: '订单号/已发数/入库数',
                        align: 'center'
                    }
                ],
                list: [

                ]
            },
            expressNo: 123232,
            expressTime: '2017-04-01 14:28:26'
        }
    },
    methods: {
        backExpList() {
            this.$router.push({
                name: 'trade.allot.express'
            });
        }
    },
    components: {
    }
};
</script>

<style lang="scss" scoped>

</style>