314 lines
8.0 KiB
Vue
314 lines
8.0 KiB
Vue
|
<template>
|
||
|
<div class="orderDetailData">
|
||
|
<div class="box1">
|
||
|
<div class="boxTitle">
|
||
|
<span class="blueTitle"></span>
|
||
|
<span>订单编码: 432784632747238</span>
|
||
|
</div>
|
||
|
<div style="padding-left: 14px;">
|
||
|
<el-row>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">订单名</div>
|
||
|
<div class="lightTip">{{orderMsg.name}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">产品信息</div>
|
||
|
<div class="lightTip">{{orderMsg.productName}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">产品规格</div>
|
||
|
<div class="lightTip">{{orderMsg.specifications}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">客户</div>
|
||
|
<div class="lightTip">{{orderMsg.customerName}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">包装规格</div>
|
||
|
<div class="lightTip">{{ getDictDataLabel(DICT_TYPE.PACK_SPEC, orderMsg.packSpec)}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">物料计算方式</div>
|
||
|
<div class="lightTip">{{orderMsg.materialMethod ? (orderMsg.materialMethod === 1 ? '产品基础' : '工艺扩展') : ''}}</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<el-row>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">创建时间</div>
|
||
|
<div class="lightTip">{{ parseTime(orderMsg.triggerTime) }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">计划开始时间</div>
|
||
|
<div class="lightTip">{{ parseTime(orderMsg.planStartTime) }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">计划完成时间</div>
|
||
|
<div class="lightTip">{{ parseTime(orderMsg.planFinishTime) }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">计划加工数量</div>
|
||
|
<div class="lightTip">{{orderMsg.planQuantity}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">加工平方数(平方米)</div>
|
||
|
<div class="lightTip">{{orderMsg.planArea}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">预计用时(时)</div>
|
||
|
<div class="lightTip">{{ orderMsg.expectTime }}</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<el-row>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">状态</div>
|
||
|
<div class="lightTip">{{getDictDataLabel(DICT_TYPE.ORDER_STATUS, orderMsg.status)}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">实际开始时间</div>
|
||
|
<div class="lightTip">{{ parseTime(orderMsg.startProduceTime) }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">实际完成时间</div>
|
||
|
<div class="lightTip">{{ parseTime(orderMsg.finishProduceTime) }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">实际生产数量</div>
|
||
|
<div class="lightTip">{{orderMsg.actualQuantity }}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">完成比%</div>
|
||
|
<div class="lightTip">{{orderMsg.completeProp}}</div>
|
||
|
</el-col>
|
||
|
<el-col :span='4'>
|
||
|
<div class="blodTip">废片数量</div>
|
||
|
<div class="lightTip">{{orderMsg.nokQuantity}}</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="box2">
|
||
|
<div class="boxTitle">
|
||
|
<span class="blueTitle"></span>
|
||
|
<span>工单信息</span>
|
||
|
</div>
|
||
|
<!-- 列表 -->
|
||
|
<base-table
|
||
|
:page="queryParams.pageNo"
|
||
|
:limit="queryParams.pageSize"
|
||
|
:table-props="tableProps1"
|
||
|
:table-data="list1"
|
||
|
:max-height="tableH"
|
||
|
/>
|
||
|
</div>
|
||
|
<div class="box3">
|
||
|
<div class="boxTitle">
|
||
|
<span class="blueTitle"></span>
|
||
|
<span>预计用料信息</span>
|
||
|
</div>
|
||
|
<!-- 列表 -->
|
||
|
<base-table
|
||
|
:page="queryParams.pageNo"
|
||
|
:limit="queryParams.pageSize"
|
||
|
:table-props="tableProps2"
|
||
|
:table-data="list2"
|
||
|
:max-height="tableH"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { parseTime } from '@/utils/ruoyi'
|
||
|
import { publicFormatter } from '@/utils/dict';
|
||
|
const tableProps1 = [
|
||
|
{
|
||
|
prop: 'issueTime',
|
||
|
label: '下发时间',
|
||
|
filter: parseTime,
|
||
|
minWidth: 150
|
||
|
},
|
||
|
{
|
||
|
prop: 'name',
|
||
|
label: '工单名',
|
||
|
minWidth: 100,
|
||
|
showOverflowtooltip: true
|
||
|
},
|
||
|
{
|
||
|
prop: 'code',
|
||
|
label: '工单编码',
|
||
|
minWidth: 150
|
||
|
},
|
||
|
{
|
||
|
prop: 'planQuantity',
|
||
|
label: '计划加工量',
|
||
|
width: 90
|
||
|
},
|
||
|
{
|
||
|
prop: 'actualQuantity',
|
||
|
label: '实际加工量',
|
||
|
width: 90
|
||
|
},
|
||
|
{
|
||
|
prop: 'actualArea',
|
||
|
label: '加工平方数',
|
||
|
width: 90
|
||
|
},
|
||
|
{
|
||
|
prop: 'status',
|
||
|
label: '状态',
|
||
|
filter: publicFormatter('order_status')
|
||
|
},
|
||
|
{
|
||
|
prop: 'startProduceTime',
|
||
|
label: '开始时间',
|
||
|
filter: parseTime,
|
||
|
minWidth: 150
|
||
|
},
|
||
|
{
|
||
|
prop: 'finishProduceTime',
|
||
|
label: '结束时间',
|
||
|
filter: parseTime,
|
||
|
minWidth: 150
|
||
|
},
|
||
|
{
|
||
|
prop: 'productLineNames',
|
||
|
label: '关联产线',
|
||
|
filter: (val) => val.join(','),
|
||
|
showOverflowtooltip: true
|
||
|
},
|
||
|
{
|
||
|
prop: 'workers',
|
||
|
label: '负责人'
|
||
|
},
|
||
|
{
|
||
|
prop: 'remark',
|
||
|
label: '备注'
|
||
|
}
|
||
|
]
|
||
|
const tableProps2 = [
|
||
|
{
|
||
|
prop: 'materialName',
|
||
|
label: '物料名称'
|
||
|
},
|
||
|
{
|
||
|
prop: 'unit',
|
||
|
label: '单位',
|
||
|
filter: publicFormatter('unit_dict')
|
||
|
},
|
||
|
{
|
||
|
prop: 'num',
|
||
|
label: '剩余生产预计消耗'
|
||
|
}
|
||
|
]
|
||
|
import { orderDetail, bomUseNum } from '@/api/base/orderManage'
|
||
|
export default {
|
||
|
name: 'OrderDetailData',
|
||
|
data() {
|
||
|
return {
|
||
|
orderId: '',
|
||
|
tableProps1,
|
||
|
tableProps2,
|
||
|
list1: [],
|
||
|
list2: [],
|
||
|
tableH: this.tableHeight(510) / 2,
|
||
|
// 查询参数
|
||
|
queryParams: {
|
||
|
pageNo: 1,
|
||
|
pageSize: 500
|
||
|
},
|
||
|
orderMsg: {}
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
window.addEventListener('resize', () => {
|
||
|
this.tableH = this.tableHeight(510) / 2
|
||
|
})
|
||
|
this.orderId = this.$route.params.orderId
|
||
|
this.getMsg()
|
||
|
},
|
||
|
watch: {
|
||
|
$route: 'initData'
|
||
|
},
|
||
|
methods: {
|
||
|
initData(to) {
|
||
|
if (to.name === 'OrderDetailData') {
|
||
|
this.orderId = this.$route.params.orderId
|
||
|
this.getMsg()
|
||
|
}
|
||
|
},
|
||
|
getMsg() {
|
||
|
orderDetail({
|
||
|
id: this.orderId
|
||
|
}).then(res => {
|
||
|
this.orderMsg = res.data
|
||
|
this.list1 = res.data.coreWorkOrderRespVOS
|
||
|
bomUseNum({
|
||
|
productId: this.orderMsg.planProductId
|
||
|
}).then(res2 => {
|
||
|
if (res2.data && res2.data.length > 0) {
|
||
|
let arr = res2.data
|
||
|
arr.map(item => {
|
||
|
if (item) {
|
||
|
item.num = item.num * this.orderMsg.remainingQuantity
|
||
|
}
|
||
|
})
|
||
|
this.list2 = arr
|
||
|
}else {
|
||
|
this.list2 = []
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang='scss' scoped>
|
||
|
.orderDetailData {
|
||
|
background-color: rgb(242, 244, 249);
|
||
|
.box1, .box2, .box3 {
|
||
|
background-color: #fff;
|
||
|
border-radius: 9px;
|
||
|
}
|
||
|
.box2 {
|
||
|
height: calc((100vh - 360px) / 2);
|
||
|
padding: 12px 16px 0;
|
||
|
margin: 8px 0;
|
||
|
}
|
||
|
.box1 {
|
||
|
height: 215px;
|
||
|
padding: 16px 16px 0 16px;
|
||
|
.blodTip {
|
||
|
height: 16px;
|
||
|
font-weight: 600;
|
||
|
color: rgba(0,0,0,0.85);
|
||
|
margin-bottom: 8px;
|
||
|
}
|
||
|
.lightTip {
|
||
|
height: 16px;
|
||
|
font-weight: 400;
|
||
|
color: rgba(102,102,102,0.75);
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
}
|
||
|
.box3 {
|
||
|
padding: 16px;
|
||
|
height: calc((100vh - 360px) / 2);
|
||
|
}
|
||
|
.boxTitle {
|
||
|
display: inline-block;
|
||
|
font-size: 16px;
|
||
|
font-weight: 400;
|
||
|
color: #000000;
|
||
|
margin:0 10px 20px 0;
|
||
|
}
|
||
|
.blueTitle {
|
||
|
content: '';
|
||
|
display: inline-block;
|
||
|
width: 4px;
|
||
|
height: 18px;
|
||
|
background-color: #0B58FF;
|
||
|
border-radius: 1px;
|
||
|
margin-right: 8px;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
}
|
||
|
</style>
|