From e59f87e85266ed9023be9d7c630a5b05fd9a1e0c Mon Sep 17 00:00:00 2001 From: xiangxy Date: Fri, 8 Sep 2023 18:11:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E7=82=B9=E6=A3=80=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 28 +++- pages/device/CheckFill.vue | 126 +++++++++++++++++ pages/device/CheckWork.vue | 132 ++++++++++++++++++ pages/device/EquipCheckWork.vue | 101 -------------- pages/device/LubricateFill.vue | 126 +++++++++++++++++ pages/device/LubricateWork.vue | 132 ++++++++++++++++++ pages/device/MaintainFill.vue | 2 +- ...EquipMaintainWork.vue => MaintainWork.vue} | 0 8 files changed, 543 insertions(+), 104 deletions(-) create mode 100644 pages/device/CheckFill.vue create mode 100644 pages/device/CheckWork.vue delete mode 100644 pages/device/EquipCheckWork.vue create mode 100644 pages/device/LubricateFill.vue create mode 100644 pages/device/LubricateWork.vue rename pages/device/{EquipMaintainWork.vue => MaintainWork.vue} (100%) diff --git a/pages.json b/pages.json index e0381a1..9e940e1 100644 --- a/pages.json +++ b/pages.json @@ -51,13 +51,37 @@ } }, { - "path": "pages/device/EquipMaintainWork", + "path": "pages/device/MaintainWork", "style": { "navigationStyle": "custom" } }, { - "path": "pages/device/EquipCheckWork", + "path": "pages/device/MaintainFill", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/device/CheckWork", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/device/CheckFill", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/device/LubricateWork", + "style": { + "navigationStyle": "custom" + } + }, + { + "path": "pages/device/LubricateFill", "style": { "navigationStyle": "custom" } diff --git a/pages/device/CheckFill.vue b/pages/device/CheckFill.vue new file mode 100644 index 0000000..4b1393a --- /dev/null +++ b/pages/device/CheckFill.vue @@ -0,0 +1,126 @@ + + + + + diff --git a/pages/device/CheckWork.vue b/pages/device/CheckWork.vue new file mode 100644 index 0000000..16da882 --- /dev/null +++ b/pages/device/CheckWork.vue @@ -0,0 +1,132 @@ + + + + + diff --git a/pages/device/EquipCheckWork.vue b/pages/device/EquipCheckWork.vue deleted file mode 100644 index b6c2872..0000000 --- a/pages/device/EquipCheckWork.vue +++ /dev/null @@ -1,101 +0,0 @@ - - - - - diff --git a/pages/device/LubricateFill.vue b/pages/device/LubricateFill.vue new file mode 100644 index 0000000..0ec3254 --- /dev/null +++ b/pages/device/LubricateFill.vue @@ -0,0 +1,126 @@ + + + + + diff --git a/pages/device/LubricateWork.vue b/pages/device/LubricateWork.vue new file mode 100644 index 0000000..07f9086 --- /dev/null +++ b/pages/device/LubricateWork.vue @@ -0,0 +1,132 @@ + + + + + diff --git a/pages/device/MaintainFill.vue b/pages/device/MaintainFill.vue index 4c346f5..10ba0d7 100644 --- a/pages/device/MaintainFill.vue +++ b/pages/device/MaintainFill.vue @@ -115,7 +115,7 @@ }, goIn () { uni.redirectTo({ - url: '/pages/device/EquipMaintainWork' + url: '/pages/device/MaintainWork' }) } } diff --git a/pages/device/EquipMaintainWork.vue b/pages/device/MaintainWork.vue similarity index 100% rename from pages/device/EquipMaintainWork.vue rename to pages/device/MaintainWork.vue