|
|
|
@ -787,15 +787,15 @@ export default {
|
|
|
|
|
distributeLevel: [
|
|
|
|
|
{required: true, message: '请选择计量单位', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
distributeMaxLevel: [
|
|
|
|
|
{required: true, message: '请选择允许采集的最大层级', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
// distributeMaxLevel: [
|
|
|
|
|
// {required: true, message: '请选择允许采集的最大层级', trigger: 'blur'}
|
|
|
|
|
// ],
|
|
|
|
|
useLevel: [
|
|
|
|
|
{required: true, message: '请选择计量单位', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
useMaxLevel: [
|
|
|
|
|
{required: true, message: '请选择允许采集的最大层级', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
// useMaxLevel: [
|
|
|
|
|
// {required: true, message: '请选择允许采集的最大层级', trigger: 'blur'}
|
|
|
|
|
// ],
|
|
|
|
|
},
|
|
|
|
|
detailList: [
|
|
|
|
|
// 初始化一个空对象或包含默认值的对象
|
|
|
|
@ -951,7 +951,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.setDefaultLevel()
|
|
|
|
|
// this.setDefaultLevel()
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return this.$message.error('请补充必要数据')
|
|
|
|
@ -984,22 +984,22 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//设置层级
|
|
|
|
|
setDefaultLevel(){
|
|
|
|
|
//判断流通 最大层级
|
|
|
|
|
if (this.newProductData.distributeMaxLevel == null){
|
|
|
|
|
let levelUnit = this.levelUnitList[this.levelUnitList.length - 1];
|
|
|
|
|
this.newProductData.distributeMaxLevel = levelUnit.packLevel
|
|
|
|
|
}
|
|
|
|
|
// 判断使用 采集最大层级
|
|
|
|
|
if (this.newProductData.useMaxLevel == null){
|
|
|
|
|
//获取获取第一个 如果packUnit且为null的话就设置第二个
|
|
|
|
|
let levelUnit = this.levelUnitList[0];
|
|
|
|
|
if (isBlank(levelUnit.packUnit)){
|
|
|
|
|
levelUnit = this.levelUnitList[1]
|
|
|
|
|
}
|
|
|
|
|
this.newProductData.useMaxLevel = levelUnit.packLevel
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// setDefaultLevel(){
|
|
|
|
|
// //判断流通 最大层级
|
|
|
|
|
// if (this.newProductData.distributeMaxLevel == null){
|
|
|
|
|
// let levelUnit = this.levelUnitList[this.levelUnitList.length - 1];
|
|
|
|
|
// this.newProductData.distributeMaxLevel = levelUnit.packLevel
|
|
|
|
|
// }
|
|
|
|
|
// // 判断使用 采集最大层级
|
|
|
|
|
// if (this.newProductData.useMaxLevel == null){
|
|
|
|
|
// //获取获取第一个 如果packUnit且为null的话就设置第二个
|
|
|
|
|
// let levelUnit = this.levelUnitList[0];
|
|
|
|
|
// if (isBlank(levelUnit.packUnit)){
|
|
|
|
|
// levelUnit = this.levelUnitList[1]
|
|
|
|
|
// }
|
|
|
|
|
// this.newProductData.useMaxLevel = levelUnit.packLevel
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
//层级保存
|
|
|
|
|
levelSave(row) {
|
|
|
|
|
this.editRowSwitch = false
|
|
|
|
|