227 lines
4.4 KiB
Vue
227 lines
4.4 KiB
Vue
<template>
|
|
<view class="feature-page">
|
|
<!-- 页面头部 -->
|
|
<view class="page-header">
|
|
<view class="nav-bar">
|
|
<view class="nav-left" @click="goBack">
|
|
<text class="back-icon">←</text>
|
|
</view>
|
|
<text class="nav-title">接待客户数统计</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 内容区域 -->
|
|
<scroll-view class="content-scroll" scroll-y="true">
|
|
<!-- 统计卡片 -->
|
|
<view class="stats-card">
|
|
<view class="stat-item">
|
|
<text class="stat-value">{{ totalCustomers }}</text>
|
|
<text class="stat-label">累计接待客户</text>
|
|
</view>
|
|
<view class="stat-item">
|
|
<text class="stat-value">{{ todayCustomers }}</text>
|
|
<text class="stat-label">今日接待客户</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 图表区域 -->
|
|
<view class="chart-section">
|
|
<text class="section-title">接待趋势图</text>
|
|
<view class="chart-placeholder">
|
|
<text class="placeholder-text">📈 图表区域</text>
|
|
<text class="placeholder-desc">此处将显示客户接待趋势图表</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 数据列表 -->
|
|
<view class="data-list">
|
|
<text class="section-title">接待记录</text>
|
|
<view class="list-item" v-for="(item, index) in dataList" :key="index">
|
|
<view class="item-left">
|
|
<text class="item-date">{{ item.date }}</text>
|
|
<text class="item-desc">{{ item.description }}</text>
|
|
</view>
|
|
<view class="item-right">
|
|
<text class="item-count">{{ item.count }} 人</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
totalCustomers: '1,258',
|
|
todayCustomers: '23',
|
|
dataList: [
|
|
{ date: '2024-02-07', description: '今日接待客户', count: '23' },
|
|
{ date: '2024-02-06', description: '昨日接待客户', count: '31' },
|
|
{ date: '2024-02-05', description: '前日接待客户', count: '28' },
|
|
{ date: '2024-02-04', description: '工作日接待客户', count: '35' },
|
|
{ date: '2024-02-03', description: '周末接待客户', count: '18' }
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
goBack() {
|
|
uni.navigateBack()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.feature-page {
|
|
min-height: 100vh;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.page-header {
|
|
background: #ffffff;
|
|
border-bottom: 1rpx solid #e9ecef;
|
|
}
|
|
|
|
.nav-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 88rpx;
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.nav-left {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.back-icon {
|
|
font-size: 36rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
.nav-title {
|
|
flex: 1;
|
|
text-align: center;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
}
|
|
|
|
.content-scroll {
|
|
height: calc(100vh - 88rpx);
|
|
}
|
|
|
|
.stats-card {
|
|
display: flex;
|
|
margin: 20rpx 30rpx;
|
|
background: #ffffff;
|
|
border-radius: 16rpx;
|
|
padding: 40rpx 30rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.stat-item {
|
|
flex: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-item:not(:last-child) {
|
|
border-right: 1rpx solid #e9ecef;
|
|
}
|
|
|
|
.stat-value {
|
|
display: block;
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
color: #007aff;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.stat-label {
|
|
display: block;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.chart-section, .data-list {
|
|
margin: 20rpx 30rpx;
|
|
background: #ffffff;
|
|
border-radius: 16rpx;
|
|
overflow: hidden;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.section-title {
|
|
display: block;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #e9ecef;
|
|
}
|
|
|
|
.chart-placeholder {
|
|
padding: 80rpx 30rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.placeholder-text {
|
|
display: block;
|
|
font-size: 48rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.placeholder-desc {
|
|
display: block;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 30rpx;
|
|
border-bottom: 1rpx solid #f0f0f0;
|
|
}
|
|
|
|
.list-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.item-left {
|
|
flex: 1;
|
|
}
|
|
|
|
.item-date {
|
|
display: block;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.item-desc {
|
|
display: block;
|
|
font-size: 24rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.item-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.item-count {
|
|
display: block;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #007aff;
|
|
}
|
|
</style>
|