|
@@ -84,7 +84,6 @@ export default {
|
|
|
goodsId: '',
|
|
|
goodsImage: '',
|
|
|
goodsName: '',
|
|
|
- goodsSalesUnit: '',
|
|
|
goodsSpecification: '',
|
|
|
goodsSpell: '',
|
|
|
goodsStockUnit: '',
|
|
@@ -101,7 +100,9 @@ export default {
|
|
|
remark: '',
|
|
|
selfWebsitAmount: '',
|
|
|
selfWorkerAmount: '',
|
|
|
- status: 'ON'
|
|
|
+ status: 'ON',
|
|
|
+ costRangeMini: 0,
|
|
|
+ costRangeMax: 0
|
|
|
},
|
|
|
partsUnitList: [],
|
|
|
materialCategoryTree: [],
|
|
@@ -364,6 +365,28 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
+ md: 6,
|
|
|
+ isShow: true,
|
|
|
+ name: 'el-input',
|
|
|
+ attributes: { placeholder: '请输入', type: 'number' },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '进价范围最小值',
|
|
|
+ prop: 'costRangeMini',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ md: 6,
|
|
|
+ isShow: true,
|
|
|
+ name: 'el-input',
|
|
|
+ attributes: { placeholder: '请输入', type: 'number' },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '进价范围最大值',
|
|
|
+ prop: 'costRangeMax',
|
|
|
+ rules: [...required]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
md: 24,
|
|
|
isShow: true,
|
|
|
name: 'el-input',
|