diff --git a/src/@validators/index.ts b/src/@validators/index.ts
index 9c476b04..4622579a 100644
--- a/src/@validators/index.ts
+++ b/src/@validators/index.ts
@@ -2,3 +2,6 @@ import { ValidationRule } from 'vuetify/types/services/validation'
// 必输校验
export const requiredValidator: ValidationRule = (value: any) => !!value || '此项为必填项'
+
+// 数字校验
+export const numberValidator: ValidationRule = (value: any) => !isNaN(value) || '请输入数字'
diff --git a/src/components/cards/SiteCard.vue b/src/components/cards/SiteCard.vue
index 52e698c2..3ec503bb 100644
--- a/src/components/cards/SiteCard.vue
+++ b/src/components/cards/SiteCard.vue
@@ -1,5 +1,5 @@
@@ -222,4 +262,53 @@ const dropdownItems = ref([
color="success"
/>
+
+
+
+
+
+ {}">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+
+ 确定
+
+
+