headRight.vue
1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<template>
<div class="dv-content-body-head-list-right"></div>
</template>
<script>
export default {
data() {
return {
sysData: {},
unit: '',
conf: null,
result: {
shipmentNum: 0, //出库量
receiptNum: 0, //入库量
},
}
},
methods: {
getData(flag) {
let urlSuffix = window.baseOnLineOrOff ? 'wms/api/tv/monthTaskNum' : 'wms/api/mobile/monthTaskNum?zoneCode='
let opt = {
urlSuffix: urlSuffix + flag,
logTitle: '当月',
}
let callBackFn = (res) => {
this.conf = null
if (!this.ajaxSuccessDataBefore(res, opt.logTitle)) return
let data = ''
switch (flag) {
case 'A':
data = '箱'
break
case 'B':
data = '盘'
break
case 'C':
data = '桶'
break
case 'D':
data = '托'
break
}
this.unit = data
this.result.shipmentNum = this.sysData[0].shipmentNum
this.result.receiptNum = this.sysData[0].receiptNum
this.conf = {
value: this.sysData[0].proportion,
borderWidth: 2,
}
}
''.ajax(this, opt, callBackFn)
},
ajaxSuccessDataBefore(res, title) {
if (res.data == null || res.data.result.length == 0) {
''.Log(title + '无数据', 'getData')
this.result.shipmentNum = 0
this.result.proportion = 0
this.result.receiptNum = 0
return false
}
return true
},
mounted() {
this.getData()
},
},
}
</script>
<style lang="less" scoped>
.dv-content-body-head-list-right {
width: 49.5vw;
height: 95%;
border: 1px solid red;
div {
}
}
</style>