|
|
@@ -66,6 +66,9 @@
|
|
|
<el-form-item prop="targetId" label="targetId">
|
|
|
<el-input v-model="formData.targetId"></el-input>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item prop="mapIndex" label="index">
|
|
|
+ <el-input v-model="formData.mapIndex"></el-input>
|
|
|
+ </el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
|
<el-button @click="onSave" :loading="$store.state.fetchingData" type="primary">保存</el-button>
|
|
|
@@ -118,7 +121,7 @@ export default {
|
|
|
|
|
|
if (res.data.length > 0) {
|
|
|
res.data.forEach(item => {
|
|
|
- this.vuforiaImageGroupIdOptions.push({ label: item.vuforiaName, value: item.id });
|
|
|
+ this.vuforiaImageGroupIdOptions.push({ label: item.vuforiaName, value: String(item.id) });
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
@@ -133,7 +136,7 @@ export default {
|
|
|
|
|
|
if (res.data.length > 0) {
|
|
|
res.data.forEach(item => {
|
|
|
- this.vuforiaImageTypeIdOptions.push({ label: item.typeName, value: item.id });
|
|
|
+ this.vuforiaImageTypeIdOptions.push({ label: item.typeName, value: String(item.id) });
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
@@ -148,7 +151,7 @@ export default {
|
|
|
|
|
|
if (res.data.length > 0) {
|
|
|
res.data.forEach(item => {
|
|
|
- this.landMarkIdOptions.push({ label: item.mapName, value: item.id });
|
|
|
+ this.landMarkIdOptions.push({ label: item.mapName, value: String(item.id) });
|
|
|
})
|
|
|
}
|
|
|
}
|