|
|
|
@ -55,19 +55,27 @@
|
|
|
|
|
<!-- 新增物料组窗口 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-form-item label="物料组名称" prop="groupName">
|
|
|
|
|
<el-select v-model="form.groupCode" filterable clearable placeholder="请选择物料组">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="(item,index) in OriginalGroupList"
|
|
|
|
|
:key="index"
|
|
|
|
|
:label="item.groupName"
|
|
|
|
|
:value="item.groupCode">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-show="true" label="物料组编码" prop="groupCode">
|
|
|
|
|
<el-input v-model="form.groupName" placeholder="请输入物料组编码"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-row >
|
|
|
|
|
<el-col :span="16">
|
|
|
|
|
<el-form-item label="物料组名称" prop="groupCode">
|
|
|
|
|
<el-input v-model="form.groupName" placeholder="请输入物料组名称"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row >
|
|
|
|
|
<el-col :span="16">
|
|
|
|
|
<el-form-item label="物料组" prop="groupName">
|
|
|
|
|
<el-select v-model="form.groupCode" filterable clearable placeholder="请选择物料组">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="(item,index) in OriginalGroupList"
|
|
|
|
|
:key="index"
|
|
|
|
|
:label="item.groupName"
|
|
|
|
|
:value="item.groupCode">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
@ -172,6 +180,7 @@ export default {
|
|
|
|
|
this.form = {
|
|
|
|
|
id: null,
|
|
|
|
|
groupName: null,
|
|
|
|
|
groupCode: null,
|
|
|
|
|
attr1: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|