|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template> |
|
|
|
|
|
|
|
|
|
<a-spin :spinning="confirmLoading" style="height: 680px;padding-top: 10px"> |
|
|
|
|
<a-spin :spinning="confirmLoading" style="padding-top: 10px;" :style="conheight"> |
|
|
|
|
<j-form-container style="background-color: #efefef;padding-top: 10px" > |
|
|
|
|
<!-- 主表单区域 --> |
|
|
|
|
<a-form :form="form" slot="detail"> |
|
|
|
@ -247,6 +247,9 @@
|
|
|
|
|
return { |
|
|
|
|
//用于回显物料号 |
|
|
|
|
listId: [], |
|
|
|
|
conheight:{ |
|
|
|
|
height:'' |
|
|
|
|
}, |
|
|
|
|
// data, |
|
|
|
|
// columns, |
|
|
|
|
// editingKey: '', |
|
|
|
@ -691,6 +694,9 @@
|
|
|
|
|
mounted() { |
|
|
|
|
// console.log( isPlanType); |
|
|
|
|
// this.form.setFieldsValue("materialGroup",123123); |
|
|
|
|
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
|
|
|
|
window.addEventListener('resize', this.getHeight); |
|
|
|
|
this.getHeight(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
lengthCheck(rule, value, callback) { |
|
|
|
@ -699,6 +705,9 @@
|
|
|
|
|
callback('长度应当在0 ~ 12 字符') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
getHeight(){ |
|
|
|
|
this.conheight.height=window.innerHeight-230+'px'; |
|
|
|
|
}, |
|
|
|
|
selectRowChange(a, b, c) { |
|
|
|
|
// console.log("执行了",a,b,c); |
|
|
|
|
}, |
|
|
|
|