9000系统测试用例调整

This commit is contained in:
sjl
2026-01-22 16:15:33 +08:00
parent 8b356c87a3
commit 56d65a6c17
59 changed files with 243 additions and 99 deletions

View File

@@ -288,18 +288,21 @@ const equipment = (row: any) => {}
// 承载能力评估
const assess = () => {
// vxeRef.value.getRadioRecord()
if (equipmentList.value.length == null) {
return ElMessage.warning('请选择用户')
if (equipmentList.value.length == 0) {
return ElMessage.warning('请选择有终端设备的用户')
}
loading.value = true
formRef.value.validate((valid: any) => {
if (valid) {
form.value.devList = equipmentList.value
carryCapacityEvaluate(form.value).then(res => {
rendering(res.data)
loading.value = false
})
}else{
loading.value = false
}
})
}

View File

@@ -734,6 +734,7 @@ const choose = (e: any) => {
uploadExcel(e.raw, form).then(res => {
ElMessage.success('导入成功')
onSubmit()
})
}
const tabChange = (e: any) => {