库存盘点
This commit is contained in:
parent
bcab945a68
commit
58ac5e52e8
|
|
@ -15,20 +15,6 @@
|
||||||
"href": "",
|
"href": "",
|
||||||
"target": "_self",
|
"target": "_self",
|
||||||
"child": [
|
"child": [
|
||||||
{
|
|
||||||
"title": "首页",
|
|
||||||
"href": "",
|
|
||||||
"icon": "fa fa-home",
|
|
||||||
"target": "_self",
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"title": "首页1",
|
|
||||||
"href": "page/welcome-1.html",
|
|
||||||
"icon": "fa fa-tachometer",
|
|
||||||
"target": "_self"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"title": "机具需求计划",
|
"title": "机具需求计划",
|
||||||
"href": "",
|
"href": "",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
.table-box {
|
.table-box {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 330px);
|
height: calc(100% - 280px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout {
|
.layout {
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
#data-overview {
|
#data-overview {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 130px;
|
height: 80px;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 5.1 KiB |
|
|
@ -3,6 +3,7 @@ let objParam;
|
||||||
function setParams(obj) {
|
function setParams(obj) {
|
||||||
objParam = JSON.parse(obj);
|
objParam = JSON.parse(obj);
|
||||||
$('#proName').html(objParam.proName);
|
$('#proName').html(objParam.proName);
|
||||||
|
$('#status').html(setStatusColor(objParam.status));
|
||||||
$('#planNum').html(objParam.planNum);
|
$('#planNum').html(objParam.planNum);
|
||||||
setStatusColor(objParam.status);
|
setStatusColor(objParam.status);
|
||||||
layui.use(["layer", 'element'], function () {
|
layui.use(["layer", 'element'], function () {
|
||||||
|
|
@ -162,4 +163,22 @@ function numToChinese(num) {
|
||||||
// 查看需求计划
|
// 查看需求计划
|
||||||
function openDetail() {
|
function openDetail() {
|
||||||
openIframeByParamObj("view_plan", "需求计划", "../../../page/demandPlan/child/demand_plan_detail_list.html", "92%", "95%", objParam);
|
openIframeByParamObj("view_plan", "需求计划", "../../../page/demandPlan/child/demand_plan_detail_list.html", "92%", "95%", objParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 发货状态颜色
|
||||||
|
function setStatusColor(value) {
|
||||||
|
value = value ? parseInt(value) : 0;
|
||||||
|
let color = "#409Eff";
|
||||||
|
let name = ''
|
||||||
|
if (value === 0) {
|
||||||
|
color = "#f56c6c";
|
||||||
|
name = '未发货';
|
||||||
|
} else if (value === 1) {
|
||||||
|
color = "#ff9900";
|
||||||
|
name = '部分发货'
|
||||||
|
} else if (value === 2) {
|
||||||
|
color = "#19be6b";
|
||||||
|
name = '全部发货'
|
||||||
|
}
|
||||||
|
return '<span style="color:' + color + '">' + name + "</span>";
|
||||||
|
}
|
||||||
|
|
@ -53,7 +53,7 @@ function initTable() {
|
||||||
headers: {
|
headers: {
|
||||||
authorization: sessionStorage.getItem("gz-token"),
|
authorization: sessionStorage.getItem("gz-token"),
|
||||||
},
|
},
|
||||||
height: "full-180",
|
height: "full-200",
|
||||||
url: dataUrl + "backstage/planOut/getProPlanListByProId",
|
url: dataUrl + "backstage/planOut/getProPlanListByProId",
|
||||||
where: {
|
where: {
|
||||||
encryptedData: JSON.stringify({
|
encryptedData: JSON.stringify({
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@ function initTable() {
|
||||||
headers: {
|
headers: {
|
||||||
authorization: sessionStorage.getItem("gz-token"),
|
authorization: sessionStorage.getItem("gz-token"),
|
||||||
},
|
},
|
||||||
height: "full-350",
|
height: "full-300",
|
||||||
url: dataUrl + "backstage/planOut/getProPlanPage",
|
url: dataUrl + "backstage/planOut/getProPlanPage",
|
||||||
where: {
|
where: {
|
||||||
encryptedData: JSON.stringify({
|
encryptedData: JSON.stringify({
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="main-box">
|
<div id="main-box">
|
||||||
<div id="detail-box" class="layout">
|
<div id="detail-box" class="layout">
|
||||||
|
<img src="../../../images/svg/u702.svg" width="40px" height="40px" style="margin-left: 10px;">
|
||||||
<div class="layout detail" style="margin: 0 20px;">
|
<div class="layout detail" style="margin: 0 20px;">
|
||||||
<p style="font-size: 18px;font-weight: bold;" id="proName"></p>
|
<p style="font-size: 18px;font-weight: bold;" id="proName"></p>
|
||||||
<p id="status"></p>
|
<p id="status"></p>
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 30px;
|
height: 50px;
|
||||||
justify-content: start;
|
justify-content: start;
|
||||||
padding: 0 0 0 20px;
|
padding: 0 0 0 20px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.layuimini-main {
|
.layuimini-main {
|
||||||
height: calc(100% - 30px);
|
height: calc(100% - 50px);
|
||||||
margin: 10px 10px 10px 10px;
|
margin: 10px 10px 10px 10px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -45,6 +45,7 @@
|
||||||
<body>
|
<body>
|
||||||
<div class="layuimini-container">
|
<div class="layuimini-container">
|
||||||
<div class="title layout">
|
<div class="title layout">
|
||||||
|
<img src="../../../images/svg/u702.svg" width="40px" height="40px" style="margin-right: 20px;">
|
||||||
<p id="proName"></p>
|
<p id="proName"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="layuimini-main">
|
<div class="layuimini-main">
|
||||||
|
|
|
||||||
|
|
@ -16,10 +16,12 @@
|
||||||
<div id="main-box">
|
<div id="main-box">
|
||||||
<div id="basic-box">
|
<div id="basic-box">
|
||||||
<div class="layout" style="justify-content: start;">
|
<div class="layout" style="justify-content: start;">
|
||||||
|
<img src="../../../images/svg/u702.svg" width="40px" height="40px" style="margin-right: 20px;">
|
||||||
<p style="font-size: 18px;font-weight: bold;" id="proName"></p>
|
<p style="font-size: 18px;font-weight: bold;" id="proName"></p>
|
||||||
<p onclick="openDetail()" style="margin-left: 5%;cursor: pointer;">计划数量:<span
|
<p onclick="openDetail()" style="margin-left: 5%;cursor: pointer;">计划数量:<span
|
||||||
style="font-weight: bold;color: #409eff;" id="planNum">0</span></p>
|
style="font-weight: bold;color: #409eff;" id="planNum">0</span></p>
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
<form class="layui-form layuimini-form" onclick="return false;">
|
<form class="layui-form layuimini-form" onclick="return false;">
|
||||||
<div class="title layout">
|
<div class="title layout">
|
||||||
<span style="font-weight:700;text-decoration:none;color:#409EFF;">▋</span>
|
<span style="font-weight:700;text-decoration:none;color:#409EFF;">▋</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue