Commit 366b36cb by Kim Eunchul

Task #45172 更新要コンテンツ表示対応 //onorientationchange

parent 2ed5e185
......@@ -12904,6 +12904,16 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover {
display: inline-flex!important
}
.update {
background: #fffaf7 !important;
}
tr.update a:before {
content: '\f2f9';
font-family: "Font Awesome 5 Free";
color: #0053f0;
font-weight: 600;
margin-right: 5px;
}
@media (max-width: 500px) {
.operationStartDate {
display: none!important
......
......@@ -443,7 +443,9 @@ CHK.initReportApp = function (callback) {
$(window).resize(function() {
CHK.setCategoryHeight();
});
$(window).onorientationchange(function() {
CHK.setCategoryHeight();
});
CHK.isSearched = false;
CHK.operationGroupMasterId = 0;
// 作業一覧JSONデータ
......@@ -2989,7 +2991,12 @@ CHK.createOperationList = function(operationList, isSearched = false) {
}
}
for (var i = 0; i < operationList.length; i++) {
var operationTR = $("<tr/>");
var operationTR;
if(operationList[i].updateFlg == 1){
operationTR = $("<tr class= 'update'/>");
}else{
operationTR = $("<tr/>");
}
//TODO aタグlist.html 転移処理
var operationNameTd;
if (operationList[i].permitCodeRequiredFlg == 1) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment