日任务中心-修改任务列表按钮样式
This commit is contained in:
@@ -376,10 +376,17 @@ body {
|
||||
justify-content: center;
|
||||
padding: 0.1066666667rem 0;
|
||||
min-width: 1.9466666667rem;
|
||||
height: 0.4533333333rem;
|
||||
}
|
||||
.Daily_list .task_List .task_box .right .Receive_btn_RECEIVED {
|
||||
background: #F2F3F7;
|
||||
color: #AFB1B3;
|
||||
border: 0.0266666667rem solid #F2F3F7;
|
||||
}
|
||||
.Daily_list .task_List .task_box .right .Receive_btn_UNCOMPLETED {
|
||||
background: #fff;
|
||||
color: #AFB1B3;
|
||||
border: 0.0266666667rem solid #D1D1D1;
|
||||
}
|
||||
|
||||
.arabic .Daily_list .task_List .task_box .right {
|
||||
|
@@ -470,11 +470,19 @@ body {
|
||||
justify-content: center;
|
||||
padding: px2rem(8) 0;
|
||||
min-width: px2rem(146);
|
||||
height: px2rem(34);
|
||||
// border: px2rem(2) solid #FCC074;
|
||||
}
|
||||
|
||||
.Receive_btn_RECEIVED {
|
||||
background: #F2F3F7;
|
||||
color: #AFB1B3;
|
||||
border: px2rem(2) solid #F2F3F7;
|
||||
}
|
||||
.Receive_btn_UNCOMPLETED {
|
||||
background: #fff;
|
||||
color: #AFB1B3;
|
||||
border: px2rem(2) solid #D1D1D1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -186,7 +186,7 @@ function getTaskList() {
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="Receive_btn ${item.receiveStatus != 'AVAILABLE' ? 'Receive_btn_RECEIVED' : ''}" taskType ="${item.taskType}" todayDate="${item.todayDate}" receiveStatus="${item.receiveStatus}">${item.receiveStatus != 'RECEIVED' ? langReplace(localLang.demoModule.Receive) : langReplace(localLang.demoModule.Received)}</div>
|
||||
<div class="Receive_btn ${item.receiveStatus == 'RECEIVED' ? 'Receive_btn_RECEIVED' : item.receiveStatus == 'UNCOMPLETED'?'Receive_btn_UNCOMPLETED':'' }" taskType ="${item.taskType}" todayDate="${item.todayDate}" receiveStatus="${item.receiveStatus}">${item.receiveStatus != 'RECEIVED' ? langReplace(localLang.demoModule.Receive) : langReplace(localLang.demoModule.Received)}</div>
|
||||
</div>
|
||||
</div>
|
||||
`
|
||||
|
Reference in New Issue
Block a user