Commit 890a1a7b by Kim Eunchul

Merge branch 'feature/1.4.0_kim-ec' into 'feature/1.4.0'

Feature/1.4.0 kim ec

See merge request !21
parents 2d464956 c47e3aa7
...@@ -12904,6 +12904,16 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover { ...@@ -12904,6 +12904,16 @@ a.bg-white:focus,a.bg-white:hover,button.bg-white:focus,button.bg-white:hover {
display: inline-flex!important 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) { @media (max-width: 500px) {
.operationStartDate { .operationStartDate {
display: none!important display: none!important
......
...@@ -443,7 +443,9 @@ CHK.initReportApp = function (callback) { ...@@ -443,7 +443,9 @@ CHK.initReportApp = function (callback) {
$(window).resize(function() { $(window).resize(function() {
CHK.setCategoryHeight(); CHK.setCategoryHeight();
}); });
$(window).onorientationchange(function() {
CHK.setCategoryHeight();
});
CHK.isSearched = false; CHK.isSearched = false;
CHK.operationGroupMasterId = 0; CHK.operationGroupMasterId = 0;
// 作業一覧JSONデータ // 作業一覧JSONデータ
...@@ -2989,7 +2991,12 @@ CHK.createOperationList = function(operationList, isSearched = false) { ...@@ -2989,7 +2991,12 @@ CHK.createOperationList = function(operationList, isSearched = false) {
} }
} }
for (var i = 0; i < operationList.length; i++) { for (var i = 0; i < operationList.length; i++) {
var operationTR = $("<tr/>"); var operationTR;
if(operationList[i].needSyncFlg == 1){
operationTR = $("<tr class= 'update'/>");
}else{
operationTR = $("<tr/>");
}
//TODO aタグlist.html 転移処理 //TODO aタグlist.html 転移処理
var operationNameTd; var operationNameTd;
if (operationList[i].permitCodeRequiredFlg == 1) { 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