This commit is contained in:
黄心宇 2023-12-15 09:40:47 +08:00
parent b7330df3ce
commit 91fefb9464
4 changed files with 9 additions and 7 deletions

View File

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="zh-CN" class="notranslate translated-ltr" translate="no">
<html lang="zh-hans-CN" class="notranslate translated-ltr" translate="no">
<head>
<meta charset="utf-8">

View File

@ -83,7 +83,7 @@ function ZoneVIP(props){
<Spin spinning={isSpin}>
<div style={{minHeight:400}}>
{
vipLists && (vipLists.length > 0 ? <MemberList vipLists={vipLists} temp={temp}/> : <div style={{marginTop:30,backgroundColor:"#fff",padding:"20px"}}>
vipLists && (vipLists.length > 0 ? <MemberList vipLists={vipLists} temp={temp}/> : <div style={{marginTop:30,padding:"20px"}}>
<Nodata _html={"暂无数据"}/>
</div>)
}

View File

@ -1126,10 +1126,12 @@
margin-right: 7px;
}
}
.none_panels {
background-color: #FFFFFF;
margin: 25px 25px 25px 0;
border-radius: 12px;
.vip_list {
.none_panels {
background-color: #FFFFFF;
margin: 25px 25px 25px 0;
border-radius: 12px;
}
}
}
.zone_parter{

View File

@ -198,7 +198,7 @@ function New(props){
}).then(result=>{
if(result && result.data && result.data.project_issues_index){
window.scrollTo(0,0);
props.showNotification("任务创建成功!");
props.showNotification("疑修创建成功!");
props.history.push(`/${owner}/${projectsId}/issues/${result.data.project_issues_index}`);
}
}).catch(error=>{})