Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions ui/src/views/image/RegisterOrUploadTemplate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
</a-form-item>
</a-col>
<a-col :md="24" :lg="12" v-if="hyperVMWShow && !deployasis">
<a-form-item :label="$t('label.nicadaptertype')" name="nicadaptertype" ref="nicadaptertype">
<a-form-item ref="nicAdapterType" name="nicAdapterType" :label="$t('label.nicadaptertype')">
<a-select
v-model:value="form.nicAdapterType"
showSearch
Expand Down Expand Up @@ -701,30 +701,30 @@ export default {

this.rootDisk.opts = controller
},
fetchNicAdapterType () {
const nicAdapterType = []
nicAdapterType.push({
fetchNicAdapterTypes () {
const nicAdapterTypes = []
nicAdapterTypes.push({
id: '',
description: ''
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'E1000',
description: 'E1000'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'PCNet32',
description: 'PCNet32'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'Vmxnet2',
description: 'Vmxnet2'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'Vmxnet3',
description: 'Vmxnet3'
})

this.nicAdapterType.opts = nicAdapterType
this.nicAdapterType.opts = nicAdapterTypes
},
fetchKeyboardType () {
const keyboardType = []
Expand Down Expand Up @@ -882,7 +882,7 @@ export default {
this.resetSelect(arrSelectReset)
this.fetchFormat(hyperVisor)
this.fetchRootDisk(hyperVisor)
this.fetchNicAdapterType()
this.fetchNicAdapterTypes()
this.fetchKeyboardType()

this.form.rootDiskControllerType = this.rootDisk.opts.length > 0 ? 'osdefault' : ''
Expand All @@ -897,10 +897,10 @@ export default {
delete this.form.zoneids
}
const formRaw = toRaw(this.form)
const values = this.handleRemoveFields(formRaw)
const formvalues = this.handleRemoveFields(formRaw)
let params = {}
for (const key in values) {
const input = values[key]
for (const key in formvalues) {
const input = formvalues[key]

if (input === undefined) {
continue
Expand Down