|
@@ -14,12 +14,12 @@
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="生产组织" prop='orgName'>
|
|
|
- <a-input-search placeholder="请输入" v-model="form.orgName" @search="onSearchPlanOrg" readOnly></a-input-search>
|
|
|
+ <a-input-search placeholder="请选择" v-model="form.orgName" @search="onSearchPlanOrg" readOnly></a-input-search>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="单据号">
|
|
|
- <a-input placeholder="请输入" v-model="form.orderCode"></a-input>
|
|
|
+ <a-input placeholder="自动生成" v-model="form.orderCode" disabled></a-input>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
@@ -39,25 +39,25 @@
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="业务员">
|
|
|
- <a-input-search placeholder="请输入" v-model="form.salesperson" @search="onSearchPerson" readOnly></a-input-search>
|
|
|
+ <a-input-search placeholder="请选择" v-model="form.salesperson" @search="onSearchPerson" readOnly></a-input-search>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="计划部门">
|
|
|
- <a-input-search placeholder="请输入" v-model="form.planDept" @search="onSearchDept" readOnly></a-input-search>
|
|
|
+ <a-input-search placeholder="请选择" v-model="form.planDept" @search="onSearchDept" readOnly></a-input-search>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
+
|
|
|
<a-col :md="4" :sm="24">
|
|
|
- <a-form-model-item label="项目编码" prop='projectCode'>
|
|
|
- <a-input placeholder="请输入" v-model="form.projectCode" disabled></a-input>
|
|
|
+ <a-form-model-item label="项目名称" prop='projectName'>
|
|
|
+ <a-input-search placeholder="请选择" v-model="form.projectName" @search="onSearchProject" readOnly></a-input-search>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
- <a-form-model-item label="项目名称" prop='projectName'>
|
|
|
- <a-input-search placeholder="请输入" v-model="form.projectName" @search="onSearchProject" readOnly></a-input-search>
|
|
|
+ <a-form-model-item label="项目编码" prop='projectCode'>
|
|
|
+ <a-input placeholder="请选择" v-model="form.projectCode" disabled></a-input>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
-
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="业务类型" prop='type'>
|
|
|
<a-select v-model="form.type" style='width:100%' >
|
|
@@ -68,12 +68,12 @@
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="制单人">
|
|
|
- <a-input placeholder="请输入" v-model="form.createBy" disabled></a-input>
|
|
|
+ <a-input placeholder="自动" v-model="form.createBy" disabled></a-input>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :md="4" :sm="24">
|
|
|
<a-form-model-item label="审批人">
|
|
|
- <a-input placeholder="请输入" v-model="form.reviewer" disabled></a-input>
|
|
|
+ <a-input placeholder="自动" v-model="form.reviewer" disabled></a-input>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
|
|
@@ -118,7 +118,7 @@
|
|
|
</template>
|
|
|
<template slot="inventoryName" slot-scope="text, record, index">
|
|
|
<a-form-model-item prop="inventoryName" class='sonItem'>
|
|
|
- <a-input-search placeholder="请输入" v-model="record.inventoryName" @search="onSearchInventory(record)" readOnly></a-input-search>
|
|
|
+ <a-input-search placeholder="请选择" v-model="record.inventoryName" @search="onSearchInventory(record)" readOnly></a-input-search>
|
|
|
</a-form-model-item>
|
|
|
</template>
|
|
|
<template slot="inventoryCode" slot-scope="text, record, index">
|
|
@@ -203,7 +203,7 @@
|
|
|
</template>
|
|
|
<template slot="windowNo" slot-scope="text, record, index">
|
|
|
<a-form-model-item prop="windowNo" class='sonItem'>
|
|
|
- <a-input placeholder="请输入" v-model="record.stanwindowNodard"></a-input>
|
|
|
+ <a-input placeholder="请输入" v-model="record.windowNo"></a-input>
|
|
|
</a-form-model-item>
|
|
|
</template>
|
|
|
<template slot="exclusiveZone" slot-scope="text, record, index">
|
|
@@ -310,7 +310,7 @@
|
|
|
data() {
|
|
|
return {
|
|
|
visible:false,
|
|
|
- form:{},
|
|
|
+ form:{state:"开立"},
|
|
|
defaultMethod:'add',
|
|
|
formTable:{
|
|
|
dataSource:[],
|