#
Junjie
2025-02-14 ac4341ea6b66ae02427d39d35f41d42d78b2eb2e
zy-asrs-admin/src/components/orderDetlLog/show.vue
@@ -42,13 +42,13 @@
        ellipsis: true,
    },
    {
        title: formatMessage('db.man_loc_detl.matnr', '物料号'),
        title: formatMessage('db.man_loc_detl.matnr', '商品编号'),
        dataIndex: 'matnr',
        width: 140,
        ellipsis: true,
    },
    {
        title: formatMessage('db.man_loc_detl.maktx', '物料名'),
        title: formatMessage('db.man_loc_detl.maktx', '商品名称'),
        dataIndex: 'maktx',
        width: 140,
        ellipsis: true,
@@ -168,7 +168,9 @@
        get("/api/orderLog/" + newVal, {}).then((resp) => {
            let result = resp.data;
            orderInfo.value = result.data;
            if(result.data != null) {
                orderInfo.value = result.data;
            }
        })
    }
})
@@ -184,7 +186,7 @@
<script>
export default {
    name: 'showOrderDetlComponent'
    name: 'showOrderDetlLogComponent'
}
</script>