fix(operator): fix operator edit issue
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m51s

This commit is contained in:
sexygoat
2026-04-10 14:00:21 +08:00
parent 9a6f085cde
commit 2b3119c549
53 changed files with 547 additions and 418 deletions

View File

@@ -144,7 +144,7 @@
}
} catch (error) {
console.error('加载流量详单失败:', error)
ElMessage.error('加载流量详单失败')
console.log('加载流量详单失败')
} finally {
loading.value = false
}

View File

@@ -194,7 +194,7 @@
}
} catch (error: any) {
console.error('加载往期订单失败:', error)
ElMessage.error(error?.message || '加载往期订单失败')
console.log(error?.message || '加载往期订单失败')
} finally {
loading.value = false
}

View File

@@ -141,7 +141,7 @@
}
} catch (error: any) {
console.error('加载套餐列表失败:', error)
ElMessage.error(error?.message || '加载套餐列表失败')
console.log(error?.message || '加载套餐列表失败')
} finally {
packageSearchLoading.value = false
}

View File

@@ -138,7 +138,7 @@
}
} catch (error) {
console.error('加载设备绑定卡列表失败:', error)
ElMessage.error('加载卡列表失败')
console.log('加载卡列表失败')
} finally {
loading.value = false
}

View File

@@ -1,5 +1,5 @@
<template>
<ElDialog v-model="visible" title="设置WiFi" width="500px">
<ElDialog v-model="visible" title="设置WiFi" width="500px" :append-to-body="true">
<ElForm ref="formRef" :model="form" :rules="rules" label-width="120px">
<ElFormItem label="WiFi状态" prop="enabled">
<ElRadioGroup v-model="form.enabled">