|
@@ -143,7 +143,7 @@ function B2Scene() {
|
|
|
render: (item: B2tableType) => {
|
|
|
if (item.creatorId === 1) return "管理员";
|
|
|
else {
|
|
|
- return item.pmName || "匿名";
|
|
|
+ return item.pmName || "(空)";
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -303,7 +303,7 @@ function B2Scene() {
|
|
|
roomNum: v.roomNum || "(空)",
|
|
|
myCity:
|
|
|
!v.province && !v.city ? "(空)" : `${v.province} - ${v.city}`,
|
|
|
- pmName: v.creatorId === 1 ? "管理员" : v.pmName || "匿名",
|
|
|
+ pmName: v.creatorId === 1 ? "管理员" : v.pmName || "(空)",
|
|
|
sceneName: v.sceneName || "(空)",
|
|
|
link: v.link || "(空)",
|
|
|
sceneCode: v.sceneCode || "(空)",
|
|
@@ -371,9 +371,9 @@ function B2Scene() {
|
|
|
<span>搜索项:</span>
|
|
|
<Input
|
|
|
key={inputKey}
|
|
|
- maxLength={10}
|
|
|
+ maxLength={24}
|
|
|
style={{ width: 246 }}
|
|
|
- placeholder="请输入机房编码/场景码,最多10字"
|
|
|
+ placeholder="请输入机房编码/场景码,最多24字"
|
|
|
allowClear
|
|
|
onChange={(e) => txtChangeFu(e.target.value, "searchKey")}
|
|
|
/>
|