From 43942a545271345ce26e40d82bb97138c5ea7611 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期五, 28 六月 2024 13:54:51 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 pda/pages/index/index.vue |  108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 108 insertions(+), 0 deletions(-)

diff --git a/pda/pages/index/index.vue b/pda/pages/index/index.vue
new file mode 100644
index 0000000..3d00c04
--- /dev/null
+++ b/pda/pages/index/index.vue
@@ -0,0 +1,108 @@
+<template>
+  <view class="main_app">
+    <view class="banner">
+      <image src="@/static/banner_diaodu@2x.png" mode=""></image>
+    </view>
+    <view class="module">
+      <view class="item" @click="jump('/pages/index/center')">
+        <image src="@/static/ic_yuetaidiaodu@2x.png" mode=""></image>
+        <view class="text">鏈堝彴璋冨害涓績</view>
+      </view>
+      <view class="item" @click="jump('/pages/index/queueup')">
+        <image src="@/static/ic_cheliangpaidui@2x.png" mode=""></image>
+        <view class="text">杞﹂槦鎺掗槦鎯呭喌</view>
+      </view>
+      <view class="item" @click="jump('/pages/index/control')">
+        <image src="@/static/ic_qiyong@2x.png" mode=""></image>
+        <view class="text">鏈堝彴鍚敤鍋滅敤</view>
+      </view>
+      <view class="item" @click="jump('/pages/index/set')">
+        <image src="@/static/ic_peizhiyuetai@2x.png" mode=""></image>
+        <view class="text">閰嶇疆鏄剧ず鏈堝彴</view>
+      </view>
+    </view>
+    <!-- footer -->
+    <view class="main_footer">
+      <image src="@/static/logo@2x.png" mode=""></image>
+      <text>瀹夊窘瀹夋嘲鐗╂祦鏈夐檺璐d换鍏徃鐗堟潈鎵�鏈�</text>
+    </view>
+  </view>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      title: 'Hello'
+    }
+  },
+  onLoad() {
+
+  },
+  methods: {
+    jump(path) {
+      uni.navigateTo({
+        url: path
+      })
+    },
+  }
+}
+</script>
+<style lang="scss">
+.main_app {
+  padding: 30rpx;
+  min-height: 100vh;
+  background: #f7f7f7;
+  .banner {
+    width: 100%;
+    height: 270rpx;
+    border-radius: 24rpx;
+    margin-bottom: 40rpx;
+    image {
+      width: 100%;
+      height: 100%;
+    }
+  }
+  .module {
+    display: flex;
+    flex-wrap: wrap;
+    .item {
+      width: 336rpx;
+      height: 290rpx;
+      background: #ffffff;
+      border-radius: 24rpx;
+      margin-bottom: 20rpx;
+      display: flex;
+      flex-direction: column;
+      justify-content: center;
+      align-items: center;
+      image {
+        width: 112rpx;
+        height: 112rpx;
+        margin-bottom: 28rpx;
+      }
+      .text {
+        font-weight: 500;
+        font-size: 36rpx;
+        color: #222222;
+      }
+      &:nth-of-type(2n) {
+        margin-left: 18rpx;
+      }
+    }
+  }
+  .main_footer {
+    width: 100%;
+    position: fixed;
+    bottom: 84rpx;
+    display: flex;
+    justify-content: center;
+    font-size: 24rpx;
+    color: #666666;
+    image {
+      width: 40rpx;
+      height: 40rpx;
+    }
+  }
+}
+</style>
\ No newline at end of file

--
Gitblit v1.9.3