代码提交

This commit is contained in:
luoshiwen 2023-04-12 11:08:14 +08:00
commit 5939cf1dd3
11 changed files with 579 additions and 410 deletions

View File

@ -1,121 +1,166 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | ElectricPowerStorage_Digital Twin</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
</head>
<body>
<div id="unity-container" class="unity-desktop">
<canvas id="unity-canvas" width=960 height=600></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<div id="unity-warning"> </div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">ElectricPowerStorage_Digital Twin</div>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | ElectricPowerStorage_Digital Twin</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
</head>
<style>
body,
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
<body>
<div id="unity-container" style="width: 100%;height:100%" class="unity-desktop">
<canvas id="unity-canvas" style="width: 100%;height:100%"></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<script>
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
var warningBanner = document.querySelector("#unity-warning");
<div id="unity-warning"> </div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">ElectricPowerStorage_Digital Twin</div>
</div>
</div>
<script>
var container = document.querySelector("#unity-container");
var canvas = document.querySelector("#unity-canvas");
var loadingBar = document.querySelector("#unity-loading-bar");
var progressBarFull = document.querySelector("#unity-progress-bar-full");
var fullscreenButton = document.querySelector("#unity-fullscreen-button");
var warningBanner = document.querySelector("#unity-warning");
// Shows a temporary message banner/ribbon for a few seconds, or
// a permanent error message on top of the canvas if type=='error'.
// If type=='warning', a yellow highlight color is used.
// Modify or remove this function to customize the visually presented
// way that non-critical warnings and error messages are presented to the
// user.
function unityShowBanner(msg, type) {
function updateBannerVisibility() {
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
}
var div = document.createElement('div');
div.innerHTML = msg;
warningBanner.appendChild(div);
if (type == 'error') div.style = 'background: red; padding: 10px;';
else {
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
setTimeout(function() {
warningBanner.removeChild(div);
updateBannerVisibility();
}, 5000);
}
updateBannerVisibility();
// Shows a temporary message banner/ribbon for a few seconds, or
// a permanent error message on top of the canvas if type=='error'.
// If type=='warning', a yellow highlight color is used.
// Modify or remove this function to customize the visually presented
// way that non-critical warnings and error messages are presented to the
// user.
function unityShowBanner(msg, type) {
function updateBannerVisibility() {
warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';
}
var buildUrl = "Build";
var loaderUrl = buildUrl + "/WebglQidong.loader.js";
var config = {
dataUrl: buildUrl + "/WebglQidong.data.unityweb",
frameworkUrl: buildUrl + "/WebglQidong.framework.js.unityweb",
codeUrl: buildUrl + "/WebglQidong.wasm.unityweb",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "ElectricPowerStorage_Digital Twin",
productVersion: "0.1.0",
showBanner: unityShowBanner,
};
// By default Unity keeps WebGL canvas render target size matched with
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
// Set this to false if you want to decouple this synchronization from
// happening inside the engine, and you would instead like to size up
// the canvas DOM size and WebGL render target sizes yourself.
// config.matchWebGLToCanvasSize = false;
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
// Mobile device style: fill the whole browser client area with the game canvas:
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
// To lower canvas resolution on mobile devices to gain some
// performance, uncomment the following line:
// config.devicePixelRatio = 1;
canvas.style.width = window.innerWidth + 'px';
canvas.style.height = window.innerHeight + 'px';
unityShowBanner('WebGL builds are not supported on mobile devices.');
} else {
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
canvas.style.width = "960px";
canvas.style.height = "600px";
var div = document.createElement('div');
div.innerHTML = msg;
warningBanner.appendChild(div);
if (type == 'error') div.style = 'background: red; padding: 10px;';
else {
if (type == 'warning') div.style = 'background: yellow; padding: 10px;';
setTimeout(function () {
warningBanner.removeChild(div);
updateBannerVisibility();
}, 5000);
}
updateBannerVisibility();
}
loadingBar.style.display = "block";
var buildUrl = "Build";
var loaderUrl = buildUrl + "/WebglQidong.loader.js";
var config = {
dataUrl: buildUrl + "/WebglQidong.data.unityweb",
frameworkUrl: buildUrl + "/WebglQidong.framework.js.unityweb",
codeUrl: buildUrl + "/WebglQidong.wasm.unityweb",
streamingAssetsUrl: "StreamingAssets",
companyName: "DefaultCompany",
productName: "ElectricPowerStorage_Digital Twin",
productVersion: "0.1.0",
showBanner: unityShowBanner,
};
var script = document.createElement("script");
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
loadingBar.style.display = "none";
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
</script>
</body>
</html>
// By default Unity keeps WebGL canvas render target size matched with
// the DOM size of the canvas element (scaled by window.devicePixelRatio)
// Set this to false if you want to decouple this synchronization from
// happening inside the engine, and you would instead like to size up
// the canvas DOM size and WebGL render target sizes yourself.
// config.matchWebGLToCanvasSize = false;
if (/iPhone|iPad|iPod|Android/i.test(navigator.userAgent)) {
// Mobile device style: fill the whole browser client area with the game canvas:
var meta = document.createElement('meta');
meta.name = 'viewport';
meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';
document.getElementsByTagName('head')[0].appendChild(meta);
container.className = "unity-mobile";
// To lower canvas resolution on mobile devices to gain some
// performance, uncomment the following line:
// config.devicePixelRatio = 1;
canvas.style.width = window.innerWidth + 'px';
canvas.style.height = window.innerHeight + 'px';
unityShowBanner('WebGL builds are not supported on mobile devices.');
} else {
// Desktop style: Render the game canvas in a window that can be maximized to fullscreen:
// canvas.style.width = "960px";
// canvas.style.height = "600px";
}
loadingBar.style.display = "block";
var script = document.createElement("script");
var unityInstanceA
script.src = loaderUrl;
script.onload = () => {
createUnityInstance(canvas, config, (progress) => {
progressBarFull.style.width = 100 * progress + "%";
}).then((unityInstance) => {
loadingBar.style.display = "none";
unityInstanceA = unityInstance
fullscreenButton.onclick = () => {
unityInstance.SetFullscreen(1);
};
}).catch((message) => {
alert(message);
});
};
document.body.appendChild(script);
function shelvesList(val) {
console.log(val,'unity');
// unityInstanceA.Unity_ShelvesList(val)
unityInstanceA.SendMessage("Manager", "Unity_ShelvesList", val);
}
// 视角切换
function updateScene(val) {
// console.log(val,'unity');
unityInstanceA.SendMessage("Manager", "Unity_ViewportChange", val + '');
}
// 库房的定位
function selectHome(val) {
console.log(val,'库房的定位');
unityInstanceA.SendMessage("Manager", "Unity_WarehouseList", val);
}
// 库外的按钮
function outHome() {
// console.log(5);
unityInstanceA.SendMessage("Manager", "Unity_OutWarehouse", '');
}
// 转运
function transport(val) {
// console.log('转运',val);
unityInstanceA.SendMessage("Manager", "Unity_Transport", val + '');
}
// 显隐
function hide(val) {
// console.log('显隐',val);
unityInstanceA.SendMessage("Manager", "Unity_Transparence", val + '');
}
</script>
</body>
</html>

View File

@ -25,15 +25,16 @@
<span class="downPull"><img :src="i == index ? s.selectImg : s.img" alt="" /></span>
<el-dropdown-menu slot="dropdown">
<ul class="menuContent">
<li v-for="(num, index) in 15" :key="index" @click="shelfHanlder($event)">LD1_B01-{{ num < 10 ? "0" + num
<!-- <li v-for="(num, index) in 15" :key="index" @click="shelfHanlder($event)">LD1_B01-{{ num < 10 ? "0" + num
: num }}</li>
</ul>
<ul class="menuContent">
<li v-for="(num, index) in 9" :key="index + 1" @click="shelfHanlder($event)">LD1_C01-{{ num < 10 ? "0" +
num : num }}</li>
<!-- <li @click="shelfHanlder($event)">LD1_B01-01</li> -->
<li @click="shelfHanlder($event)">LD1_C02-01</li>
<li @click="shelfHanlder($event)">LD1_C03-01</li>
num : num }}</li> -->
<!-- <li @click="shelfHanlder($event)">LD1_B01-01</li> -->
<!-- <li @click="shelfHanlder($event)">LD1_C02-01</li> -->
<li v-for="(num, index) in 6" :key="index" @click="shelfHanlder($event)">FF1_C01-{{ num < 10 ? "0" + num :
num }}</li>
</ul>
</el-dropdown-menu>
</el-dropdown>
@ -42,10 +43,14 @@
<span class="downPull"><img :src="i == index ? s.selectImg : s.img" alt="" /></span>
<el-dropdown-menu slot="dropdown">
<ul class="menuContent">
<!-- <li @click="selectHomeN($event)">B01</li>
<li @click="selectHomeN($event)">C01</li>
<li @click="selectHomeN($event)">C02</li> -->
<li @click="selectHomeN($event)">A01</li>
<li @click="selectHomeN($event)">B01</li>
<li @click="selectHomeN($event)">C01</li>
<li @click="selectHomeN($event)">C02</li>
<li @click="selectHomeN($event)">C03</li>
<li @click="selectHomeN($event)">D01</li>
<li @click="selectHomeN($event)">E01</li>
</ul>
<!-- <el-dropdown-item @click="selectHomeN($event)">B01</el-dropdown-item>
<el-dropdown-item @click="selectHomeN($event)">C01</el-dropdown-item>

View File

@ -19,41 +19,41 @@ export const byPosition = (params) => {
}
// 获取物料和批次
export const byBatchAndMateri = (params) => {
axios.get('api/visualStorage/getVisualStorageListByBatchAndMateri', {
return axios.get('api/visualStorage/getVisualStorageListByBatchAndMateriel', {
params
})
}
// 仓库使用率
export const getWarehouseUsages = (params) => {
axios.get('api/visualStorage/getWarehouseUsages', {
return axios.get('api/visualStorage/getWarehouseUsages', {
params
})
}
// 每月的周转率
export const getTurnoverRate = (params) => {
axios.get('api/visualStorage/getTurnoverRateList', {
return axios.get('api/visualStorage/getTurnoverRateList', {
params
})
}
// 当月出入库金额
export const getChangeAmount = (params) => {
axios.get('api/visualStorage/getChangeAmount', {
return axios.get('api/visualStorage/getChangeAmount', {
params
})
}
// 积压物质
export const getBacklogMaterialInfo = (params) => {
axios.get('api/visualStorage/getBacklogMaterialInfo', {
return axios.get('api/visualStorage/getBacklogMaterialInfo', {
params
})
}
// 库龄结构
export const getInventoryAgeInfo = (params) => {
axios.get('api/visualStorage/getInventoryAgeInfo', {
return axios.get('api/visualStorage/getInventoryAgeInfo', {
params
})
}
@ -61,14 +61,14 @@ export const getInventoryAgeInfo = (params) => {
// 库存构成
export const getStore = (params) => {
axios.get('api/visualStorage/getInventoryConstitute', {
return axios.get('api/visualStorage/getInventoryConstitute', {
params
})
}
// 库容预测
export const getMaterialDataList = (params) => {
axios.get('api/visualStorage/getMaterialDataList', {
return axios.get('api/visualStorage/getMaterialDataList', {
params
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -8,7 +8,7 @@
<!-- 每月周转率 -->
<div class="monthlyTurnover">
<div class="title">
周转率
周转率
</div>
<div class="turnoverChart" ref="turnoverChart">
@ -36,6 +36,7 @@
</div>
</template>
<script>
import { getWarehouseUsages, getTurnoverRate, getBacklogMaterialInfo } from '@/api/index'
export default {
name: '',
data() {
@ -44,20 +45,45 @@ export default {
myChart2: '',//echarts
myChart3: '',//echarts
myChart4: '',//
storeData: {
},
}
},
mounted() {
this.drawOutbound()
this.drawStore()
this.drawTurnoverChart()
this.drawOutbound()
this.drawOverStock()
},
computed: {
},
created() {
// 使
// getWarehouseUsages({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'使');
// this.storeData = res.data.data
// this.drawStore(this.storeData)
// // console.log(this.storeData,'......');
// })
// getTurnoverRate({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// this.drawTurnoverChart(res.data.data.rateList)
// })
// getBacklogMaterialInfo({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// this.drawOverStock(res.data.data)
// })
// },
//
},
methods: {
// 使ecahrt
drawStore() {
drawStore(storeData) {
this.storemyChart = this.$echarts.init(this.$refs.storeUse)
const chartData = [
{
@ -70,6 +96,11 @@ export default {
},
];
if (storeData) {
chartData[0].value = storeData.usage
chartData[1].value = storeData.idleRate
}
const colorList = ['#f49a58', '#4351fd'];
const pieData1 = [];
// const pieData2 = [];
@ -140,7 +171,7 @@ export default {
},
formatter:
`{aa| ` + chartData[i].name + ` }{val| ` + parseInt(chartData[i].value / total * 100) + `% }`, // return
`{aa| ` + chartData[i].name + ` }{val| ` + chartData[i].value + `% }`, // return
x: "left",
textStyle: {
// color: "#BAFF7F",
@ -245,13 +276,23 @@ export default {
});
},
//
drawTurnoverChart() {
drawTurnoverChart(turnoverList) {
this.myChart2 = this.$echarts.init(this.$refs.turnoverChart)
var xDataArr = ['1月', '2月', '3月', '4月', '5月', '6月']
var yDataArr = [0, 182, 191, 150, 0, 0, 0]
if (turnoverList) {
xDataArr = turnoverList.map(ele => {
return ele.month + '月'
})
yDataArr = turnoverList.map(ele => {
return ele.rate
})
}
var colors = ['#4587E7', '#55c3f6', '#4351fd', '#f49a58', '#da70d6', '#32cd32'];
let option = {
tooltip: {},
xAxis: {
boundaryGap: true,
type: 'category',
@ -301,7 +342,7 @@ export default {
}
},
},
name: '星期',
name: '周转率',
type: 'bar',
barWidth: 20,
data: yDataArr
@ -444,7 +485,7 @@ export default {
});
},
//
drawOverStock() {
drawOverStock(overData) {
this.myChart4 = this.$echarts.init(this.$refs.oveChart)
var data = [
{
@ -457,6 +498,11 @@ export default {
},
];
if (overData) {
data[0].value = overData.backlogAmount
data[1].value = overData.noBacklogAmount
}
var total = data.reduce((pre, cur) => {
console.log(pre, cur.value, '数据');
return pre.value + cur.value
@ -487,7 +533,7 @@ export default {
color: colors[index],
},
formatter:
`{aa|20000万}\n{bb|总物资}`, // return
overData?`{aa|${overData.amount}万}\n{bb|总物资}`:`{aa|5241万}\n{bb|总物资}`, // return
x: "left",
textStyle: {
// color: "#BAFF7F",
@ -516,7 +562,7 @@ export default {
color: colors[index],
},
formatter:
`{aa|${(item.value / 100 * 100).toFixed(2)}% }\n{bb| ${item.name}占比}`, // return
overData?`{aa|${overData.noBacklogRate}% }\n{bb| ${item.name}占比}`:`{aa|${60}% }\n{bb| ${item.name}占比}`, // return
x: "left",
textStyle: {
// color: "#BAFF7F",

View File

@ -16,9 +16,10 @@
</div>
<ul class="ul">
<li v-for="(s, i) in ulList" class="stockLi" :key="i">
<img :src="s.pic" alt="">
<img :src="pics[i]" alt="">
<span class="liName">{{ s.name }}:</span>
<span class="liNum" :class="'num' + i">{{ s.num }}&nbsp;<span style="font-size: 13px;">万元</span></span>
<span class="liNum" :class="'num' + i">{{ s.value }}&nbsp;<span
style="font-size: 13px;">{{ s.unit == true ? s.unit : '万元' }}</span></span>
</li>
</ul>
</div>
@ -51,27 +52,41 @@
</div>
</template>
<script>
import { getStore } from "@/api/index"
export default {
name: 'Stock',
data() {
return {
ulList: [
{ name: '非限制', pic: require('@/assets/images/upstock.png'), num: '26285.91' },
{ name: '质检', pic: require('@/assets/images/testing.png'), num: '1338.31' },
{ name: '冻结', pic: require('@/assets/images/freeze.png'), num: '2066.08' },
{ name: '非限制', value: '26285.91' },
{ name: '质检', value: '1338.31' },
{ name: '冻结', value: '2066.08' },
],
pics: [require('@/assets/images/upstock.png'), require('@/assets/images/testing.png'), require('@/assets/images/freeze.png')],
inputVal: '',
ISRList: [
{ productMsg: '镇江扬中国电电力线缆', address: 'B01-050103', num: '26823' },
{ productMsg: '镇江扬中国电电力线缆', address: 'B01-050104', num: '17895' },
],
textarea:''
textarea: ''
}
},
mounted() {
//
this.drawOutboundStock()
},
created() {
//
// getStore({wareHouseCode:'HA1'}).then(res=>{
// // console.log(res,'');
// if(res.data.code==200){
// // console.log(res.data.data,'kulin');
// this.ulList = res.data.data.infoList
// // console.log(this.ulList);
// }
// })
},
computed: {
},
@ -289,15 +304,18 @@ export default {
display: flex;
justify-content: space-evenly;
flex-direction: column;
p>span:nth-child(1){
p>span:nth-child(1) {
display: inline-block;
width: 5em;
}
.address,.num{
.address,
.num {
font-family: quare;
color: #4c59fd;
}
.p1 {
width: 100%;

View File

@ -1,272 +1,327 @@
<template>
<div class="aside">
<div class="aside-box">
<div class="left-item">
<div class="logo">
<img src="@/assets/images/logo.png" alt="">
</div>
<!-- 右边小图标样式 -->
<ul class="icons">
<li class="icon-item" ref="iconItem" v-for="(s, i) in asideList" data-num="0" :key="i"
@click="updateImg(i, $event)">
<img :src="i == index ? s.select : s.pic" alt="">
<span :style="i == index ? 'color:#2620b1' : ''">{{ s.name }}</span>
<div class="mark">
</div>
</li>
</ul>
</div>
<!-- <transition name="slide-fade"> -->
<!-- </transition> -->
<!-- <transition name="move"> -->
<!-- 库存组件 -->
<!-- <Stock v-if="index == 1" class="right-item" /> -->
<!-- 入库的组件 -->
<!-- <EnterStore v-if="index == 2" class="right-item" /> -->
<!-- 出库组件 -->
<!-- <OutStore v-if="index == 3" class="right-item" /> -->
<!-- <Manage v-if="index == 4" class="right-item" /> -->
<!-- </transition> -->
<keep-alive>
<transition name="slide-fade" mode="out-in">
<component ref="rightItem" :is="view" class="right-item"></component>
</transition>
</keep-alive>
<div class="aside" @click="stopHandle()">
<div class="aside-box">
<div class="left-item">
<div class="logo">
<img src="@/assets/images/logo.png" alt="" />
</div>
<!-- 右边小图标样式 -->
<ul class="icons">
<li
class="icon-item"
ref="iconItem"
v-for="(s, i) in asideList"
data-num="0"
:key="i"
@click="updateImg(i, $event)"
>
<img :src="i == index ? s.select : s.pic" alt="" />
<span :style="i == index ? 'color:#2620b1' : ''">{{ s.name }}</span>
<div class="mark"></div>
</li>
</ul>
</div>
<!-- <transition name="slide-fade"> -->
<!-- </transition> -->
<!-- <transition name="move"> -->
<!-- 库存组件 -->
<!-- <Stock v-if="index == 1" class="right-item" /> -->
<!-- 入库的组件 -->
<!-- <EnterStore v-if="index == 2" class="right-item" /> -->
<!-- 出库组件 -->
<!-- <OutStore v-if="index == 3" class="right-item" /> -->
<!-- <Manage v-if="index == 4" class="right-item" /> -->
<!-- </transition> -->
<keep-alive>
<transition name="slide-fade" mode="out-in">
<component ref="rightItem" :is="view" class="right-item"></component>
</transition>
</keep-alive>
</div>
</div>
</template>
<script>
//
import Stock from '@/component/Stock.vue'
import Stock from "@/component/Stock.vue";
//
import Manage from '@/component/Manage.vue'
import Manage from "@/component/Manage.vue";
//
import EnterStore from '@/component/EnterStore.vue'
import EnterStore from "@/component/EnterStore.vue";
//
import OutStore from '@/component/OutStore.vue'
import OverView from '@/component/OverView.vue'
import OutStore from "@/component/OutStore.vue";
import OverView from "@/component/OverView.vue";
import {getBacklogMaterialInfo,byPosition, byBatchAndMateri ,getWarehouseUsages,getTurnoverRate,getChangeAmount ,getInventoryAgeInfo ,getStore,getMaterialDataList} from "@/api/index";
export default {
name: 'index',
components: {
Stock,
Manage,
EnterStore,
OutStore,
OverView
name: "index",
components: {
Stock,
Manage,
EnterStore,
OutStore,
OverView,
},
data() {
return {
index: 0,
asideList: [
{
name: "总览",
select: require("@/assets/images/overview-select.png"),
pic: require("@/assets/images/overview-default.png"),
},
{
name: "库存",
select: require("@/assets/images/stock-select.png"),
pic: require("@/assets/images/stock-default.png"),
},
{
name: "入库",
select: require("@/assets/images/enter-select.png"),
pic: require("@/assets/images/enter-default.png"),
},
{
name: "出库",
select: require("@/assets/images/out-select.png"),
pic: require("@/assets/images/out-default.png"),
},
{
name: "管理",
select: require("@/assets/images/manage-select.png"),
pic: require("@/assets/images/manage-default.png"),
},
],
view: "",
asideShow: false,
};
},
mounted() {
// setTimeout(()=>{
this.view = "OverView";
// },2000)
//
// byPosition({ wareHouseCode: "HA1", position: "B01-010102" }).then((res) => {
// console.log(res, "");
// });
// //
// byBatchAndMateri({ batch:"2021093009",wareHouseCode:'HA1' }).then((res) => {
// console.log(res,'');
// });
// // 使
// getWarehouseUsages({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'使');
// })
//
// getTurnoverRate({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// })
//
// getChangeAmount({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// })
//
//
// getInventoryAgeInfo({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// })
//
// getStore({wareHouseCode:'HA1'}).then(res=>{
// console.log(res,'');
// })
//
// getMaterialDataList({method:'getYckc',LGUNM:"HA1",NY:"202304"}).then(res=>{
// console.log(res,'');
// })
},
created() {},
computed: {},
methods: {
stopHandle(){
// console.log(this.$parent,'');
if(this.$parent.index==0||this.$parent.index==2){
this.$parent.index=null
}
},
data() {
return {
index: 0,
asideList: [
{ name: '总览', select: require("@/assets/images/overview-select.png"), pic: require('@/assets/images/overview-default.png') },
{ name: '库存', select: require("@/assets/images/stock-select.png"), pic: require('@/assets/images/stock-default.png') },
{ name: '入库', select: require("@/assets/images/enter-select.png"), pic: require('@/assets/images/enter-default.png') },
{ name: '出库', select: require("@/assets/images/out-select.png"), pic: require('@/assets/images/out-default.png') },
{ name: '管理', select: require("@/assets/images/manage-select.png"), pic: require('@/assets/images/manage-default.png') }
],
view: '',
asideShow: false,
}
//
updateImg(i, event) {
//
this.asideShow = !this.asideShow;
if (this.index == i && this.asideShow) {
// console.log(1);
this.view = "";
return;
}
this.index = i;
// let rightBox = document.querySelector('.right-item')
// rightBox.style.transform = 'translateX(0)'
// console.log(rightBox,'dom');
// console.log(event.target,'....');
if (this.index == 0) {
// this.$nextTick(() => {
// // echarts
// this.drawStore()
// this.drawTurnoverChart()
// this.drawOutbound()
// this.drawOverStock()
// })
this.view = "OverView";
} else if (this.index == 1) {
this.view = "Stock";
} else if (this.index == 2) {
this.view = "EnterStore";
} else if (this.index == 3) {
this.view = "OutStore";
} else if (this.index == 4) {
this.view = "Manage";
}
this.asideShow = false;
},
mounted() {
// setTimeout(()=>{
this.view = 'OverView'
// },2000)
},
created(){
},
computed: {
},
methods: {
//
updateImg(i, event) {
//
this.asideShow = !this.asideShow
if (this.index == i && this.asideShow) {
// console.log(1);
this.view = ''
return
}
this.index = i
// let rightBox = document.querySelector('.right-item')
// rightBox.style.transform = 'translateX(0)'
// console.log(rightBox,'dom');
// console.log(event.target,'....');
if (this.index == 0) {
// this.$nextTick(() => {
// // echarts
// this.drawStore()
// this.drawTurnoverChart()
// this.drawOutbound()
// this.drawOverStock()
// })
this.view = 'OverView'
} else if (this.index == 1) {
this.view = 'Stock'
} else if (this.index == 2) {
this.view = 'EnterStore'
} else if (this.index == 3) {
this.view = 'OutStore'
} else if (this.index == 4) {
this.view = 'Manage'
}
this.asideShow = false
}
},
}
},
};
</script>
<style scoped lang="less">
.mark {
// display: none;
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
// background-color: #888888;
// display: none;
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
// background-color: #888888;
}
.slide-fade-enter-active {
transition: all 1s;
transition: all 1s;
}
.slide-fade-leave-active {
transition: all 1s cubic-bezier(1.0, 0.5, 0.8, 1.0);
transition: all 1s cubic-bezier(1, 0.5, 0.8, 1);
}
.slide-fade-enter,
.slide-fade-leave-to {
transform: translateX(-100%);
opacity: 0;
transform: translateX(-100%);
opacity: 0;
}
.aside {
width: 21.4%;
height: 100%;
width: 21.4%;
height: 100%;
display: flex;
align-items: center;
margin-left: 3%;
position: relative;
z-index: 99;
.aside-box {
width: 100%;
height: 92.6%;
overflow: hidden;
// background-color: rgba(229, 237, 242, .5);
border-radius: 20px;
display: flex;
align-items: center;
margin-left: 3%;
position: relative;
z-index: 99;
.aside-box {
width: 100%;
height: 92.6%;
overflow: hidden;
// background-color: rgba(229, 237, 242, .5);
border-radius: 20px;
.left-item {
width: 18.8%;
height: 100%;
background-color: #f7f8f9;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
position: relative;
z-index: 15;
.logo {
margin-top: 15px;
display: flex;
justify-content: center;
margin-bottom: 32px;
}
.left-item {
width: 18.8%;
height: 100%;
background-color: #f7f8f9;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
position: relative;
z-index: 15;
.icons {
width: 100%;
height: 10%;
.logo {
margin-top: 15px;
display: flex;
justify-content: center;
margin-bottom: 32px;
}
.icons {
width: 100%;
height: 10%;
.icon-item {
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: center;
cursor: pointer;
position: relative;
img {
display: block;
}
span {
display: inline-block;
width: 100%;
text-align: center;
color: #888888;
}
}
}
}
.right-item {
width: 81.2%;
// display: none;
// opacity: 0;
// transition: all 1s;
height: 100%;
// transform: translateX(-100%);
background-color: rgba(229, 237, 242, .5);
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
position: relative;
z-index: 10;
.title {
font-size: 16px;
margin-left: 7%;
margin-bottom: 4%;
}
.storeUse {
width: 100%;
height: 21.5%;
}
.monthlyTurnover,
.outboundAmount {
width: 100%;
height: 25%;
.turnoverChart,
.outboundChart {
width: 90%;
height: 80%;
background-color: #fff;
margin: 0 auto;
border-radius: 10px;
}
}
.overStock {
height: calc(100% - 71.5%);
width: 100%;
.overChart {
width: 100%;
height: 80%;
}
}
.icon-item {
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: center;
cursor: pointer;
position: relative;
img {
display: block;
}
span {
display: inline-block;
width: 100%;
text-align: center;
color: #888888;
}
}
}
}
.right-item {
width: 81.2%;
// display: none;
// opacity: 0;
// transition: all 1s;
height: 100%;
// transform: translateX(-100%);
background-color: rgba(229, 237, 242, 0.5);
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
position: relative;
z-index: 10;
.title {
font-size: 16px;
margin-left: 7%;
margin-bottom: 4%;
}
.storeUse {
width: 100%;
height: 21.5%;
}
.monthlyTurnover,
.outboundAmount {
width: 100%;
height: 25%;
.turnoverChart,
.outboundChart {
width: 90%;
height: 80%;
background-color: #fff;
margin: 0 auto;
border-radius: 10px;
}
}
.overStock {
height: calc(100% - 71.5%);
width: 100%;
.overChart {
width: 100%;
height: 80%;
}
}
}
}
}
</style>

View File

@ -1,33 +1,33 @@
// const { defineConfig } = require('@vue/cli-service')
// module.exports = defineConfig({
// transpileDependencies: true
// })
module.exports = {
// 打包文件配置
publicPath: "/",
assetsDir: "static",
lintOnSave: false,
devServer: {
// overlay: { // 让浏览器 overlay 同时显示警告和错误
// warnings: true,
// errors: true,
// },
// hotOnly: true,
// open: false, // npm run serve后自动打开页面
// https: false, // https:{type:Boolean}
// host: "0.0.0.0", // 匹配本机IP地址(默认是0.0.0.0)
// port: 8989, // 开发服务器运行端口号
proxy: {
'/api': { //代理的名字
// target:'http://111.229.30.246:3111/',
target: 'http://ip:30005/gwcp/',
// target:'http://www.weather.com.cn/',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/api': '',
}
},
}
}
}
// const { defineConfig } = require('@vue/cli-service')
// module.exports = defineConfig({
// transpileDependencies: true
// })
module.exports = {
// 打包文件配置
publicPath: "/",
assetsDir: "static",
lintOnSave: false,
devServer: {
// overlay: { // 让浏览器 overlay 同时显示警告和错误
// warnings: true,
// errors: true,
// },
// hotOnly: true,
// open: false, // npm run serve后自动打开页面
// https: false, // https:{type:Boolean}
// host: "0.0.0.0", // 匹配本机IP地址(默认是0.0.0.0)
// port: 8989, // 开发服务器运行端口号
proxy: {
'/api': { //代理的名字
// target:'http://111.229.30.246:3111/',
target: 'http://192.168.80.111:30005/gwcpedge/',
// target:'http://www.weather.com.cn/',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/api': '',
}
},
}
}
}