anln_0000001_notices #19

Merged
yezian merged 4 commits from anln_0000001_notices into main 2025-01-21 17:56:42 +08:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 4852719e40 - Show all commits

View File

@ -792,7 +792,7 @@ const BannerList = (props) => {
direction="vertical"
className="w-full"
style={{
display: pathMethod == "inward" ? "block" : "none",
display: pathMethod !== "inward" ? "block" : "none",
}}
>
<label>
@ -805,7 +805,7 @@ const BannerList = (props) => {
className="mb-2"
rules={[
{
required: pathMethod == "inward",
required: pathMethod !== "inward",
message: `请选择页面`,
},
]}

View File

@ -958,7 +958,7 @@ const HotList = (props) => {
direction="vertical"
className="w-full"
style={{
display: pathMethod == "inward" ? "block" : "none",
display: pathMethod !== "inward" ? "block" : "none",
}}
>
<label>
@ -971,7 +971,7 @@ const HotList = (props) => {
className="mb-2"
rules={[
{
required: pathMethod == "inward",
required: pathMethod !== "inward",
message: `请选择页面`,
},
]}