This commit is contained in:
2023-11-14 13:50:43 +08:00
parent c2e8855cae
commit dda80b229a

View File

@@ -51,12 +51,12 @@
<div class="title"><span class="dotIncon"></span><span class="tltxt">生产任务</span></div> <div class="title"><span class="dotIncon"></span><span class="tltxt">生产任务</span></div>
</div> </div>
<div class="list_scroll_title"> <div class="list_scroll_title">
<span>设备</span><span>工单号</span><span>班次类型</span><span>生产物料</span><span>计划开始</span><span>计划数()</span><span>已生产()</span><span>不合格()</span><span>合格率</span><span>状态</span><span>开工人</span><span>开始时间</span><span>结束时间</span> <span>设备</span><span>工单号</span><span>班次类型</span><span>生产物料</span><span>物料规格</span><span>物料型号</span><span>计划开始</span><span>计划数()</span><span>已生产()</span><span>不合格()</span><span>合格率</span><span>状态</span><span>开工人</span><span>开始时间</span><span>结束时间</span>
</div> </div>
<vue-seamless-scroll :data="ProductionTask" :class-option="classOption" class="content-block-scroll"> <vue-seamless-scroll :data="ProductionTask" :class-option="classOption" class="content-block-scroll">
<ul class="content-block-scroll-ul"> <ul class="content-block-scroll-ul">
<li v-for="(e, i) in ProductionTask" :key="i"> <li v-for="(e, i) in ProductionTask" :key="i">
<span>{{e.device}}</span><span>{{e.workorder_code}}</span><span>{{e.team}}</span><span>{{e.material_name}}</span><span>{{e.planproducestart_date}}</span><span>{{e.plan_qty}}</span><span>{{e.real_qty}}</span><span>{{e.unqualified_qty}}</span><span>{{e.qualified_rate}}</span><span>{{e.workorder_status}}</span><span>{{e.operator}}</span><span>{{e.realproducestart_date}}</span><span>{{e.realproduceend_date}}</span> <span>{{e.device}}</span><span>{{e.workorder_code}}</span><span>{{e.team}}</span><span>{{e.material_name}}</span><span>{{e.material_spec}}</span><span>{{e.material_model}}</span><span>{{e.planproducestart_date}}</span><span>{{e.plan_qty}}</span><span>{{e.real_qty}}</span><span>{{e.unqualified_qty}}</span><span>{{e.qualified_rate}}</span><span>{{e.workorder_status}}</span><span>{{e.operator}}</span><span>{{e.realproducestart_date}}</span><span>{{e.realproduceend_date}}</span>
</li> </li>
</ul> </ul>
</vue-seamless-scroll> </vue-seamless-scroll>
@@ -91,7 +91,7 @@ export default {
PersonnelMonthlyProduction: [], PersonnelMonthlyProduction: [],
ProductionTask: [], ProductionTask: [],
ShiftProductionList: [], ShiftProductionList: [],
resData: {}, resData: {}
} }
}, },
computed: { computed: {
@@ -615,20 +615,22 @@ export default {
line-height 32px line-height 32px
span span
display inline-block display inline-block
width 6.2% width 5%
text-align center text-align center
line-height 32px line-height 32px
font-size 14px font-size 14px
&:nth-child(4) &:nth-child(4)
width 10% width 16%
&:nth-child(5) &:nth-child(5)
width 10% width 6.5%
&:nth-child(6) &:nth-child(6)
width 10% width 6.5%
&:nth-child(12) &:nth-child(7)
width 10% width 8%
&:nth-child(13) &:nth-child(14)
width 10% width 9%
&:nth-child(15)
width 9%
.content-block-scroll .content-block-scroll
_wh(calc(100% - 0px), calc(100% - 113px)) _wh(calc(100% - 0px), calc(100% - 113px))
margin 0 auto 25px auto margin 0 auto 25px auto
@@ -643,20 +645,22 @@ export default {
background rgba(38,47,82,0.50) background rgba(38,47,82,0.50)
span span
display inline-block display inline-block
width 6.2% width 5%
font-size 12px font-size 12px
// padding 0 .1rem // padding 0 .1rem
text-align center text-align center
line-height 38px line-height 38px
box-sizing border-box box-sizing border-box
&:nth-child(4) &:nth-child(4)
width 10% width 16%
&:nth-child(5) &:nth-child(5)
width 10% width 6.5%
&:nth-child(6) &:nth-child(6)
width 10% width 6.5%
&:nth-child(12) &:nth-child(7)
width 10% width 8%
&:nth-child(13) &:nth-child(14)
width 10% width 9%
&:nth-child(15)
width 9%
</style> </style>