Commit 8d506d49 authored by xinzhedeai's avatar xinzhedeai

add:home-zf

parent 6d04e774
...@@ -24,6 +24,15 @@ gemhoUtil.getTargetDateYM = function(dayLength, type) { ...@@ -24,6 +24,15 @@ gemhoUtil.getTargetDateYM = function(dayLength, type) {
var month = tempDate.getMonth() + 1 < 10 ? "0" + (tempDate.getMonth() + 1) : tempDate.getMonth() + 1; var month = tempDate.getMonth() + 1 < 10 ? "0" + (tempDate.getMonth() + 1) : tempDate.getMonth() + 1;
return year + "-" + month; return year + "-" + month;
} }
gemhoUtil.getTargetDateYMByPara = function(date) {
var tempDate = date;
var year = tempDate.getFullYear();
var month = tempDate.getMonth() + 1 < 10 ? "0" + (tempDate.getMonth() + 1) : tempDate.getMonth() + 1;
return year + "-" + month;
}
/** /**
* *
* @functionName: getPageName * @functionName: getPageName
......
...@@ -210,12 +210,21 @@ ...@@ -210,12 +210,21 @@
/* 底部栏 */ /* 底部栏 */
.bottom_bar { .bottom_bar {
position: fixed; display: flex;
bottom: 0; justify-content: space-between;
position: fixed;
align-items: center;
bottom: 0.5rem;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
width: 78vw; width: 83vw;
border: 1px solid; /* border: 1px solid; */
background: #FFFFFF;
box-shadow: 2px -5px 21px 0px rgba(103,103,103,0.14);
padding-top: 0.2rem;
padding-bottom: 0.2rem;
padding-left: 0.2rem;
padding-right: 0.2rem;
} }
.bottom_bar button { .bottom_bar button {
...@@ -294,7 +303,7 @@ ...@@ -294,7 +303,7 @@
<!-- 底部栏 --> <!-- 底部栏 -->
<div class="bottom_bar"> <div class="bottom_bar">
<div style="display: inline-block;"> <div style="display: inline-block; margin-bottom: 0.2rem;">
<van-icon name="apps-o" color="blue" /> <van-icon name="apps-o" color="blue" />
<span <span
style="color: #545454;font-size: 0.28rem;margin-right: 1rem;margin-left: 0.2rem;">{{ notNullCount }}/{{totalItems}}</span> style="color: #545454;font-size: 0.28rem;margin-right: 1rem;margin-left: 0.2rem;">{{ notNullCount }}/{{totalItems}}</span>
......
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>安全检查管理</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2/lib/index.css">
<style>
/* 自定义样式 */
.section {
padding: 12px;
background: white;
margin-bottom: 8px;
}
.merchant-info {
display: flex;
align-items: center;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 8px;
margin-top: 12px;
}
.stat-item {
text-align: center;
padding: 8px;
background: #f7f8fa;
border-radius: 4px;
}
.function-grid {
margin-top: 12px;
}
.function-card {
display: flex;
flex-direction: column;
justify-content: center;
padding: 12px;
background: white;
border-radius: 4px;
height: 100px;
}
</style>
</head>
<body>
<div id="app">
<!-- 第一层:安全等级和商家类型 -->
<div class="section">
<div style="display: flex; justify-content: space-between;">
<span>安全等级:A级</span>
<van-tag type="primary">餐饮类</van-tag>
</div>
</div>
<!-- 第二层:商户信息 -->
<div class="section">
<div class="merchant-info">
<van-icon name="shop" size="24px"/>
<div style="margin-left: 12px;">
<div style="display: flex; align-items: center;">
<span>XX商户名称</span>
<div style="width:1px;height:12px;background:#eee;margin:0 8px"></div>
<van-tag plain type="primary">VIP商户</van-tag>
</div>
<div style="color:#969799;font-size:12px;">
<div>场所类型:九小场所</div>
<div>地址:XX路XX号</div>
</div>
</div>
</div>
</div>
<!-- 第三层:统计信息 -->
<div class="section">
<div style="display: flex; justify-content: space-between;">
<span>数据统计</span>
<van-field
readonly
clickable
value="2023-07"
placeholder="选择年月"
style="width:120px"/>
</div>
<div class="stats-grid">
<div class="stat-item">
<div style="font-size:18px;color:#1989fa">75</div>
<div style="font-size:12px;color:#969799">检查数</div>
</div>
<!-- 重复3个相同结构的统计项 -->
</div>
</div>
<!-- 第四层:检查专区 -->
<div class="section">
<van-grid :column-num="2" gutter="8" class="function-grid">
<van-grid-item v-for="item in 6" :key="item">
<div class="function-card">
<div style="display:flex;align-items:center">
<van-icon name="scan" size="16px"/>
<span style="margin-left:4px">扫码检查</span>
<van-icon name="arrow" style="margin-left:auto"/>
</div>
<div style="color:#969799;font-size:12px;margin-top:4px">
功能简介描述
</div>
</div>
</van-grid-item>
</van-grid>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
<script src="https://cdn.jsdelivr.net/npm/vant@2/lib/vant.min.js"></script>
<script>
new Vue({
el: '#app'
});
</script>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
.detail { .detail {
width: 6.88rem; width: 6.5rem;
/* height: 1.88rem; */ /* height: 1.88rem; */
background: #F5F6FA; background: #F5F6FA;
border-radius: 0.01rem; border-radius: 0.01rem;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment