BUG修改
This commit is contained in:
parent
f837060104
commit
fbcd40f2a6
|
@ -103,7 +103,7 @@
|
|||
</a-select>
|
||||
</a-form-item>
|
||||
</div>
|
||||
<div class="base-info" v-if="flag">
|
||||
<div class="base-info" v-show="flag">
|
||||
<div style="margin-bottom: 24px">
|
||||
<a-form-item
|
||||
style="margin-bottom: 0"
|
||||
|
@ -811,10 +811,10 @@
|
|||
const handleBlur = () => {
|
||||
console.log('blur')
|
||||
}
|
||||
const arrId = []
|
||||
const handleFocus = () => {
|
||||
console.log('focus')
|
||||
let arrId = []
|
||||
for (var valueIndex of systemOptions2.value) {
|
||||
console.log('focus', systemOptions2.value, systemOptions.value)
|
||||
for (let valueIndex of systemOptions2.value) {
|
||||
if (arrId.indexOf(valueIndex['value']) == -1) {
|
||||
arrId.push(valueIndex['value'])
|
||||
systemOptions.value.push(valueIndex)
|
||||
|
|
Loading…
Reference in New Issue