diff --git a/src/assets/images/login/loginbg.png b/src/assets/images/login/loginbg.png new file mode 100644 index 0000000..82e7187 Binary files /dev/null and b/src/assets/images/login/loginbg.png differ diff --git a/src/assets/images/login/logo.png b/src/assets/images/login/logo.png new file mode 100644 index 0000000..56ba09a Binary files /dev/null and b/src/assets/images/login/logo.png differ diff --git a/src/assets/images/login/midbg.png b/src/assets/images/login/midbg.png new file mode 100644 index 0000000..8bf005f Binary files /dev/null and b/src/assets/images/login/midbg.png differ diff --git a/src/assets/images/public/loginbg.jpg b/src/assets/images/public/loginbg.jpg deleted file mode 100644 index 10605f4..0000000 Binary files a/src/assets/images/public/loginbg.jpg and /dev/null differ diff --git a/src/components/qr_code/index.vue b/src/components/qr_code/index.vue index 23a77f1..af59a10 100644 --- a/src/components/qr_code/index.vue +++ b/src/components/qr_code/index.vue @@ -1,6 +1,6 @@ @@ -16,10 +16,22 @@ const props = defineProps({ required: true, default: "", }, + width: { + type: Number, + default: 200, + }, + height: { + type: Number, + default: 200, + }, + margin: { + type: Boolean, + default: true, + }, }); const src = useQRCode(() => props.src, { - width: 200, - height: 200, + width: props.width, + height: props.height, margin: 1, correctLevel: "H", }); diff --git a/src/views/index/components/announcement.vue b/src/views/index/components/announcement.vue deleted file mode 100644 index b22e387..0000000 --- a/src/views/index/components/announcement.vue +++ /dev/null @@ -1,104 +0,0 @@ - - - - - diff --git a/src/views/index/components/calendar.vue b/src/views/index/components/calendar.vue deleted file mode 100644 index d55042d..0000000 --- a/src/views/index/components/calendar.vue +++ /dev/null @@ -1,159 +0,0 @@ - - - - - diff --git a/src/views/index/components/checklist_check.vue b/src/views/index/components/checklist_check.vue deleted file mode 100644 index e02390c..0000000 --- a/src/views/index/components/checklist_check.vue +++ /dev/null @@ -1,133 +0,0 @@ - - - - - diff --git a/src/views/index/components/info.vue b/src/views/index/components/info.vue index f7f7878..93ec883 100644 --- a/src/views/index/components/info.vue +++ b/src/views/index/components/info.vue @@ -3,7 +3,7 @@
- +
diff --git a/src/views/index/components/risk_classification.vue b/src/views/index/components/risk_classification.vue deleted file mode 100644 index 89e49d4..0000000 --- a/src/views/index/components/risk_classification.vue +++ /dev/null @@ -1,118 +0,0 @@ - - - - - diff --git a/src/views/index/index.vue b/src/views/index/index.vue index 6a913dd..3281f42 100644 --- a/src/views/index/index.vue +++ b/src/views/index/index.vue @@ -41,11 +41,6 @@ import doublePrevention from "./components/doublePrevention.vue"; import info from "./components/info.vue"; import statistics from "./components/statistics.vue"; import waybill from "./components/waybill.vue"; - -// import RiskClassification from "./components/risk_classification.vue"; -// import ChecklistCheck from "./components/checklist_check.vue"; -// import Announcement from "./components/announcement.vue"; -// import Calendar from "./components/calendar.vue";