设置ai生成提示

This commit is contained in:
lyp 2024-12-26 10:04:05 +08:00
parent 44a7be6b1e
commit 027a3020ac
2 changed files with 23 additions and 7 deletions

View File

@ -459,7 +459,11 @@ export default function CardProj(props: any) {
}
}}>
<img src={setImg} alt="" />
<div></div>
<div
style={{
textWrap: 'nowrap',
}}
></div>
</div>
<div className='threeBtn' onClick={() => {
if (data.generate.generateStatus == GenerateStatus.SUCCESS || payCharge == '全托管') {
@ -472,7 +476,11 @@ export default function CardProj(props: any) {
}
}}>
<img src={menuImg} alt="" />
<div>({data.projModCount})</div>
<div
style={{
textWrap: 'nowrap',
}}
>({data.projModCount})</div>
</div>
<div className='threeBtn rightBit' onClick={() => {
if (data.generate.generateStatus == GenerateStatus.SUCCESS || payCharge == '全托管') {
@ -486,14 +494,18 @@ export default function CardProj(props: any) {
}
}}>
<img src={orderImg} alt="" />
<div>({data.projModCount})</div>
<div
style={{
textWrap: 'nowrap',
}}
>({data.projModCount})</div>
</div>
</div>
</div>
<div className='selectTagmin'
style={{marginLeft: data.projStatus == 'NORMAL' || data.projStatus == 'EXPIRED' ? 20:220}}>
style={{marginLeft: data.projStatus == 'NORMAL' || data.projStatus == 'EXPIRED' ? 20:220,marginRight:10}}>
{props.tagArray.map((item: any) => {
return (
@ -502,7 +514,9 @@ export default function CardProj(props: any) {
color: tagIdArray.includes(item.value) ? '#ffffff' : '#5a5a5a',
border: tagIdArray.includes(item.value) ? ' 1px solid #ff7b00' : ' 1px solid #5a5a5a',
// display: data.projStatus == 'NORMAL' || data.projStatus == 'EXPIRED' ? 'block' : 'none'
marginBottom: 10
marginBottom: 10,
// 禁止换行
textWrap:'nowrap'
}}
onClick={() => {
@ -511,8 +525,8 @@ export default function CardProj(props: any) {
// props.updata()
}}
>
{item.label}
{/* 提交版权中心 */}
{/* {item.label} */}
</div>
)

View File

@ -293,6 +293,7 @@
display: flex;
margin-left: 18px;
margin-right: 10px;
}
.threeBtn {
@ -301,6 +302,7 @@
align-items: center;
margin-right: 24px;
color: #707070;
}
/* .threeBtn:hover {