fanghuisheng 2 лет назад
Родитель
Сommit
eada2358b0

+ 63 - 0
src/pages/analyse/analyse.vue

@@ -0,0 +1,63 @@
+<template>
+  <view class="analyse-wrapper" style="height: 100%">
+    <view class="justify-center align-center text-center">
+      <u-image src="@/static/images/analyse/analyse-bg.png" width="100%" height="273rpx" :showLoading="false" :fade="false"></u-image>
+    </view>
+    <view class="cu-list menu-avatar padding-lr-sm padding-top-sm" style="height: calc(100% - 8.53125rem)">
+      <view class="cu-item margin-bottom-sm" @tap="goMonthReport()">
+        <view class="cu-avatar">
+          <image class="image-bg" src="@/static/images/analyse/yb-icon.png" />
+        </view>
+        <view class="content">
+          <view class="">月报</view>
+        </view>
+        <view class="nav-right">
+          <view class="text-grey">
+            <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
+          </view>
+        </view>
+      </view>
+      <view class="cu-item margin-bottom-sm" @tap="goBuildingCheck()">
+        <view class="cu-avatar">
+          <image class="image-bg" src="@/static/images/analyse/build-icon.png" />
+        </view>
+        <view class="content">
+          <view class="">建筑体检</view>
+        </view>
+        <view class="nav-right">
+          <view class="text-grey">
+            <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
+          </view>
+        </view>
+      </view>
+    </view>
+  </view>
+</template>
+
+<script>
+export default {
+  data() {
+    return {};
+  },
+  methods: {
+    goMonthReport() {
+      // uni.navigateTo({
+      // 	url: '/pages/analyse/monthReport/monthReport',
+      // });
+    },
+    goBuildingCheck() {
+      // uni.navigateTo({
+      // 	url: '/pages/analyse/buildingCheck/buildingCheck',
+      // });
+    },
+  },
+};
+</script>
+
+<style>
+body {
+  background: #fff;
+}
+</style>
+
+<style lang="scss"></style>

BIN
src/static/images/analyse/analyse-bg.png


BIN
src/static/images/analyse/build-icon.png


BIN
src/static/images/analyse/yb-icon.png