修改看板

master
夜笙歌 11 months ago
parent b389dba0fe
commit 5f050b0f32

@ -358,7 +358,7 @@ export default {
delete node.children; delete node.children;
} }
return { return {
id: node.objId, id: node.monitorCode,
label: node.monitorName, label: node.monitorName,
children: node.children children: node.children
}; };

@ -11,24 +11,21 @@
</div> </div>
<div class="scrollTable"> <div class="scrollTable">
<div style="background-color: #094170"> <div style="background-color: #09417066">
<div class="scrollTableItem" style="font-weight: bold;"> <div class="scrollTableItem" style="font-weight: bold;">
编号 产品型号
</div>
<div class="scrollTableItem" style="font-weight: bold;">
生产工单
</div> </div>
<div class="scrollTableItem" style="font-weight: bold;"> <div class="scrollTableItem" style="font-weight: bold;">
计划数量 计划数量
</div> </div>
<div class="scrollTableItem" style="font-weight: bold;"> <div class="scrollTableItem" style="font-weight: bold;">
实际数量 完成数量
</div> </div>
<div class="scrollTableItem" style="font-weight: bold;"> <div class="scrollTableItem" style="font-weight: bold;">
差异值 生产进度
</div> </div>
<div class="scrollTableItem" style="font-weight: bold;"> <div class="scrollTableItem" style="font-weight: bold;">
完成率 开始时间
</div> </div>
</div> </div>
<vue-seamless-scroll <vue-seamless-scroll
@ -40,9 +37,8 @@
<div <div
v-for="(item, index) in scrollTableData" v-for="(item, index) in scrollTableData"
:key="index" :key="index"
> >
<div :style='"background-color:" + ((index % 2 === 0)? "#053460":"#032d57") '> <div :style='"background-color:" + ((index % 2 === 0)? "#05346066":"#032d5766") '>
<div <div
class="scrollTableItem"> class="scrollTableItem">
{{ item.name }} {{ item.name }}
@ -63,10 +59,6 @@
class="scrollTableItem"> class="scrollTableItem">
{{ item.value2 }} {{ item.value2 }}
</div> </div>
<div
class="scrollTableItem">
{{ item.value2 }}
</div>
</div> </div>
</div> </div>
</vue-seamless-scroll> </vue-seamless-scroll>
@ -225,7 +217,8 @@ export default {
{ {
name: "入库", name: "入库",
type: "bar", type: "bar",
barWidth: "15%", barWidth: "30%",
barMaxWidth: 50,
itemStyle: { itemStyle: {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
@ -245,7 +238,8 @@ export default {
{ {
name: "出库", name: "出库",
type: "bar", type: "bar",
barWidth: "15%", barWidth: "30%",
barMaxWidth: 50,
itemStyle: { itemStyle: {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
@ -324,7 +318,8 @@ export default {
{ {
name: "内胆", name: "内胆",
type: "bar", type: "bar",
barWidth: "15%", barWidth: "30%",
barMaxWidth: 50,
itemStyle: { itemStyle: {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
@ -344,7 +339,8 @@ export default {
{ {
name: "箱壳", name: "箱壳",
type: "bar", type: "bar",
barWidth: "15%", barWidth: "30%",
barMaxWidth: 50,
itemStyle: { itemStyle: {
normal: { normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [ color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
@ -442,7 +438,7 @@ export default {
text-overflow: ellipsis; text-overflow: ellipsis;
text-align: center; text-align: center;
display: inline-block; display: inline-block;
width: 16.6%; width: 20%;
} }
.chart1 { .chart1 {

@ -0,0 +1,24 @@
<template>
<div class="app-container">
</div>
</template>
<script>
import backupsJson from '../../../../data.json'
export default {
name: "Liner",
data() {
return {
}
},
mounted() {
console.log(backupsJson)
},
methods: {}
};
</script>
<style scoped>
</style>

@ -56,7 +56,7 @@ module.exports = {
name: name, name: name,
resolve: { resolve: {
alias: { alias: {
'@': resolve('src') '@': resolve('./src')
} }
}, },
plugins: [ plugins: [

Loading…
Cancel
Save