|
@@ -1,9 +1,9 @@
|
|
<template>
|
|
<template>
|
|
<div class="inventoryQueryWarehouseDetail-wrap">
|
|
<div class="inventoryQueryWarehouseDetail-wrap">
|
|
- <a-page-header :ghost="false" @back="handleBack" class="inventoryQueryWarehouseDetail-back">
|
|
|
|
|
|
+ <a-page-header :ghost="false" :backIcon="false" class="inventoryQueryWarehouseDetail-back">
|
|
<!-- 自定义的二级文字标题 -->
|
|
<!-- 自定义的二级文字标题 -->
|
|
<template slot="subTitle">
|
|
<template slot="subTitle">
|
|
- <a id="inventoryQueryWarehouseDetail-back-btn" href="javascript:;" @click="handleBack">返回列表</a>
|
|
|
|
|
|
+ <a id="inventoryQueryWarehouseDetail-back-btn" href="javascript:;" @click="handleBack"><a-icon type="left" /> 返回列表</a>
|
|
</template>
|
|
</template>
|
|
</a-page-header>
|
|
</a-page-header>
|
|
<a-card size="small" :bordered="false" class="inventoryQueryWarehouseDetail-cont">
|
|
<a-card size="small" :bordered="false" class="inventoryQueryWarehouseDetail-cont">
|
|
@@ -75,7 +75,7 @@
|
|
:columns="columns"
|
|
:columns="columns"
|
|
:data="loadData"
|
|
:data="loadData"
|
|
:showPagination="false"
|
|
:showPagination="false"
|
|
- :scroll="{ x: 1760 }"
|
|
|
|
|
|
+ :scroll="{ x: 1760, y: 300 }"
|
|
bordered>
|
|
bordered>
|
|
<!-- 数量 -->
|
|
<!-- 数量 -->
|
|
<template slot="number" slot-scope="text, record">
|
|
<template slot="number" slot-scope="text, record">
|
|
@@ -111,7 +111,7 @@ export default {
|
|
dateFormat: 'YYYY-MM-DD',
|
|
dateFormat: 'YYYY-MM-DD',
|
|
columns: [
|
|
columns: [
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center', fixed: 'left' },
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center', fixed: 'left' },
|
|
- { title: '产品编码', dataIndex: 'productNum', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
|
|
+ { title: '产品编码', dataIndex: 'productNum', width: 140, align: 'center', fixed: 'left', customRender: function (text) { return text || '--' } },
|
|
{ title: '产品名称', dataIndex: 'productName', align: 'center', ellipsis: true, customRender: function (text) { return text || '--' } },
|
|
{ title: '产品名称', dataIndex: 'productName', align: 'center', ellipsis: true, customRender: function (text) { return text || '--' } },
|
|
{ title: '原厂编码', dataIndex: 'productOldNum', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '原厂编码', dataIndex: 'productOldNum', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '入库批次时间', dataIndex: 'prodsuctBrand', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '入库批次时间', dataIndex: 'prodsuctBrand', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|