|
@@ -97,11 +97,11 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label="物品编码:" prop="code">
|
|
|
|
|
|
|
+ <el-form-item label="物品编码:" prop="categoryCode">
|
|
|
<el-input
|
|
<el-input
|
|
|
clearable
|
|
clearable
|
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
|
- v-model.trim="params.code"
|
|
|
|
|
|
|
+ v-model.trim="params.categoryCode"
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
@@ -115,7 +115,7 @@
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label="批次号:" prop="assetName">
|
|
|
|
|
|
|
+ <el-form-item label="批次号:" prop="batchNo">
|
|
|
<el-input
|
|
<el-input
|
|
|
clearable
|
|
clearable
|
|
|
v-model="params.batchNo"
|
|
v-model="params.batchNo"
|
|
@@ -144,6 +144,48 @@
|
|
|
></el-input>
|
|
></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
|
|
+ <el-form-item label="型号:" prop="modelType">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="params.modelType"
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
|
|
+ <el-form-item label="规格:" prop="specification">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="params.specification"
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col
|
|
|
|
|
+ v-if="dimension == 3 || dimension == 4"
|
|
|
|
|
+ v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-form-item label="客户代号:" prop="clientCode">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="params.clientCode"
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col
|
|
|
|
|
+ v-if="dimension == 3 || dimension == 4"
|
|
|
|
|
+ v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-form-item label="刻码:" prop="engrave">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="params.engrave"
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ ></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
<el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
<div class="ele-form-actions">
|
|
<div class="ele-form-actions">
|
|
|
<el-button
|
|
<el-button
|
|
@@ -174,10 +216,17 @@
|
|
|
data() {
|
|
data() {
|
|
|
// 默认表单数据
|
|
// 默认表单数据
|
|
|
const defaultParams = {
|
|
const defaultParams = {
|
|
|
|
|
+ batchNo: '',
|
|
|
informationName: '',
|
|
informationName: '',
|
|
|
warehouseId: '',
|
|
warehouseId: '',
|
|
|
manualBatchNo: '',
|
|
manualBatchNo: '',
|
|
|
- barcodes: ''
|
|
|
|
|
|
|
+ barcodes: '',
|
|
|
|
|
+ engrave: '',
|
|
|
|
|
+ clientCode: '',
|
|
|
|
|
+ modelType: '',
|
|
|
|
|
+ specification: '',
|
|
|
|
|
+ categoryCode: '',
|
|
|
|
|
+ assetName: ''
|
|
|
};
|
|
};
|
|
|
return {
|
|
return {
|
|
|
// 表单数据
|
|
// 表单数据
|