|
|
@ -474,6 +474,20 @@
|
|
|
|
style="width: 320px"
|
|
|
|
style="width: 320px"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
<el-form-item label="垛型" prop="packType">
|
|
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
|
|
v-model="form.packType"
|
|
|
|
|
|
|
|
placeholder="请选择垛型"
|
|
|
|
|
|
|
|
style="width: 320px"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
|
|
v-for="dict in dict.type.pack_type"
|
|
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
<el-button type="primary" @click="submitAttachedForm">确 定</el-button>
|
|
|
|
<el-button type="primary" @click="submitAttachedForm">确 定</el-button>
|
|
|
@ -587,7 +601,7 @@ import { syncProductSAP } from "@/api/technology/proroute";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "Product",
|
|
|
|
name: "Product",
|
|
|
|
dicts: ["sys_normal_disable", "material_type"],
|
|
|
|
dicts: ["sys_normal_disable", "material_type","pack_type"],
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
LS: {
|
|
|
|
LS: {
|
|
|
@ -726,6 +740,7 @@ export default {
|
|
|
|
oldProductCode: null,
|
|
|
|
oldProductCode: null,
|
|
|
|
partsProductCode: null,
|
|
|
|
partsProductCode: null,
|
|
|
|
skuBarcode: null,
|
|
|
|
skuBarcode: null,
|
|
|
|
|
|
|
|
packType: null,
|
|
|
|
length: null,
|
|
|
|
length: null,
|
|
|
|
width: null,
|
|
|
|
width: null,
|
|
|
|
height: null,
|
|
|
|
height: null,
|
|
|
|