bug!
This commit is contained in:
parent
b75e6a4fb0
commit
00af09c4f0
|
@ -308,6 +308,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 来源应用 -->
|
||||||
<div class="AssociatedApplication">
|
<div class="AssociatedApplication">
|
||||||
<a-modal
|
<a-modal
|
||||||
v-model:visible="visibleAssociatedApplication"
|
v-model:visible="visibleAssociatedApplication"
|
||||||
|
@ -329,6 +330,28 @@
|
||||||
</div>
|
</div>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 关联组件 -->
|
||||||
|
<div class="AssociatedApplication">
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="visibleAssociatedApplication"
|
||||||
|
:title="titleName"
|
||||||
|
@ok="handleOk"
|
||||||
|
@cancel="handleCancel"
|
||||||
|
style="width: 960px"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<a-transfer
|
||||||
|
v-model:target-keys="targetKeys2"
|
||||||
|
v-model:selected-keys="selectedKeys2"
|
||||||
|
:data-source="mockData2"
|
||||||
|
:titles="titles"
|
||||||
|
:render="(item) => item.title"
|
||||||
|
@change="handleChange1"
|
||||||
|
@selectChange="handleSelectChange1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
@ -630,11 +653,13 @@
|
||||||
// 来源应用
|
// 来源应用
|
||||||
const visibleAssociatedApplication = ref(false)
|
const visibleAssociatedApplication = ref(false)
|
||||||
const mockData = ref([])
|
const mockData = ref([])
|
||||||
|
const mockData2 = ref([])
|
||||||
const titles = ref(['未关联的应用名称', '已关联的应用名称'])
|
const titles = ref(['未关联的应用名称', '已关联的应用名称'])
|
||||||
const titleName = ref('来源应用')
|
const titleName = ref('来源应用')
|
||||||
const targetKeys = ref([])
|
const targetKeys = ref([])
|
||||||
|
const targetKeys2 = ref([])
|
||||||
// 上一步关联数据
|
// 上一步关联数据
|
||||||
const targetKeysBack = ref([])
|
// const targetKeysBack = ref([])
|
||||||
|
|
||||||
const sourceClick = () => {
|
const sourceClick = () => {
|
||||||
mockData.value = []
|
mockData.value = []
|
||||||
|
@ -679,7 +704,7 @@
|
||||||
const componentsClick = () => {
|
const componentsClick = () => {
|
||||||
titles.value = ['未关联的组件名称', '已关联的组件名称']
|
titles.value = ['未关联的组件名称', '已关联的组件名称']
|
||||||
titleName.value = '关联组件'
|
titleName.value = '关联组件'
|
||||||
mockData.value = []
|
mockData2.value = []
|
||||||
visibleAssociatedApplication.value = true
|
visibleAssociatedApplication.value = true
|
||||||
props.dataFrom.infoList.forEach((val) => {
|
props.dataFrom.infoList.forEach((val) => {
|
||||||
if (val.attrType === '关联组件信息' && val.attrValue != '') {
|
if (val.attrType === '关联组件信息' && val.attrValue != '') {
|
||||||
|
@ -690,18 +715,18 @@
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
// console.log(res.data.data.notLinked)
|
// console.log(res.data.data.notLinked)
|
||||||
res.data.data.notLinked.forEach((val, index) => {
|
res.data.data.notLinked.forEach((val, index) => {
|
||||||
mockData.value.push({
|
mockData2.value.push({
|
||||||
key: val.id,
|
key: val.id,
|
||||||
title: val.name,
|
title: val.name,
|
||||||
description: val.id,
|
description: val.id,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
targetKeys.value = []
|
targetKeys2.value = []
|
||||||
val.attrValue.split(',').forEach((item) => {
|
val.attrValue.split(',').forEach((item) => {
|
||||||
targetKeys.value.push(item)
|
targetKeys2.value.push(item)
|
||||||
})
|
})
|
||||||
console.log(targetKeys.value)
|
console.log(targetKeys2.value)
|
||||||
// console.log('wowowo')
|
// console.log('wowowo')
|
||||||
} else if (val.attrType === '关联组件信息' && val.attrValue == '') {
|
} else if (val.attrType === '关联组件信息' && val.attrValue == '') {
|
||||||
queryResourceRelByKeyId({
|
queryResourceRelByKeyId({
|
||||||
|
@ -711,7 +736,7 @@
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
// console.log(res.data.data.notLinked)
|
// console.log(res.data.data.notLinked)
|
||||||
res.data.data.notLinked.forEach((val, index) => {
|
res.data.data.notLinked.forEach((val, index) => {
|
||||||
mockData.value.push({
|
mockData2.value.push({
|
||||||
key: val.id,
|
key: val.id,
|
||||||
title: val.name,
|
title: val.name,
|
||||||
description: val.id,
|
description: val.id,
|
||||||
|
@ -722,6 +747,7 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const selectedKeys = ref([])
|
const selectedKeys = ref([])
|
||||||
|
const selectedKeys2 = ref([])
|
||||||
|
|
||||||
const handleChange = (nextTargetKeys, direction, moveKeys) => {
|
const handleChange = (nextTargetKeys, direction, moveKeys) => {
|
||||||
console.log('targetKeys: ', nextTargetKeys)
|
console.log('targetKeys: ', nextTargetKeys)
|
||||||
|
@ -731,21 +757,33 @@
|
||||||
targetKeys.value = moveKeys.filter((item, index) => index === 0)
|
targetKeys.value = moveKeys.filter((item, index) => index === 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const handleChange1 = (nextTargetKeys1, direction1, moveKeys1) => {
|
||||||
|
console.log('targetKeys: ', nextTargetKeys1)
|
||||||
|
console.log('direction: ', direction1)
|
||||||
|
console.log('moveKeys: ', moveKeys1)
|
||||||
|
}
|
||||||
|
|
||||||
const handleSelectChange = (sourceSelectedKeys, targetSelectedKeys) => {
|
const handleSelectChange = (sourceSelectedKeys, targetSelectedKeys) => {
|
||||||
console.log('targetSelectedKeys: ', targetSelectedKeys, sourceSelectedKeys)
|
console.log('targetSelectedKeys: ', targetSelectedKeys, sourceSelectedKeys)
|
||||||
// 左侧单选
|
|
||||||
// selectedKeys.value = [sourceSelectedKeys[sourceSelectedKeys.length - 1]]
|
|
||||||
console.log('after', sourceSelectedKeys)
|
console.log('after', sourceSelectedKeys)
|
||||||
}
|
}
|
||||||
|
const handleSelectChange1 = (sourceSelectedKeys1, targetSelectedKeys1) => {
|
||||||
|
console.log(
|
||||||
|
'targetSelectedKeys: ',
|
||||||
|
targetSelectedKeys1,
|
||||||
|
sourceSelectedKeys1
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
const handleOk = (e) => {
|
const handleOk = (e) => {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
visibleAssociatedApplication.value = false
|
visibleAssociatedApplication.value = false
|
||||||
// console.log('2222222222222', props.refData)
|
// console.log('2222222222222', props.refData)
|
||||||
data.value.list.map((item) => {
|
data.value.list.map((item) => {
|
||||||
if (item.name === '来源应用' || item.name === '关联组件信息') {
|
if (item.name === '来源应用') {
|
||||||
item.note1 = targetKeys.value + ''
|
item.note1 = targetKeys.value + ''
|
||||||
|
} else if (item.name === '关联组件信息') {
|
||||||
|
item.note1 = targetKeys2.value + ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue