|
|
@@ -75,7 +75,7 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<img src={name1Img} alt="" />
|
|
|
<div> {info.name}</div>
|
|
|
|
|
|
- <img className="A3IRtitimg" src={name2Img} alt="" />
|
|
|
+ <img src={name2Img} alt="" />
|
|
|
</div>
|
|
|
<div className="A3IRtit2">存放于{info.type1}</div>
|
|
|
|
|
|
@@ -141,12 +141,23 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
</div>
|
|
|
|
|
|
{/* 下面简介 */}
|
|
|
+ {info.name2 ? (
|
|
|
+ <div className="A3IRtitRow">
|
|
|
+ <div className="A3IRtitRowYuan">
|
|
|
+ <div></div>
|
|
|
+ </div>
|
|
|
+ <span>名称:</span>
|
|
|
+ {info.name2}
|
|
|
+ </div>
|
|
|
+ ) : null}
|
|
|
+
|
|
|
{info.num ? (
|
|
|
<div className="A3IRtitRow">
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 编号:{info.num}
|
|
|
+ <span>编号:</span>
|
|
|
+ {info.num}
|
|
|
</div>
|
|
|
) : null}
|
|
|
|
|
|
@@ -155,7 +166,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 类别:{info.type2}
|
|
|
+ <span>类别:</span>
|
|
|
+ {info.type2}
|
|
|
</div>
|
|
|
) : null}
|
|
|
|
|
|
@@ -164,7 +176,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 年代:{info.age}
|
|
|
+ <span>年代:</span>
|
|
|
+ {info.age}
|
|
|
</div>
|
|
|
) : null}
|
|
|
{info.grain ? (
|
|
|
@@ -172,7 +185,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 质地:{info.grain}
|
|
|
+ <span>质地:</span>
|
|
|
+ {info.grain}
|
|
|
</div>
|
|
|
) : null}
|
|
|
{info.size ? (
|
|
|
@@ -180,7 +194,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 尺寸:{info.size}
|
|
|
+ <span>尺寸:</span>
|
|
|
+ {info.size}
|
|
|
</div>
|
|
|
) : null}
|
|
|
{info.level ? (
|
|
|
@@ -188,7 +203,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 级别:{info.level}
|
|
|
+ <span>级别:</span>
|
|
|
+ {info.level}
|
|
|
</div>
|
|
|
) : null}
|
|
|
{info.state ? (
|
|
|
@@ -196,7 +212,8 @@ function GoodsInfoM({ info, colseFu, type }: Props) {
|
|
|
<div className="A3IRtitRowYuan">
|
|
|
<div></div>
|
|
|
</div>
|
|
|
- 状态:{info.state}
|
|
|
+ <span>状态:</span>
|
|
|
+ {info.state}
|
|
|
</div>
|
|
|
) : null}
|
|
|
</div>
|