Compare commits

..

No commits in common. "007cf5e638115f14e658b96223d95d1ea72e80ef" and "2c12a26e641e440beecc27368d26e1a01d030628" have entirely different histories.

2 changed files with 14 additions and 11 deletions

View File

@ -44,7 +44,7 @@
</el-col> </el-col>
<el-col :span='4'> <el-col :span='4'>
<div class="blodTip">加工平方数(平方米)</div> <div class="blodTip">加工平方数(平方米)</div>
<div class="lightTip">{{orderGroupMsg.planArea}}</div> <div class="lightTip">{{orderGroupMsg.actualArea}}</div>
</el-col> </el-col>
<el-col :span='4'> <el-col :span='4'>
<div class="blodTip">状态</div> <div class="blodTip">状态</div>
@ -114,7 +114,7 @@
</el-col> </el-col>
<el-col :span='4'> <el-col :span='4'>
<div class="blodTip">加工平方数(平方米)</div> <div class="blodTip">加工平方数(平方米)</div>
<div class="lightTip">{{item.planArea}}</div> <div class="lightTip">{{item.actualArea}}</div>
</el-col> </el-col>
<el-col :span='4'> <el-col :span='4'>
<div class="blodTip">预计用时()</div> <div class="blodTip">预计用时()</div>
@ -247,7 +247,7 @@ export default {
orderGroupId: '', orderGroupId: '',
tableProps, tableProps,
orderMsg: [], orderMsg: [],
tableH: 150, tableH: this.tableHeight(510) / 2,
// //
queryParams: { queryParams: {
pageNo: 1, pageNo: 1,
@ -257,6 +257,9 @@ export default {
} }
}, },
mounted() { mounted() {
window.addEventListener('resize', () => {
this.tableH = this.tableHeight(510) / 2
})
this.orderGroupId = location.href.split('?')[1].split('=')[1] this.orderGroupId = location.href.split('?')[1].split('=')[1]
this.getMsg() this.getMsg()
}, },

View File

@ -202,8 +202,8 @@ export default {
processFlowList: [], processFlowList: [],
productLineList: [], productLineList: [],
workOrderTypeList: [ workOrderTypeList: [
{id: 1,name:'普通'}, {id: 1,name:'标准工单'},
{id: 2, name:'特殊'} {id: 2, name:'特殊工单'}
], ],
planStartTime: '', planStartTime: '',
planFinishTime: '', planFinishTime: '',
@ -291,12 +291,12 @@ export default {
_this.$modal.msgSuccess("操作成功") _this.$modal.msgSuccess("操作成功")
let name = this.form.name let name = this.form.name
_this.$emit('addWorkOrderSubmit') _this.$emit('addWorkOrderSubmit')
// // 使 // 使
// _this.$modal.confirm('使?').then(function() { _this.$modal.confirm('是否添加预使用主原料信息?').then(function() {
// _this.$router.push({ _this.$router.push({
// path: '/core/core-work-order?workOrderName='+encodeURI(name) path: '/core/core-work-order?workOrderName='+encodeURI(name)
// }) })
// }) })
} }
}) })
} else { } else {