From c94eed22ac10480428d5b711bfd90ff746f42d2b Mon Sep 17 00:00:00 2001 From: li-guang <153605324@qq.com> Date: Fri, 25 Dec 2020 18:02:18 +0800 Subject: [PATCH] 库存查询 --- hive-app/pages/manager/analyse.vue | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/hive-app/pages/manager/analyse.vue b/hive-app/pages/manager/analyse.vue index 956183c..8be9026 100644 --- a/hive-app/pages/manager/analyse.vue +++ b/hive-app/pages/manager/analyse.vue @@ -1,9 +1,48 @@ <template> <!-- 专项分析 --> + <view class="container"> + <view class="content-box font-14 mt-10"> + <view class="content-box-row flex align-center justify-between"> + <text>12月11日</text> + <text>¥1,712</text> + </view> + <view class="content-box-row flex align-center justify-between"> + <text>12月12日</text> + <text>¥1,712</text> + </view> + <view class="content-box-row flex align-center justify-between"> + <text>12月13日</text> + <text>¥1,712</text> + </view> + <view class="content-box-row flex align-center justify-between"> + <text>12月14日</text> + <text>¥1,712</text> + </view> + </view> + </view> </template> <script> </script> <style> + page{ + background: #F6F6F8; + } + .container{ + padding: 0 10px; + } + .content-box{ + border: 1px solid #EDEAF4; + border-radius: 4px; + background: #FFFFFF; + padding: 0 10px; + } + .content-box-row{ + border-bottom: 1px solid #EDEAF4; + padding: 10px 0; + } + .content-box-row:nth-last-child(1){ + border: 0; + } </style> -- Gitblit v1.9.1