修改地图没有经纬度报错问题
This commit is contained in:
@@ -542,6 +542,7 @@
|
||||
? pageStatus == 3 || pageStatus == 2
|
||||
: pageStatus == 1
|
||||
"
|
||||
@change="item.processNum = ''"
|
||||
>
|
||||
<el-option
|
||||
v-for="option in affiliatiedFrontArr"
|
||||
@@ -551,6 +552,34 @@
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
class="form-item"
|
||||
label="进程号:"
|
||||
:prop="'deviceParam.' + index + '.processNum'"
|
||||
:rules="[
|
||||
{ required: true, message: '请选择进程号', trigger: 'change' }
|
||||
]"
|
||||
>
|
||||
<el-select
|
||||
filterable
|
||||
v-model="item.processNum"
|
||||
placeholder="请选择进程号"
|
||||
:disabled="
|
||||
nodeLevel > 500 && (pageStatus == 3 || pageStatus == 2)
|
||||
? pageStatus == 3 || pageStatus == 2
|
||||
: pageStatus == 1
|
||||
"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in affiliatiedFrontArr.find(
|
||||
k => k.id == item.nodeId
|
||||
).maxProcessNum"
|
||||
:key="item"
|
||||
:label="item"
|
||||
:value="item"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
class="form-item"
|
||||
label="召唤标志:"
|
||||
@@ -1903,6 +1932,8 @@ const deviceBODetail: any = ref({
|
||||
zhan: '',
|
||||
/**所属前置机 */
|
||||
nodeId: '',
|
||||
// 进程号
|
||||
processNum: '',
|
||||
/**终端模型 */
|
||||
devModel: 1,
|
||||
/**本次定检时间 */
|
||||
@@ -2514,7 +2545,7 @@ const queryNodeContent = () => {
|
||||
return
|
||||
}
|
||||
|
||||
if (nodeData.value.level>= 400) {
|
||||
if (nodeData.value.level >= 400) {
|
||||
setDown()
|
||||
}
|
||||
let data = {
|
||||
@@ -2974,11 +3005,10 @@ onMounted(() => {
|
||||
size.value = Math.round((180 / dom.offsetHeight) * 100)
|
||||
}
|
||||
if (VITE_FLAG) {
|
||||
|
||||
getYwZtSubstation({ orgId: '' }).then(res => {
|
||||
powerStationList.value = res.data
|
||||
})
|
||||
}else{
|
||||
} else {
|
||||
getDevTypeList().then(res => {
|
||||
typeArr.value = res.data
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user