[Frontend] 修改歷史紀錄的日曆樣式 | 報表管理新增單位

This commit is contained in:
Celeste 2023-08-23 16:38:22 +08:00
parent 655ad8e589
commit 04bc7fa53e
3 changed files with 14 additions and 6 deletions

View File

@ -40,7 +40,7 @@
</div>
<div class="col-auto">
<div class="form-group">
<input class="form-control" id="his_startdate" data-val="" type="date" name="date" value="">
<input class="form-control flatpickr flatpickr-input selectDate" id="his_startdate" data-val="" type="date" name="date" value="">
<input class="form-control" id="getmonth" type="month" style="display: none" />
</div>
</div>
@ -75,14 +75,13 @@
</div>
</main>
<script>
var historyTable = null;
var buildingTag = null;
pageAct.hisBuiName = "";
hisFirst = true;
$(function () {
console.log(1);
flatpickr(".selectDate", {});
let html = "";
for (let building of pageAct.buildList) {
html += `<label class="btn btn-secondary">

View File

@ -171,7 +171,7 @@
<button type="button" class="btn btn-danger ml-2" onclick="CleanAll()">全部清除</button>
<button type="button" class="btn btn-info allbtn ml-2" onclick="LookRealTime()">查看即時資訊</button> -->
</div>
<span class="d-flex justify-content-end">單位kWh </span>
<table id="report_table"
class="table table-bordered table-striped text-center m-0"></table>
</div>
@ -799,11 +799,18 @@
title: "單價",
data: "price",
sWidth: "45px",
render: function (data) {
return parseInt(data) === 0 ? "" : data;
},
},
{
title: "金額總計",
data: "total_price",
sWidth: "70px",
render: function (data) {
console.log(data)
return parseInt(data) === 0 ? "" : data;
},
},
];
const tableType = $("li.active [name=reportTypeRadio]").data("value");

View File

@ -77,6 +77,8 @@ License: You must have a valid license purchased only from wrapbootstrap.com (li
<link rel="stylesheet"
href="lib\bootstrap-datepicker\bootstrap-datepicker.min.css"
type="text/css" />
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css" />
</head>
<!-- BEGIN Body -->
<!-- Possible Classes
@ -818,6 +820,7 @@ License: You must have a valid license purchased only from wrapbootstrap.com (li
+ smartpanels.js (extension)
+ src/../jquery-snippets.js (core) -->
<!-- verdors.bundle.js 已含有 jquery Library v3.5.1-->
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
<script src="lib/vendors.bundle.js"></script>
<!-- toast 第三方套件 若 require 此套件只能用 define 使用,先暫時 html 引用-->
<script src="lib/notifications/toastr/toastr.min.js"></script>
@ -852,7 +855,6 @@ License: You must have a valid license purchased only from wrapbootstrap.com (li
<script src="js/n4js/elevatorbaja.js"></script>
<script src="js/bajascript/require.config.js"></script>
<script src="js/FileSaver.js"></script>
<script>
/*$('#js-page-content').smartPanel();*/
var cookies = null;
@ -2048,7 +2050,7 @@ License: You must have a valid license purchased only from wrapbootstrap.com (li
<a href="javascript:;" id="sysMonTopBtn" class="text-center dropdown-toggle" data-toggle="dropdown" data-tabname="topFunBtn" class="text-center">
<i class="fal fa-tv fa-2x"></i><br>${v.subName}
</a>
<div style="transform: translateY(55px)">
<div style="transform: translateY(5%)">
<div class="dropdown-menu dropdown-menu-right sys_building_dropdown_menu" >
</div>
</div>