|
@@ -34,6 +34,7 @@ function A5goods() {
|
|
|
searchKey: "",
|
|
|
dictType: "",
|
|
|
dictLevel: "",
|
|
|
+ type: "",
|
|
|
});
|
|
|
|
|
|
const getListFu = useCallback(() => {
|
|
@@ -67,6 +68,7 @@ function A5goods() {
|
|
|
searchKey: "",
|
|
|
dictType: "",
|
|
|
dictLevel: "",
|
|
|
+ type: "",
|
|
|
});
|
|
|
}, []);
|
|
|
|
|
@@ -126,7 +128,7 @@ function A5goods() {
|
|
|
<span>级别:</span>
|
|
|
<Select
|
|
|
placeholder="请选择"
|
|
|
- style={{ width: 200 }}
|
|
|
+ style={{ width: 150 }}
|
|
|
value={fromData.dictLevel}
|
|
|
onChange={(e) =>
|
|
|
setFromData({ ...fromData, dictLevel: e, pageNum: 1 })
|
|
@@ -140,6 +142,23 @@ function A5goods() {
|
|
|
/>
|
|
|
</div>
|
|
|
|
|
|
+ <div>
|
|
|
+ <span>类别:</span>
|
|
|
+ <Select
|
|
|
+ placeholder="请选择"
|
|
|
+ style={{ width: 150 }}
|
|
|
+ value={fromData.type}
|
|
|
+ onChange={(e) =>
|
|
|
+ setFromData({ ...fromData, type: e, pageNum: 1 })
|
|
|
+ }
|
|
|
+ options={[
|
|
|
+ { value: "", label: "全部" },
|
|
|
+ { value: "3D", label: "三维文物" },
|
|
|
+ { value: "2D", label: "二维文物" },
|
|
|
+ ]}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
{/* <div>
|
|
|
<span>类别:</span>
|
|
|
<Select
|