From 834b9ded87b5da5f5462ea4ea53a8245b37639e7 Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Sat, 18 Nov 2023 15:50:30 +0800 Subject: [PATCH 01/10] =?UTF-8?q?=E8=B5=84=E6=BA=90=E7=AE=A1=E7=90=861.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../purchase/approve/PurchaseRequestList.vue | 299 +++++++++++ .../approve/modules/PurchaseRequestForm.vue | 103 ++++ .../PurchaseRequestModal.Style#Drawer.vue | 84 +++ .../approve/modules/PurchaseRequestModal.vue | 60 +++ .../purchase/processing/orderProcessing.vue | 480 ++++++++++++++++++ .../purchase/progress/procurementProgress.vue | 184 +++++++ .../PurchaseOrderConfirmationList.vue | 137 +++++ .../purchase/request/PurchaseRequestList.vue | 290 +++++++++++ .../request/modules/PurchaseRequestForm.vue | 202 ++++++++ .../PurchaseRequestModal.Style#Drawer.vue | 84 +++ .../request/modules/PurchaseRequestModal.vue | 60 +++ .../rms/FurnitureList/RmsFurnitureList.vue | 288 +++++++++++ .../modules/RmsFurnitureForm.vue | 189 +++++++ .../RmsFurnitureModal.Style#Drawer.vue | 84 +++ .../modules/RmsFurnitureModal.vue | 60 +++ .../rms/InstrumentList/RmsInstrumentList.vue | 285 +++++++++++ .../modules/RmsInstrumentForm.vue | 184 +++++++ .../RmsInstrumentModal.Style#Drawer.vue | 84 +++ .../modules/RmsInstrumentModal.vue | 60 +++ .../rms/LocationList/RmsLocationList.vue | 177 +++++++ .../LocationList/modules/RmsLocationForm.vue | 109 ++++ .../modules/RmsLocationModal.Style#Drawer.vue | 84 +++ .../LocationList/modules/RmsLocationModal.vue | 60 +++ src/views/system/RmsInstrumentList.vue | 236 +++++++++ .../system/modules/RmsInstrumentForm.vue | 247 +++++++++ .../system/modules/RmsInstrumentModal.vue | 64 +++ 26 files changed, 4194 insertions(+) create mode 100644 src/views/purchase/approve/PurchaseRequestList.vue create mode 100644 src/views/purchase/approve/modules/PurchaseRequestForm.vue create mode 100644 src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue create mode 100644 src/views/purchase/approve/modules/PurchaseRequestModal.vue create mode 100644 src/views/purchase/processing/orderProcessing.vue create mode 100644 src/views/purchase/progress/procurementProgress.vue create mode 100644 src/views/purchase/receiving/PurchaseOrderConfirmationList.vue create mode 100644 src/views/purchase/request/PurchaseRequestList.vue create mode 100644 src/views/purchase/request/modules/PurchaseRequestForm.vue create mode 100644 src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue create mode 100644 src/views/purchase/request/modules/PurchaseRequestModal.vue create mode 100644 src/views/rms/FurnitureList/RmsFurnitureList.vue create mode 100644 src/views/rms/FurnitureList/modules/RmsFurnitureForm.vue create mode 100644 src/views/rms/FurnitureList/modules/RmsFurnitureModal.Style#Drawer.vue create mode 100644 src/views/rms/FurnitureList/modules/RmsFurnitureModal.vue create mode 100644 src/views/rms/InstrumentList/RmsInstrumentList.vue create mode 100644 src/views/rms/InstrumentList/modules/RmsInstrumentForm.vue create mode 100644 src/views/rms/InstrumentList/modules/RmsInstrumentModal.Style#Drawer.vue create mode 100644 src/views/rms/InstrumentList/modules/RmsInstrumentModal.vue create mode 100644 src/views/rms/LocationList/RmsLocationList.vue create mode 100644 src/views/rms/LocationList/modules/RmsLocationForm.vue create mode 100644 src/views/rms/LocationList/modules/RmsLocationModal.Style#Drawer.vue create mode 100644 src/views/rms/LocationList/modules/RmsLocationModal.vue create mode 100644 src/views/system/RmsInstrumentList.vue create mode 100644 src/views/system/modules/RmsInstrumentForm.vue create mode 100644 src/views/system/modules/RmsInstrumentModal.vue diff --git a/src/views/purchase/approve/PurchaseRequestList.vue b/src/views/purchase/approve/PurchaseRequestList.vue new file mode 100644 index 0000000..7e98bd5 --- /dev/null +++ b/src/views/purchase/approve/PurchaseRequestList.vue @@ -0,0 +1,299 @@ + + + + \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestForm.vue b/src/views/purchase/approve/modules/PurchaseRequestForm.vue new file mode 100644 index 0000000..ff679ac --- /dev/null +++ b/src/views/purchase/approve/modules/PurchaseRequestForm.vue @@ -0,0 +1,103 @@ + + + \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue b/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue new file mode 100644 index 0000000..d675580 --- /dev/null +++ b/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestModal.vue b/src/views/purchase/approve/modules/PurchaseRequestModal.vue new file mode 100644 index 0000000..3382eca --- /dev/null +++ b/src/views/purchase/approve/modules/PurchaseRequestModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/purchase/processing/orderProcessing.vue b/src/views/purchase/processing/orderProcessing.vue new file mode 100644 index 0000000..b03ccbd --- /dev/null +++ b/src/views/purchase/processing/orderProcessing.vue @@ -0,0 +1,480 @@ + + + + + + diff --git a/src/views/purchase/progress/procurementProgress.vue b/src/views/purchase/progress/procurementProgress.vue new file mode 100644 index 0000000..10c1c3f --- /dev/null +++ b/src/views/purchase/progress/procurementProgress.vue @@ -0,0 +1,184 @@ + + + \ No newline at end of file diff --git a/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue b/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue new file mode 100644 index 0000000..3c471ce --- /dev/null +++ b/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue @@ -0,0 +1,137 @@ + + + \ No newline at end of file diff --git a/src/views/purchase/request/PurchaseRequestList.vue b/src/views/purchase/request/PurchaseRequestList.vue new file mode 100644 index 0000000..fc646c3 --- /dev/null +++ b/src/views/purchase/request/PurchaseRequestList.vue @@ -0,0 +1,290 @@ + + + + \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestForm.vue b/src/views/purchase/request/modules/PurchaseRequestForm.vue new file mode 100644 index 0000000..382d2c0 --- /dev/null +++ b/src/views/purchase/request/modules/PurchaseRequestForm.vue @@ -0,0 +1,202 @@ + + + \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue b/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue new file mode 100644 index 0000000..d675580 --- /dev/null +++ b/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestModal.vue b/src/views/purchase/request/modules/PurchaseRequestModal.vue new file mode 100644 index 0000000..3382eca --- /dev/null +++ b/src/views/purchase/request/modules/PurchaseRequestModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/rms/FurnitureList/RmsFurnitureList.vue b/src/views/rms/FurnitureList/RmsFurnitureList.vue new file mode 100644 index 0000000..5f20d6b --- /dev/null +++ b/src/views/rms/FurnitureList/RmsFurnitureList.vue @@ -0,0 +1,288 @@ + + + + \ No newline at end of file diff --git a/src/views/rms/FurnitureList/modules/RmsFurnitureForm.vue b/src/views/rms/FurnitureList/modules/RmsFurnitureForm.vue new file mode 100644 index 0000000..2f38862 --- /dev/null +++ b/src/views/rms/FurnitureList/modules/RmsFurnitureForm.vue @@ -0,0 +1,189 @@ + + + \ No newline at end of file diff --git a/src/views/rms/FurnitureList/modules/RmsFurnitureModal.Style#Drawer.vue b/src/views/rms/FurnitureList/modules/RmsFurnitureModal.Style#Drawer.vue new file mode 100644 index 0000000..3d115d9 --- /dev/null +++ b/src/views/rms/FurnitureList/modules/RmsFurnitureModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/rms/FurnitureList/modules/RmsFurnitureModal.vue b/src/views/rms/FurnitureList/modules/RmsFurnitureModal.vue new file mode 100644 index 0000000..e09567a --- /dev/null +++ b/src/views/rms/FurnitureList/modules/RmsFurnitureModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/rms/InstrumentList/RmsInstrumentList.vue b/src/views/rms/InstrumentList/RmsInstrumentList.vue new file mode 100644 index 0000000..accfacc --- /dev/null +++ b/src/views/rms/InstrumentList/RmsInstrumentList.vue @@ -0,0 +1,285 @@ + + + + \ No newline at end of file diff --git a/src/views/rms/InstrumentList/modules/RmsInstrumentForm.vue b/src/views/rms/InstrumentList/modules/RmsInstrumentForm.vue new file mode 100644 index 0000000..831855c --- /dev/null +++ b/src/views/rms/InstrumentList/modules/RmsInstrumentForm.vue @@ -0,0 +1,184 @@ + + + \ No newline at end of file diff --git a/src/views/rms/InstrumentList/modules/RmsInstrumentModal.Style#Drawer.vue b/src/views/rms/InstrumentList/modules/RmsInstrumentModal.Style#Drawer.vue new file mode 100644 index 0000000..0c4f142 --- /dev/null +++ b/src/views/rms/InstrumentList/modules/RmsInstrumentModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/rms/InstrumentList/modules/RmsInstrumentModal.vue b/src/views/rms/InstrumentList/modules/RmsInstrumentModal.vue new file mode 100644 index 0000000..249fa0d --- /dev/null +++ b/src/views/rms/InstrumentList/modules/RmsInstrumentModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/rms/LocationList/RmsLocationList.vue b/src/views/rms/LocationList/RmsLocationList.vue new file mode 100644 index 0000000..7bb7ce3 --- /dev/null +++ b/src/views/rms/LocationList/RmsLocationList.vue @@ -0,0 +1,177 @@ + + + + \ No newline at end of file diff --git a/src/views/rms/LocationList/modules/RmsLocationForm.vue b/src/views/rms/LocationList/modules/RmsLocationForm.vue new file mode 100644 index 0000000..1be9d14 --- /dev/null +++ b/src/views/rms/LocationList/modules/RmsLocationForm.vue @@ -0,0 +1,109 @@ + + + \ No newline at end of file diff --git a/src/views/rms/LocationList/modules/RmsLocationModal.Style#Drawer.vue b/src/views/rms/LocationList/modules/RmsLocationModal.Style#Drawer.vue new file mode 100644 index 0000000..4c75d90 --- /dev/null +++ b/src/views/rms/LocationList/modules/RmsLocationModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/rms/LocationList/modules/RmsLocationModal.vue b/src/views/rms/LocationList/modules/RmsLocationModal.vue new file mode 100644 index 0000000..f29ef5d --- /dev/null +++ b/src/views/rms/LocationList/modules/RmsLocationModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/src/views/system/RmsInstrumentList.vue b/src/views/system/RmsInstrumentList.vue new file mode 100644 index 0000000..9fe20a6 --- /dev/null +++ b/src/views/system/RmsInstrumentList.vue @@ -0,0 +1,236 @@ + + + + \ No newline at end of file diff --git a/src/views/system/modules/RmsInstrumentForm.vue b/src/views/system/modules/RmsInstrumentForm.vue new file mode 100644 index 0000000..1b15b78 --- /dev/null +++ b/src/views/system/modules/RmsInstrumentForm.vue @@ -0,0 +1,247 @@ + + + + + \ No newline at end of file diff --git a/src/views/system/modules/RmsInstrumentModal.vue b/src/views/system/modules/RmsInstrumentModal.vue new file mode 100644 index 0000000..e7c7732 --- /dev/null +++ b/src/views/system/modules/RmsInstrumentModal.vue @@ -0,0 +1,64 @@ + + + + + \ No newline at end of file From f766f98670ba6534248401d2386b2be85da5dd8b Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Sat, 18 Nov 2023 18:40:23 +0800 Subject: [PATCH 02/10] =?UTF-8?q?=E8=B5=84=E6=BA=90=E7=AE=A1=E7=90=861.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- public/index.html | 4 +- src/components/layouts/TabLayout.vue | 2 +- src/components/layouts/UserLayout.vue | 2 +- src/components/page/GlobalHeader.vue | 2 +- src/components/tools/Logo.vue | 5 +- src/views/dashboard/Analysis.vue | 14 +- src/views/dashboard/IndexBdc.vue | 171 +----------- src/views/dashboard/IndexChart.vue | 133 +--------- src/views/dashboard/IndexTask.vue | 134 ---------- .../rms/FurnitureList/RmsFurnitureList.vue | 77 +++--- .../modules/RmsFurnitureForm.vue | 36 +-- .../rms/InstrumentList/RmsInstrumentList.vue | 80 +++--- .../modules/RmsInstrumentForm.vue | 34 +-- .../rms/LocationList/RmsLocationList.vue | 6 + .../LocationList/modules/RmsLocationForm.vue | 5 + src/views/system/RmsInstrumentList.vue | 236 ----------------- .../system/modules/RmsInstrumentForm.vue | 247 ------------------ .../system/modules/RmsInstrumentModal.vue | 64 ----- src/views/user/oauth2/OAuth2Login.vue | 2 +- 20 files changed, 157 insertions(+), 1099 deletions(-) delete mode 100644 src/views/system/RmsInstrumentList.vue delete mode 100644 src/views/system/modules/RmsInstrumentForm.vue delete mode 100644 src/views/system/modules/RmsInstrumentModal.vue diff --git a/.env.development b/.env.development index 4f94849..6635393 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ NODE_ENV=development -VUE_APP_API_BASE_URL=http://localhost:8888/jeecg-boot +VUE_APP_API_BASE_URL=http://localhost:8088/jeecg-boot VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview diff --git a/public/index.html b/public/index.html index 0dc3db7..7802177 100644 --- a/public/index.html +++ b/public/index.html @@ -5,7 +5,7 @@ - 计科院ERP系统 + 计算机学院资源管理系统 \ No newline at end of file diff --git a/src/views/system/modules/RmsInstrumentForm.vue b/src/views/system/modules/RmsInstrumentForm.vue deleted file mode 100644 index 1b15b78..0000000 --- a/src/views/system/modules/RmsInstrumentForm.vue +++ /dev/null @@ -1,247 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/system/modules/RmsInstrumentModal.vue b/src/views/system/modules/RmsInstrumentModal.vue deleted file mode 100644 index e7c7732..0000000 --- a/src/views/system/modules/RmsInstrumentModal.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/user/oauth2/OAuth2Login.vue b/src/views/user/oauth2/OAuth2Login.vue index 08b01bd..d8243e9 100644 --- a/src/views/user/oauth2/OAuth2Login.vue +++ b/src/views/user/oauth2/OAuth2Login.vue @@ -4,7 +4,7 @@
-
正在登录 计科院ERP系统,请耐心等待
+
正在登录 计算机学院资源管理系统,请耐心等待
From e7e4c43630d679fb2686db5f72531dbc00f7de9e Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Sat, 18 Nov 2023 18:42:42 +0800 Subject: [PATCH 03/10] =?UTF-8?q?=E8=B5=84=E6=BA=90=E7=AE=A1=E7=90=861.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../purchase/approve/PurchaseRequestList.vue | 299 ----------- .../approve/modules/PurchaseRequestForm.vue | 103 ---- .../PurchaseRequestModal.Style#Drawer.vue | 84 --- .../approve/modules/PurchaseRequestModal.vue | 60 --- .../purchase/processing/orderProcessing.vue | 480 ------------------ .../purchase/progress/procurementProgress.vue | 184 ------- .../PurchaseOrderConfirmationList.vue | 137 ----- .../purchase/request/PurchaseRequestList.vue | 290 ----------- .../request/modules/PurchaseRequestForm.vue | 202 -------- .../PurchaseRequestModal.Style#Drawer.vue | 84 --- .../request/modules/PurchaseRequestModal.vue | 60 --- 11 files changed, 1983 deletions(-) delete mode 100644 src/views/purchase/approve/PurchaseRequestList.vue delete mode 100644 src/views/purchase/approve/modules/PurchaseRequestForm.vue delete mode 100644 src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue delete mode 100644 src/views/purchase/approve/modules/PurchaseRequestModal.vue delete mode 100644 src/views/purchase/processing/orderProcessing.vue delete mode 100644 src/views/purchase/progress/procurementProgress.vue delete mode 100644 src/views/purchase/receiving/PurchaseOrderConfirmationList.vue delete mode 100644 src/views/purchase/request/PurchaseRequestList.vue delete mode 100644 src/views/purchase/request/modules/PurchaseRequestForm.vue delete mode 100644 src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue delete mode 100644 src/views/purchase/request/modules/PurchaseRequestModal.vue diff --git a/src/views/purchase/approve/PurchaseRequestList.vue b/src/views/purchase/approve/PurchaseRequestList.vue deleted file mode 100644 index 7e98bd5..0000000 --- a/src/views/purchase/approve/PurchaseRequestList.vue +++ /dev/null @@ -1,299 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestForm.vue b/src/views/purchase/approve/modules/PurchaseRequestForm.vue deleted file mode 100644 index ff679ac..0000000 --- a/src/views/purchase/approve/modules/PurchaseRequestForm.vue +++ /dev/null @@ -1,103 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue b/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue deleted file mode 100644 index d675580..0000000 --- a/src/views/purchase/approve/modules/PurchaseRequestModal.Style#Drawer.vue +++ /dev/null @@ -1,84 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/purchase/approve/modules/PurchaseRequestModal.vue b/src/views/purchase/approve/modules/PurchaseRequestModal.vue deleted file mode 100644 index 3382eca..0000000 --- a/src/views/purchase/approve/modules/PurchaseRequestModal.vue +++ /dev/null @@ -1,60 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/purchase/processing/orderProcessing.vue b/src/views/purchase/processing/orderProcessing.vue deleted file mode 100644 index b03ccbd..0000000 --- a/src/views/purchase/processing/orderProcessing.vue +++ /dev/null @@ -1,480 +0,0 @@ - - - - - - diff --git a/src/views/purchase/progress/procurementProgress.vue b/src/views/purchase/progress/procurementProgress.vue deleted file mode 100644 index 10c1c3f..0000000 --- a/src/views/purchase/progress/procurementProgress.vue +++ /dev/null @@ -1,184 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue b/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue deleted file mode 100644 index 3c471ce..0000000 --- a/src/views/purchase/receiving/PurchaseOrderConfirmationList.vue +++ /dev/null @@ -1,137 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/purchase/request/PurchaseRequestList.vue b/src/views/purchase/request/PurchaseRequestList.vue deleted file mode 100644 index fc646c3..0000000 --- a/src/views/purchase/request/PurchaseRequestList.vue +++ /dev/null @@ -1,290 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestForm.vue b/src/views/purchase/request/modules/PurchaseRequestForm.vue deleted file mode 100644 index 382d2c0..0000000 --- a/src/views/purchase/request/modules/PurchaseRequestForm.vue +++ /dev/null @@ -1,202 +0,0 @@ - - - \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue b/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue deleted file mode 100644 index d675580..0000000 --- a/src/views/purchase/request/modules/PurchaseRequestModal.Style#Drawer.vue +++ /dev/null @@ -1,84 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/views/purchase/request/modules/PurchaseRequestModal.vue b/src/views/purchase/request/modules/PurchaseRequestModal.vue deleted file mode 100644 index 3382eca..0000000 --- a/src/views/purchase/request/modules/PurchaseRequestModal.vue +++ /dev/null @@ -1,60 +0,0 @@ - - - \ No newline at end of file From 34f34f529242a7934cd758c74dbd7a32d45316be Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Sun, 19 Nov 2023 01:19:45 +0800 Subject: [PATCH 04/10] =?UTF-8?q?=E8=B5=84=E6=BA=90=E7=AE=A1=E7=90=861.0(?= =?UTF-8?q?=E6=A0=91=E7=BB=93=E6=9E=84=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 41 +-- src/main.js | 3 + src/views/dashboard/Analysis.vue | 14 +- src/views/dashboard/IndexBdc.vue | 171 ++++++++++- src/views/dashboard/IndexChart.vue | 283 ++++++++++-------- src/views/dashboard/IndexTask.vue | 134 +++++++++ .../rms/LocationList/RmsLocationList.vue | 277 +++++++---------- .../LocationList/modules/RmsLocationForm.vue | 190 ++++++------ yarn.lock | 20 ++ 9 files changed, 739 insertions(+), 394 deletions(-) diff --git a/package.json b/package.json index 8f214c7..c6f0f27 100644 --- a/package.json +++ b/package.json @@ -10,42 +10,43 @@ "lint": "vue-cli-service lint" }, "dependencies": { - "@jeecg/antd-online-mini": "3.4.3-beta2", - "ant-design-vue": "^1.7.2", "@antv/data-set": "^0.11.4", - "viser-vue": "^2.4.8", + "@jeecg/antd-online-mini": "3.4.3-beta2", + "@tinymce/tinymce-vue": "2.1.0", + "@toast-ui/editor": "^2.1.2", + "ant-design-vue": "^1.7.2", "axios": "^0.18.0", + "china-area-data": "^5.0.1", + "clipboard": "^2.0.4", + "codemirror": "^5.46.0", + "cron-parser": "^2.10.0", "dayjs": "^1.8.0", + "dom-align": "1.12.0", + "echarts": "^5.4.3", "enquire.js": "^2.1.6", "js-cookie": "^2.2.0", "lodash.get": "^4.4.2", "lodash.pick": "^4.4.0", "md5": "^2.2.1", "nprogress": "^0.2.0", + "qiankun": "^2.5.1", + "tinymce": "5.4.1", + "viser-vue": "^2.4.8", "vue": "^2.6.10", + "vue-area-linkage": "^5.1.0", "vue-cropper": "^0.5.4", "vue-i18n": "^8.7.0", "vue-loader": "^15.7.0", "vue-ls": "^3.2.0", - "vue-router": "^3.0.1", - "vuex": "^3.1.0", - "vue-print-nb-jeecg": "^1.0.12", - "clipboard": "^2.0.4", "vue-photo-preview": "^1.1.3", + "vue-print-nb-jeecg": "^1.0.12", + "vue-router": "^3.0.1", "vue-splitpane": "^1.0.4", "vuedraggable": "^2.20.0", - "codemirror": "^5.46.0", - "@tinymce/tinymce-vue": "2.1.0", - "tinymce": "5.4.1", - "@toast-ui/editor": "^2.1.2", - "vue-area-linkage": "^5.1.0", - "china-area-data": "^5.0.1", - "dom-align": "1.12.0", - "xe-utils": "2.4.8", + "vuex": "^3.1.0", "vxe-table": "2.9.13", "vxe-table-plugin-antd": "1.8.10", - "cron-parser": "^2.10.0", - "qiankun": "^2.5.1", + "xe-utils": "2.4.8", "xss": "^1.0.13" }, "devDependencies": { @@ -55,13 +56,13 @@ "@vue/cli-service": "^3.3.0", "@vue/eslint-config-standard": "^4.0.0", "babel-eslint": "7.2.3", + "compression-webpack-plugin": "^3.1.0", "eslint": "^5.16.0", "eslint-plugin-vue": "^5.1.0", + "html-webpack-plugin": "^4.2.0", "less": "^3.9.0", "less-loader": "^4.1.0", - "vue-template-compiler": "^2.6.10", - "html-webpack-plugin": "^4.2.0", - "compression-webpack-plugin": "^3.1.0" + "vue-template-compiler": "^2.6.10" }, "eslintConfig": { "root": true, diff --git a/src/main.js b/src/main.js index 0809df2..b6ac2f8 100644 --- a/src/main.js +++ b/src/main.js @@ -8,6 +8,9 @@ import router from './router' import store from './store/' import { VueAxios } from "@/utils/request" +import * as echarts from 'echarts' +Vue.prototype.$echarts = echarts + require('@jeecg/antd-online-mini') require('@jeecg/antd-online-mini/dist/OnlineForm.css') diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue index 67a7213..2e16b22 100644 --- a/src/views/dashboard/Analysis.vue +++ b/src/views/dashboard/Analysis.vue @@ -1,10 +1,20 @@ - \ No newline at end of file diff --git a/src/views/dashboard/IndexTask.vue b/src/views/dashboard/IndexTask.vue index 5677038..8e9d84b 100644 --- a/src/views/dashboard/IndexTask.vue +++ b/src/views/dashboard/IndexTask.vue @@ -1,5 +1,139 @@ diff --git a/src/views/rms/LocationList/RmsLocationList.vue b/src/views/rms/LocationList/RmsLocationList.vue index 20c64e4..f96d1c6 100644 --- a/src/views/rms/LocationList/RmsLocationList.vue +++ b/src/views/rms/LocationList/RmsLocationList.vue @@ -1,92 +1,36 @@ diff --git a/src/views/rms/InstrumentList/RmsInstrumentList.vue b/src/views/rms/InstrumentList/RmsInstrumentList.vue index b13b6f3..7420186 100644 --- a/src/views/rms/InstrumentList/RmsInstrumentList.vue +++ b/src/views/rms/InstrumentList/RmsInstrumentList.vue @@ -2,17 +2,16 @@ - +
- - - - + + @@ -23,8 +22,6 @@
- -
新增 @@ -33,9 +30,6 @@ @change="handleImportExcel"> 导入 - - 删除 @@ -43,7 +37,6 @@ 批量操作
-
@@ -57,21 +50,6 @@ :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }" class="j-table-force-nowrap" @change="handleTableChange"> - - - - 编辑 @@ -85,7 +63,6 @@
- @@ -93,12 +70,11 @@ diff --git a/src/views/rms/IntangibleList/RmsIntangibleList.vue b/src/views/rms/IntangibleList/RmsIntangibleList.vue new file mode 100644 index 0000000..b2939ea --- /dev/null +++ b/src/views/rms/IntangibleList/RmsIntangibleList.vue @@ -0,0 +1,327 @@ + + + + \ No newline at end of file diff --git a/src/views/rms/IntangibleList/modules/RmsIntangibleForm.vue b/src/views/rms/IntangibleList/modules/RmsIntangibleForm.vue new file mode 100644 index 0000000..c2cfe7f --- /dev/null +++ b/src/views/rms/IntangibleList/modules/RmsIntangibleForm.vue @@ -0,0 +1,268 @@ + + + \ No newline at end of file diff --git a/src/views/rms/IntangibleList/modules/RmsIntangibleModal.Style#Drawer.vue b/src/views/rms/IntangibleList/modules/RmsIntangibleModal.Style#Drawer.vue new file mode 100644 index 0000000..e098971 --- /dev/null +++ b/src/views/rms/IntangibleList/modules/RmsIntangibleModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/src/views/rms/IntangibleList/modules/RmsIntangibleModal.vue b/src/views/rms/IntangibleList/modules/RmsIntangibleModal.vue new file mode 100644 index 0000000..60f8ee5 --- /dev/null +++ b/src/views/rms/IntangibleList/modules/RmsIntangibleModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file From 5de4da51ffbd763c97263b5eab98d2879a2a12da Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Sun, 26 Nov 2023 16:37:29 +0800 Subject: [PATCH 09/10] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/IndexChart.vue | 71 +++++++++++-------- .../rms/IntangibleList/RmsIntangibleList.vue | 22 ++---- 2 files changed, 50 insertions(+), 43 deletions(-) diff --git a/src/views/dashboard/IndexChart.vue b/src/views/dashboard/IndexChart.vue index 80dca1f..75618eb 100644 --- a/src/views/dashboard/IndexChart.vue +++ b/src/views/dashboard/IndexChart.vue @@ -1,36 +1,25 @@