|
@@ -105,8 +105,12 @@ function A2Goods() {
|
|
|
),
|
|
|
},
|
|
|
{
|
|
|
- title: "编号",
|
|
|
- dataIndex: "num",
|
|
|
+ title: "藏品编号",
|
|
|
+ render: (item: A2tableType) =>item.goodsNum||'(空)'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "藏品号",
|
|
|
+ render: (item: A2tableType) =>item.num||'(空)'
|
|
|
},
|
|
|
{
|
|
|
title: "名称",
|
|
@@ -164,8 +168,8 @@ function A2Goods() {
|
|
|
<Input
|
|
|
key={inputKey}
|
|
|
maxLength={10}
|
|
|
- style={{ width: 248 }}
|
|
|
- placeholder="请输入藏品编号/名称,最多10字"
|
|
|
+ style={{ width: 290 }}
|
|
|
+ placeholder="请输入藏品编号/藏品号/名称,最多10字"
|
|
|
allowClear
|
|
|
onChange={(e) => txtChangeFu(e.target.value, "searchKey")}
|
|
|
/>
|
|
@@ -174,7 +178,7 @@ function A2Goods() {
|
|
|
<div className="A2topRow">
|
|
|
<span>级别:</span>
|
|
|
<Select
|
|
|
- style={{ width: 150 }}
|
|
|
+ style={{ width: 130 }}
|
|
|
value={tableSelect.dictLevel}
|
|
|
onChange={(e) =>
|
|
|
setTableSelect({ ...tableSelect, dictLevel: e, pageNum: 1 })
|
|
@@ -186,7 +190,7 @@ function A2Goods() {
|
|
|
<div className="A2topRow">
|
|
|
<span>藏品状态:</span>
|
|
|
<Select
|
|
|
- style={{ width: 150 }}
|
|
|
+ style={{ width: 130 }}
|
|
|
value={tableSelect.status}
|
|
|
onChange={(e) =>
|
|
|
setTableSelect({ ...tableSelect, status: e, pageNum: 1 })
|
|
@@ -198,7 +202,7 @@ function A2Goods() {
|
|
|
<div className="A2topRow">
|
|
|
<span>库存状态:</span>
|
|
|
<Select
|
|
|
- style={{ width: 150 }}
|
|
|
+ style={{ width: 130 }}
|
|
|
value={tableSelect.storageStatus}
|
|
|
onChange={(e) =>
|
|
|
setTableSelect({ ...tableSelect, storageStatus: e, pageNum: 1 })
|
|
@@ -221,7 +225,6 @@ function A2Goods() {
|
|
|
</Button>
|
|
|
 
|
|
|
<Button
|
|
|
- disabled={A2TableList.total <= 0}
|
|
|
type="primary"
|
|
|
onClick={() => {
|
|
|
setOutInfo({ id: -1, txt: "新增" });
|