|
@@ -8,6 +8,11 @@
|
|
|
<JSearchSelect placeholder="请选择" disabled v-model:value="model.ccmNo" dict="lg_zj" defaultValue="5" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :span="12">
|
|
|
+ <a-form-item label="牌号">
|
|
|
+ <JSearchSelect type="list" v-model:value="model.brandNum" dict="billet_spec" placeholder="请选择" allowClear />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
</a-row>
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="12">
|
|
@@ -43,7 +48,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="规格">
|
|
|
- <JSearchSelect type="list" v-model:value="model.spec" dict="billet_spec" placeholder="请选择" allowClear />
|
|
|
+ <a-input v-model:value="model.spec" placeholder="请输入" allowClear />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
@@ -87,7 +92,15 @@
|
|
|
</a-col>
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="总支数">
|
|
|
- <a-input-number :disabled="!model.outTime" style="width: 100%" v-model:value="model.amountTotal" placeholder="请输入" allowClear :min="0" :max="100" />
|
|
|
+ <a-input-number
|
|
|
+ :disabled="!model.outTime"
|
|
|
+ style="width: 100%"
|
|
|
+ v-model:value="model.amountTotal"
|
|
|
+ placeholder="请输入"
|
|
|
+ allowClear
|
|
|
+ :min="0"
|
|
|
+ :max="100"
|
|
|
+ />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
@@ -190,6 +203,7 @@
|
|
|
destination,
|
|
|
typeConfigId,
|
|
|
licensePlateStatus,
|
|
|
+ brandNum,
|
|
|
remarks,
|
|
|
} = model.value;
|
|
|
let objParams = {
|
|
@@ -210,6 +224,7 @@
|
|
|
destination,
|
|
|
typeConfigId,
|
|
|
remarks,
|
|
|
+ brandNum,
|
|
|
};
|
|
|
confirmLoading.value = true;
|
|
|
const newTypeConfigId = destination ? machineConfig.value[ccmNo].find((item) => item.label == destination).id : null;
|