|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<el-dialog
|
|
|
:visible.sync="visible"
|
|
|
- :title="`${operatorType.name}物料详情`"
|
|
|
+ title="物料详情"
|
|
|
append-to-body
|
|
|
width="750px"
|
|
|
>
|
|
@@ -16,13 +16,13 @@
|
|
|
:gutter="$$Constant.LAYOUT_GAP"
|
|
|
>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="物料商品编码">
|
|
|
+ <el-form-item label="商品编码">
|
|
|
<el-input v-model="data.goodsCode" readonly/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="物料名称">
|
|
|
- <el-input v-model="data.name" readonly />
|
|
|
+ <el-form-item label="商品名称">
|
|
|
+ <el-input v-model="data.goodsName" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -64,8 +64,8 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="品牌">
|
|
|
- <el-input v-model="data.brand" readonly />
|
|
|
+ <el-form-item label="标签类型">
|
|
|
+ <el-input v-model="data.tagTypeName" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -73,7 +73,7 @@
|
|
|
:gutter="$$Constant.LAYOUT_GAP"
|
|
|
>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="生产商名称">
|
|
|
+ <el-form-item label="供应商">
|
|
|
<el-input v-model="data.manufacturer" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -87,7 +87,7 @@
|
|
|
:gutter="$$Constant.LAYOUT_GAP"
|
|
|
>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="最小包装单元">
|
|
|
+ <el-form-item label="计件单位">
|
|
|
<el-input v-model="data.minimumPackingUnit" readonly />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -97,15 +97,6 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row
|
|
|
- :gutter="$$Constant.LAYOUT_GAP"
|
|
|
- >
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="标签类型">
|
|
|
- <el-input v-model="data.tagTypeName" readonly />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
</div>
|
|
|
</el-form>
|
|
|
|