|
@@ -30,7 +30,7 @@
|
|
|
:showSearch="true"
|
|
|
option-filter-prop="children"
|
|
|
:filter-option="filterOption">
|
|
|
- <a-select-option v-for="item in productBrandList" :key="item.productBrandSn" :value="item.productBrandSn">{{ item.productBrandName }}</a-select-option>
|
|
|
+ <a-select-option v-for="item in productBrandList" :key="item.brandSn" :value="item.brandSn">{{ item.brandName }}</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -41,7 +41,7 @@
|
|
|
expand-trigger="hover"
|
|
|
change-on-select
|
|
|
:options="productTypeList"
|
|
|
- :fieldNames="{ label: 'productTypeName', value: 'id', children: 'children' }"
|
|
|
+ :fieldNames="{ label: 'productTypeName', value: 'productTypeSn', children: 'children' }"
|
|
|
id="productInfoList-productType"
|
|
|
placeholder="请选择产品分类"
|
|
|
allowClear
|
|
@@ -134,7 +134,7 @@ export default {
|
|
|
endDate: getDate.getCurrMonthDays().endtime,
|
|
|
name: '', // 产品名称
|
|
|
code: '', // 产品编码
|
|
|
- brandSn: undefined, // 品牌
|
|
|
+ productBrandSn: undefined, // 品牌
|
|
|
productTypeSn1: '', // 产品一级分类
|
|
|
productTypeSn2: '', // 产品二级分类
|
|
|
productTypeSn3: '' // 产品三级分类
|