|
@@ -3,7 +3,7 @@
|
|
|
:title="!dataForm.id ? '明细新增' : '明细修改'"
|
|
|
:close-on-click-modal="false"
|
|
|
:modal="false"
|
|
|
- :width="'70%'"
|
|
|
+ :width="'50%'"
|
|
|
:visible.sync="visible">
|
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()"
|
|
|
label-width="80px">
|
|
@@ -13,18 +13,18 @@
|
|
|
<el-input v-model="dataForm.orderNo" :disabled="true" placeholder=""></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="客户" prop="customerId">
|
|
|
- <el-select v-model="dataForm.customerId" placeholder="请选择" style="width: 100%" clearable>
|
|
|
- <el-option
|
|
|
- v-for="item in customerIdCombo"
|
|
|
- :key="item.value"
|
|
|
- :label="item.customerName"
|
|
|
- :value="item.customerId">
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+<!-- <el-col :span="8">-->
|
|
|
+<!-- <el-form-item label="客户" prop="customerId">-->
|
|
|
+<!-- <el-select v-model="dataForm.customerId" placeholder="请选择" style="width: 100%" clearable>-->
|
|
|
+<!-- <el-option-->
|
|
|
+<!-- v-for="item in customerIdCombo"-->
|
|
|
+<!-- :key="item.value"-->
|
|
|
+<!-- :label="item.customerName"-->
|
|
|
+<!-- :value="item.customerId">-->
|
|
|
+<!-- </el-option>-->
|
|
|
+<!-- </el-select>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- </el-col>-->
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="单据状态" prop="orderStatus">
|
|
|
<el-select v-model="dataForm.lineStatus" :disabled="true" placeholder="请选择" style="width: 100%">
|
|
@@ -37,8 +37,6 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="物料" prop="sku">
|
|
|
<el-input v-model="dataForm.sku" placeholder="">
|
|
@@ -46,37 +44,39 @@
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="指定库区" prop="pickZone">
|
|
|
- <el-select v-model="dataForm.pickZone" @change="locationZoneChange" placeholder="请选择库区" clearable
|
|
|
- size="small" style="width: 100%">
|
|
|
- <el-option
|
|
|
- v-for="dict in this.locationZoneCombo"
|
|
|
- :key="dict.zoneId"
|
|
|
- :label="dict.zoneName"
|
|
|
- :value="dict.zoneId"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="指定库位" prop="location">
|
|
|
- <el-select v-model="dataForm.location" placeholder="请选择库位" clearable size="small" style="width: 100%">
|
|
|
- <el-option
|
|
|
- v-for="dict in locationCombo"
|
|
|
- :key="dict.id"
|
|
|
- :label="dict.locationNo"
|
|
|
- :value="dict.id"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="订单数" prop="qtyOrdered">
|
|
|
<el-input v-model="dataForm.qtyOrdered" placeholder=""></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+
|
|
|
+<!-- <el-col :span="8">-->
|
|
|
+<!-- <el-form-item label="指定库区" prop="pickZone">-->
|
|
|
+<!-- <el-select v-model="dataForm.pickZone" @change="locationZoneChange" placeholder="请选择库区" clearable-->
|
|
|
+<!-- size="small" style="width: 100%">-->
|
|
|
+<!-- <el-option-->
|
|
|
+<!-- v-for="dict in this.locationZoneCombo"-->
|
|
|
+<!-- :key="dict.zoneId"-->
|
|
|
+<!-- :label="dict.zoneName"-->
|
|
|
+<!-- :value="dict.zoneId"-->
|
|
|
+<!-- />-->
|
|
|
+<!-- </el-select>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+<!-- <el-col :span="8">-->
|
|
|
+<!-- <el-form-item label="指定库位" prop="location">-->
|
|
|
+<!-- <el-select v-model="dataForm.location" placeholder="请选择库位" clearable size="small" style="width: 100%">-->
|
|
|
+<!-- <el-option-->
|
|
|
+<!-- v-for="dict in locationCombo"-->
|
|
|
+<!-- :key="dict.id"-->
|
|
|
+<!-- :label="dict.locationNo"-->
|
|
|
+<!-- :value="dict.id"-->
|
|
|
+<!-- ></el-option>-->
|
|
|
+<!-- </el-select>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+
|
|
|
<div style="cursor: pointer;" @click="showHidden">
|
|
|
<el-divider content-position="center">批次属性信息...</el-divider>
|
|
|
</div>
|