wxd 3 months ago
parent
commit
112fe8ebfd
2 changed files with 57 additions and 0 deletions
  1. 36 0
      pages.json
  2. 21 0
      pages/Ledger/records.vue

+ 36 - 0
pages.json

@@ -162,6 +162,24 @@
         "navigationBarTitleText": "备案申请"
       }
     },
+    {
+      "path": "pages/assay/equipmentDetails",
+      "style": {
+        "navigationBarTitleText": "计量器具信息"
+      }
+    },
+    {
+      "path": "pages/assay/detailsList",
+      "style": {
+        "navigationBarTitleText": "拟备案计量器具列表"
+      }
+    },
+    {
+      "path": "pages/assay/assayList",
+      "style": {
+        "navigationBarTitleText": "选择拟备案计量器具"
+      }
+    },
     {
       "path": "pages/companiesRegistered/index",
       "style": {
@@ -191,6 +209,24 @@
       "style": {
         "navigationBarTitleText": "绑定用户"
       }
+    },
+    {
+      "path": "pages/assay/deptList",
+      "style": {
+        "navigationBarTitleText": "备案新增",
+        "enablePullDownRefresh": false,
+        "app-plus": {
+          "titleNView": {
+            "buttons": [
+              {
+                "fontSize": "16px",
+                "text": "新增",
+                "color": "#3c9cff"
+              }
+            ]
+          }
+        }
+      }
     }
   ],
   "tabBar": {

+ 21 - 0
pages/Ledger/records.vue

@@ -0,0 +1,21 @@
+<!-- @format -->
+
+<template>
+  <view class="container">
+    <view></view>
+  </view>
+</template>
+<script>
+export default {
+  data() {
+    return {};
+  },
+};
+</script>
+<style lang="scss">
+.container {
+  height: 100vh;
+  background: rgb(248, 249, 250);
+  padding: 30rpx;
+}
+</style>