|
@@ -13,13 +13,11 @@
|
|
|
padding: 0;
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
-
|
|
|
body {
|
|
|
display: grid;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
}
|
|
|
-
|
|
|
.container {
|
|
|
width: 100vw;
|
|
|
height: 100vh;
|
|
@@ -27,13 +25,11 @@
|
|
|
display: flex;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
-
|
|
|
.container-left {
|
|
|
width: 200px;
|
|
|
padding: 10px 15px;
|
|
|
- background: rgb(216, 195, 157);
|
|
|
+ background: #fff !important;
|
|
|
}
|
|
|
-
|
|
|
.container-left input {
|
|
|
width: 80%;
|
|
|
min-height: 30px;
|
|
@@ -58,7 +54,7 @@
|
|
|
width: calc(100vw - 200px);
|
|
|
padding: 10px 15px;
|
|
|
overflow-y: auto;
|
|
|
- background: rgb(160, 240, 178);
|
|
|
+ background: #fff !important;;
|
|
|
|
|
|
}
|
|
|
|
|
@@ -75,7 +71,7 @@
|
|
|
|
|
|
.container-right table thead td {
|
|
|
color: #fff !important;
|
|
|
- background: rgb(73, 187, 58);
|
|
|
+ background: #000;
|
|
|
}
|
|
|
|
|
|
.container-right table tr td {
|
|
@@ -98,11 +94,11 @@
|
|
|
|
|
|
.delete {
|
|
|
color: #fff;
|
|
|
- background-color: #f00;
|
|
|
+ background-color: #000;;
|
|
|
}
|
|
|
|
|
|
.change {
|
|
|
- background-color: #0f0;
|
|
|
+ background-color: rgb(227 236 229);
|
|
|
}
|
|
|
|
|
|
.container-right table tr td span {
|
|
@@ -117,7 +113,7 @@
|
|
|
|
|
|
.container-right table tr td span:hover {
|
|
|
color: #fff;
|
|
|
- background-color: rgb(172, 163, 152);
|
|
|
+ background-color: #fff;
|
|
|
}
|
|
|
|
|
|
.search {
|
|
@@ -161,12 +157,12 @@
|
|
|
<p>信息显示</p>
|
|
|
<table cellpadding="0" cellspacing="0">
|
|
|
<thead>
|
|
|
- <td>序号</td>
|
|
|
- <td>一</td>
|
|
|
- <td>二</td>
|
|
|
- <td>三</td>
|
|
|
- <td>四</td>
|
|
|
- <td>五</td>
|
|
|
+ <td>ID</td>
|
|
|
+ <td>TYPE</td>
|
|
|
+ <td>ORDERNO</td>
|
|
|
+ <td>FORMULA</td>
|
|
|
+ <td>PROVINCE_ENUM</td>
|
|
|
+ <td>RULE_ORMULA</td>
|
|
|
<td>移除</td>
|
|
|
<td>修改</td>
|
|
|
</thead>
|
|
@@ -256,10 +252,12 @@
|
|
|
function postEdit(data) {
|
|
|
$.ajax({
|
|
|
url: "http://localhost:9089/jarCalculate/edit",
|
|
|
- data,
|
|
|
+ data: JSON.stringify(data),
|
|
|
type: "POST",
|
|
|
async: false,
|
|
|
+
|
|
|
dataType: "json",
|
|
|
+ contentType: 'application/json',
|
|
|
success: function (res) {
|
|
|
alert(res.message);
|
|
|
}
|