From efca35e837a01df3f44755d8f9918b407e2cf0b7 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期五, 24 十一月 2023 11:08:19 +0800
Subject: [PATCH] 1.仓库、采购看板 基本已实现
---
src/views/kb/procure.vue | 54 +++++++++++++++++++++++++++---------------------------
1 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/src/views/kb/procure.vue b/src/views/kb/procure.vue
index 3026daa..75f68ba 100644
--- a/src/views/kb/procure.vue
+++ b/src/views/kb/procure.vue
@@ -9,7 +9,7 @@
</div>
<div class="kb_headTime kb_header_text" style="top: 35px;left: 800px">
- <span>浠撳簱绠$悊鏁板瓧鍖栫湅鏉�</span>
+ <span>閲囪喘濮斿鏁板瓧鍖栫湅鏉�</span>
</div>
<div class="kb_headTime" style="top: 35px;right: 25px">
@@ -326,12 +326,12 @@
<script>
import './kbCommon.css'
import { bar02, kbTop, loadEcharts } from '@/utils/myEcharts'
-// import {
-// WareHouseRightBottomData,
-// WareHouseRightTopData,
-// WareHouseTopBottomData,
-// WareHouseTopLeftData
-// } from '@/api/kanbanManager'
+import {
+ ProcureOutsourcLeftTop,
+ ProcureOutsourcLeftBottom,
+ ProcureOutsourcRightTop,
+ ProcureOutsourcRightBottom
+} from '@/api/kanbanManager'
export default {
name: 'Index2',
@@ -371,10 +371,10 @@
window.addEventListener('online', this.updateOnlineStatus)
window.addEventListener('offline', this.updateOnlineStatus)
this.updateOnlineStatus({ type: this.onLine ? 'online' : 'offline', isFirst: true })
- //
- // this.getWareHouseTopLeftData()
- // this.getWareHouseTopBottomData()
- // this.getEcharts()
+
+ this.getProcureOutsourcLeftTop()
+ this.getProcureOutsourcLeftBottom()
+ this.getEcharts()
},
beforeDestroy() {
window.removeEventListener('online', this.updateOnlineStatus)
@@ -405,8 +405,8 @@
},
// 鑾峰彇宸︿笂table鏁版嵁
- getWareHouseTopLeftData() {
- WareHouseTopLeftData().then(res => {
+ getProcureOutsourcLeftTop() {
+ ProcureOutsourcLeftTop().then(res => {
this.tableDataTop = res.data
// this.number1 = this.tableDataTop.length
const divData = this.$refs.tableDataTopRef.bodyWrapper
@@ -419,12 +419,12 @@
if (divData.clientHeight + divData.scrollTop === divData.scrollHeight) {
// 閲嶇疆table璺濈椤堕儴璺濈
divData.scrollTop = 0
- WareHouseTopLeftData().then(res => {
+ ProcureOutsourcLeftTop().then(res => {
this.tableDataTop = res.data
// this.number1 = this.tableDataTop.length
if (this.tableDataTop.length > 10) {
clearInterval(this.tableTopTask)
- this.getWareHouseTopLeftData()
+ this.getProcureOutsourcLeftTop()
}
})
}
@@ -432,8 +432,8 @@
})
},
// 鑾峰彇宸︿笅table鏁版嵁
- getWareHouseTopBottomData() {
- WareHouseTopBottomData().then(res => {
+ getProcureOutsourcLeftBottom() {
+ ProcureOutsourcLeftBottom().then(res => {
this.tableDataBottom = res.data
this.number2 = this.tableDataBottom.length
const divData = this.$refs.tableDataBottomRef.bodyWrapper
@@ -447,12 +447,12 @@
if (divData.clientHeight + divData.scrollTop === divData.scrollHeight) {
// 閲嶇疆table璺濈椤堕儴璺濈
divData.scrollTop = 0
- WareHouseTopBottomData().then(res => {
+ ProcureOutsourcLeftBottom().then(res => {
this.tableDataBottom = res.data
this.number2 = this.tableDataBottom.length
if (this.tableDataBottom.length > 10) {
clearInterval(this.tableBottomTask)
- this.getWareHouseTopBottomData()
+ this.getProcureOutsourcLeftBottom()
}
})
}
@@ -462,23 +462,23 @@
// 鑾峰彇echarts
getEcharts() {
- WareHouseRightTopData().then(res => {
- loadEcharts('bar03', bar02(res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.CanuseBaseQuantity), res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.materiel_name)))
+ ProcureOutsourcRightTop().then(res => {
+ loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
})
- WareHouseRightBottomData().then(res => {
- loadEcharts('bar04', bar02(res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.CanuseBaseQuantity), res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.materiel_name)))
+ ProcureOutsourcRightBottom().then(res => {
+ loadEcharts('bar04', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
})
this.echartsRightTop = setInterval(() => {
- WareHouseRightTopData().then(res => {
- loadEcharts('bar03', bar02(res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.CanuseBaseQuantity), res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.materiel_name)))
+ ProcureOutsourcRightTop().then(res => {
+ loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
})
}, 1000 * 15)
this.echartsRightBottom = setInterval(() => {
- WareHouseRightBottomData().then(res => {
- loadEcharts('bar04', bar02(res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.CanuseBaseQuantity), res.data.filter(i => i.CanuseBaseQuantity > 0).map(i => i.materiel_name)))
+ ProcureOutsourcRightBottom().then(res => {
+ loadEcharts('bar04', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
})
}, 1000 * 15)
},
--
Gitblit v1.9.3