yudao-dev/src/views/order/base/orderManage/orderDetailData.vue

301 lines
8.1 KiB
Vue
Raw Normal View History

2023-11-03 16:59:07 +08:00
<template>
<div class="orderDetailData">
2024-02-23 17:01:48 +08:00
<div v-show="!isSingle" style="position: relative;padding-right: 90px;">
<TopTab :orderIdList='orderIdList' :orderId="orderId" @emitFun='toggleName'/>
<el-button type="primary" plain size="small" style="position: absolute;right: 0; top: 0;height: 48px;font-size: 14px;" @click="returnOrderManage"><svg-icon icon-class="return"/> 返回</el-button>
</div>
2023-11-03 16:59:07 +08:00
<div class="box1">
<div class="boxTitle">
<span class="blueTitle"></span>
2023-11-09 15:01:50 +08:00
<span>订单编码: {{orderMsg.code}}</span>
2023-11-03 16:59:07 +08:00
</div>
2024-02-23 17:01:48 +08:00
<el-button v-show="isSingle" type="primary" plain size="small" style="float: right;" @click="returnOrderManage"><svg-icon icon-class="return"/> 返回</el-button>
2023-11-03 16:59:07 +08:00
<div style="padding-left: 14px;">
<el-row>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">订单名</div>
<div class="lightTip">{{orderMsg.name}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
<div class="blodTip">产品名称</div>
2023-11-03 16:59:07 +08:00
<div class="lightTip">{{orderMsg.productName}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">产品规格</div>
<div class="lightTip">{{orderMsg.specifications}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">创建时间</div>
2023-11-09 15:01:50 +08:00
<div class="lightTip">{{ parseTime(orderMsg.createTime) }}</div>
2023-11-03 16:59:07 +08:00
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">计划开始时间</div>
<div class="lightTip">{{ parseTime(orderMsg.planStartTime) }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">计划完成时间</div>
<div class="lightTip">{{ parseTime(orderMsg.planFinishTime) }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
</el-row>
<el-row>
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">计划加工数量</div>
<div class="lightTip">{{orderMsg.planQuantity}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">加工平方数(平方米)</div>
<div class="lightTip">{{orderMsg.planArea}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">预计用时()</div>
<div class="lightTip">{{ orderMsg.expectTime }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">状态</div>
<div class="lightTip">{{getDictDataLabel(DICT_TYPE.ORDER_STATUS, orderMsg.status)}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">实际开始时间</div>
<div class="lightTip">{{ parseTime(orderMsg.startProduceTime) }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">实际完成时间</div>
<div class="lightTip">{{ parseTime(orderMsg.finishProduceTime) }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
</el-row>
<el-row>
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">实际生产数量</div>
<div class="lightTip">{{orderMsg.actualQuantity }}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">完成比%</div>
<div class="lightTip">{{orderMsg.completeProp}}</div>
</el-col>
2024-02-06 14:11:35 +08:00
<el-col :span='4'>
2023-11-03 16:59:07 +08:00
<div class="blodTip">废片数量</div>
2024-02-23 17:01:48 +08:00
<div class="lightTip">该字段未绑定</div>
2023-11-03 16:59:07 +08:00
</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>
</template>
<script>
import { parseTime } from '@/utils/ruoyi'
2023-11-09 15:01:50 +08:00
import { publicFormatter } from '@/utils/dict'
import { getProcessFlowList } from '@/api/base/orderManage'
2024-02-23 17:01:48 +08:00
import TopTab from './components/topTab'
2023-11-03 16:59:07 +08:00
const tableProps1 = [
{
prop: 'issueTime',
label: '下发时间',
filter: parseTime,
2023-11-22 16:58:32 +08:00
minWidth: 160
2023-11-03 16:59:07 +08:00
},
{
prop: 'name',
label: '工单名',
2024-02-23 17:01:48 +08:00
minWidth: 160,
2023-11-03 16:59:07 +08:00
showOverflowtooltip: true
},
{
prop: 'code',
label: '工单编码',
minWidth: 150
},
2024-02-06 14:11:35 +08:00
{
prop: 'roomNameDict',
label: '负责车间',
minWidth: 150,
filter: publicFormatter('workshop')
},
2023-11-03 16:59:07 +08:00
{
2024-02-23 17:01:48 +08:00
prop: 'planQuantity',
2023-11-03 16:59:07 +08:00
label: '计划加工量',
2023-11-22 16:58:32 +08:00
width: 100
2023-11-03 16:59:07 +08:00
},
{
prop: 'actualQuantity',
label: '实际加工量',
2023-11-22 16:58:32 +08:00
width: 100
2023-11-03 16:59:07 +08:00
},
{
prop: 'actualArea',
label: '加工平方数',
2023-11-22 16:58:32 +08:00
width: 100
2023-11-03 16:59:07 +08:00
},
{
prop: 'status',
label: '状态',
2023-12-14 15:48:35 +08:00
filter: publicFormatter('work_order_status')
2023-11-03 16:59:07 +08:00
},
{
prop: 'startProduceTime',
label: '开始时间',
filter: parseTime,
2023-11-22 16:58:32 +08:00
minWidth: 160
2023-11-03 16:59:07 +08:00
},
{
prop: 'finishProduceTime',
label: '结束时间',
filter: parseTime,
2023-11-22 16:58:32 +08:00
minWidth: 160
2023-11-03 16:59:07 +08:00
},
{
prop: 'productLineNames',
label: '关联产线',
2023-11-09 15:01:50 +08:00
filter: (val) => val ? val.join(',') : '',
2023-11-03 16:59:07 +08:00
showOverflowtooltip: true
},
{
prop: 'workers',
2024-02-23 17:01:48 +08:00
label: '负责人',
showOverflowtooltip: true
2023-11-03 16:59:07 +08:00
},
{
prop: 'remark',
2024-02-23 17:01:48 +08:00
label: '备注',
showOverflowtooltip: true
2023-11-03 16:59:07 +08:00
}
]
2024-02-23 17:01:48 +08:00
import { orderDetail, getOrderList } from '@/api/base/orderManage'
2023-11-03 16:59:07 +08:00
export default {
name: 'OrderDetailData',
data() {
return {
orderId: '',
2024-02-23 17:01:48 +08:00
orderIdList: [], //订单监控跳转过来
isSingle: true,//单个详情false是多个详情
2023-11-03 16:59:07 +08:00
tableProps1,
list1: [],
2024-02-23 17:01:48 +08:00
tableH: this.tableHeight(420),
2023-11-03 16:59:07 +08:00
// 查询参数
queryParams: {
pageNo: 1,
pageSize: 500
},
2023-11-09 15:01:50 +08:00
orderMsg: {},
processFlowName: ''
2023-11-03 16:59:07 +08:00
}
},
2024-02-23 17:01:48 +08:00
components:{ TopTab },
2023-11-03 16:59:07 +08:00
mounted() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(510) / 2
})
2024-02-23 17:01:48 +08:00
if (this.$route.query.orderIdString && this.$route.query.orderIdString!=='undefined') {
getOrderList({ids:this.$route.query.orderIdString}).then(res => {
this.orderIdList = res.data.map(item => {
return {
id: item.id,
name: item.name
}
})
this.orderId = this.orderIdList[0].id
this.getMsg()
})
this.isSingle = false
console.log('aaaaa')
}else{
this.orderId = this.$route.query.orderId
this.isSingle = true
this.getMsg()
console.log('bbbbbbbbbb')
}
2023-11-03 16:59:07 +08:00
},
methods: {
getMsg() {
orderDetail({
id: this.orderId
}).then(res => {
this.orderMsg = res.data
this.list1 = res.data.coreWorkOrderRespVOS
2023-11-09 15:01:50 +08:00
// 工艺
getProcessFlowList().then(res => {
let arr = res.data || []
if (arr.length > 0) {
arr.map(item => {
if (item.id === this.orderMsg.processFlowId) {
this.processFlowName = item.name
}
})
}
})
2023-11-03 16:59:07 +08:00
})
2023-11-22 16:58:32 +08:00
},
// 返回
returnOrderManage() {
2024-02-23 17:01:48 +08:00
this.$router.go(-1)
},
// 切换tab获取订单详情
toggleName(val) {
this.orderId = val
this.getMsg()
2023-11-03 16:59:07 +08:00
}
}
}
</script>
<style lang='scss' scoped>
.orderDetailData {
background-color: rgb(242, 244, 249);
2024-02-23 17:01:48 +08:00
.box1, .box2{
2023-11-03 16:59:07 +08:00
background-color: #fff;
border-radius: 9px;
}
.box2 {
2024-02-23 17:01:48 +08:00
height: calc(100vh - 351px);
2023-11-03 16:59:07 +08:00
padding: 12px 16px 0;
2024-02-23 17:01:48 +08:00
margin-top: 8px;
2023-11-03 16:59:07 +08:00
}
.box1 {
height: 215px;
padding: 16px 16px 0 16px;
.blodTip {
height: 16px;
2023-11-09 15:01:50 +08:00
font-size: 14px;
2023-11-03 16:59:07 +08:00
font-weight: 600;
color: rgba(0,0,0,0.85);
margin-bottom: 8px;
}
.lightTip {
height: 16px;
2023-11-09 15:01:50 +08:00
font-size: 14px;
2023-11-03 16:59:07 +08:00
font-weight: 400;
color: rgba(102,102,102,0.75);
margin-bottom: 12px;
}
}
.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>