diff --git a/front/src/views/capacityOnTheShelf/components/PutOnTheShelf.vue b/front/src/views/capacityOnTheShelf/components/PutOnTheShelf.vue index 0e8cc563..bb8c58a2 100644 --- a/front/src/views/capacityOnTheShelf/components/PutOnTheShelf.vue +++ b/front/src/views/capacityOnTheShelf/components/PutOnTheShelf.vue @@ -231,7 +231,7 @@ v-if="item.type == 'input' && item.name.indexOf('名称') == -1" v-model:value="item.note1" :placeholder="'请输入' + item.name" - @change="changeIiem(name, data.note1)" + @change="changeIiem(item.name, item.note1)" />
{ - console.log('点击=========》', item, itemson) + // console.log('点击=========》', item, itemson) // console.log(item, itemson) if (item.note2.indexOf(itemson.dictLabel) === -1) { item.note2.push(itemson.dictLabel) } else { item.note2.splice(item.note2.indexOf(itemson.dictLabel), 1) } + // 多选判断是否为空 + if ( + item.note2.length !== 0 && + changeField.value.indexOf('应用领域') == -1 + ) { + changeField.value.push('应用领域') + console.log('点击=========》1', changeField.value, item.note2) + } else if (item.note2.length == 0) { + if (changeField.value.indexOf('应用领域') > -1) { + changeField.value.splice(changeField.value.indexOf('应用领域'), 1) + console.log('点击=========》2', changeField.value, item.note2) + } + } mybus.emit('chageDataFrom', { attrType: item.name, attrValue: item.note2.join(';'),