forked from drone/command-center-dashboard

罗广辉
2025-03-28 21cafdf0d0a032a991fdd1a1449d19405747e330
feat: 日期调整
5 files modified
1 files added
278 ■■■■ changed files
pnpm-lock.yaml 23 ●●●●● patch | view | raw | blame | history
src/components/CommonDateTime.vue 53 ●●●●● patch | view | raw | blame | history
src/layout/Header.vue 4 ●●●● patch | view | raw | blame | history
src/views/Home/SearchBox.vue 13 ●●●●● patch | view | raw | blame | history
src/views/Home/components/HomeLeft/InspectionRaskDetails.vue 100 ●●●● patch | view | raw | blame | history
src/views/Home/components/HomeRight/EventOverview.vue 85 ●●●● patch | view | raw | blame | history
pnpm-lock.yaml
@@ -47,6 +47,9 @@
      disable-devtool:
        specifier: ^0.3.8
        version: 0.3.8
      echarts:
        specifier: ^5.6.0
        version: 5.6.0
      element-plus:
        specifier: ^2.9.3
        version: 2.9.7(vue@3.5.13)
@@ -1168,6 +1171,9 @@
  earcut@3.0.1:
    resolution: {integrity: sha512-0l1/0gOjESMeQyYaK5IDiPNvFeu93Z/cO0TjZh9eZ1vyCtZnA7KMZ8rQggpsJHIbGSdrqYq9OhuveadOVHCshw==}
  echarts@5.6.0:
    resolution: {integrity: sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==}
  element-plus@2.9.7:
    resolution: {integrity: sha512-6vjZh5SXBncLhUwJGTVKS5oDljfgGMh6J4zVTeAZK3YdMUN76FgpvHkwwFXocpJpMbii6rDYU3sgie64FyPerQ==}
    peerDependencies:
@@ -2269,6 +2275,9 @@
    resolution: {integrity: sha512-vxXDZg8/+p3gblxB6BhhG5yWVn1kGRlaL8O78UDXc3wRnPizB5g83dcvWV1jpDMIPnjZjOFuxlMmE82XJ4407w==}
    engines: {node: '>= 0.4'}
  tslib@2.3.0:
    resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==}
  tslib@2.8.1:
    resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -2463,6 +2472,9 @@
  wildcard@1.1.2:
    resolution: {integrity: sha512-DXukZJxpHA8LuotRwL0pP1+rS6CS7FF2qStDDE1C7DDg2rLud2PXRMuEDYIPhgEezwnlHNL4c+N6MfMTjCGTng==}
  zrender@5.6.1:
    resolution: {integrity: sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==}
snapshots:
@@ -3481,6 +3493,11 @@
      gopd: 1.2.0
  earcut@3.0.1: {}
  echarts@5.6.0:
    dependencies:
      tslib: 2.3.0
      zrender: 5.6.1
  element-plus@2.9.7(vue@3.5.13):
    dependencies:
@@ -4778,6 +4795,8 @@
      typedarray.prototype.slice: 1.0.5
      which-typed-array: 1.1.19
  tslib@2.3.0: {}
  tslib@2.8.1: {}
  type@2.7.3: {}
@@ -5018,3 +5037,7 @@
      has-tostringtag: 1.0.2
  wildcard@1.1.2: {}
  zrender@5.6.1:
    dependencies:
      tslib: 2.3.0
src/components/CommonDateTime.vue
@@ -5,10 +5,16 @@
            type="daterange"
            range-separator="-"
            start-placeholder="开始日期"
            end-placeholder="结束日期">
      end-placeholder="结束日期"
    >
         </el-date-picker>
         <div class="time-card">
            <div class="card-item" :class="item==checked?'active':''" v-for="item in timeList" @click="timeClick(item)">
      <div
        class="card-item"
        :class="item == checked ? 'active' : ''"
        v-for="item in timeList"
        @click="timeClick(item)"
      >
                {{ item }}
            </div>
         </div>
@@ -20,29 +26,34 @@
let timeList = ['今日','本周','本月','本年' ];
let checked = ref('今日');
let timeClick = (item) => {
let timeClick = item => {
    checked.value = item;
}
};
</script>
<style scoped lang="scss">
    .common-date-time {
        position: relative;
        top: 19px;
        display: flex ;
        justify-content: space-between;
        :deep(.el-date-editor) {
    box-shadow: none;
    width: 0;
    flex: 1;
    margin-right: 4px;
            background: rgba(0,15,34,0.5);
            border-radius: 0px 0px 0px 0px;
            border: 1px solid #306FCA;
    border: 1px solid #306fca;
            height: 28px;
            
            .el-input__wrapper {
                background-color: transparent;
                box-shadow: 0 0 0 1px #0070FF;
      box-shadow: 0 0 0 1px #0070ff;
                
                &.is-focus {
                    box-shadow: 0 0 0 1px #0070FF;
        box-shadow: 0 0 0 1px #0070ff;
                }
            }
@@ -50,33 +61,35 @@
                background-color: transparent;
                color: #fff;
                height: 28px;
                &::placeholder {
                    color: rgba(255, 255, 255, 0.6);
                }
            }
        }
        .time-card {
            width: 156px;
            height: 28px;
            background: linear-gradient( 270deg, #195BAD 0%, rgba(25,91,173,0) 100%);
            border-radius: 0px 0px 0px 0px;
            border: 1px solid #306FCA;
            font-family: Source Han Sans CN, Source Han Sans CN;
    text-align: center;
    background: linear-gradient(270deg, #195bad 0%, rgba(25, 91, 173, 0) 100%);
    border: 1px solid #306fca;
    font-family: Source Han Sans CN, Source Han Sans CN, serif;
            font-weight: 400;
            font-size: 14px;
            color: #FFFFFF;
    color: #ffffff;
            display: flex;
            .card-item {
                width: 40px;
                height: 28px;
                line-height: 28px;
    .card-item {
      width: 39px;
      height: 100%;
      line-height: 26px;
                cursor: pointer;
            }
            .active {
                background: linear-gradient( 270deg, #19AD8D 0%, rgba(25,173,141,0) 100%);
      background: linear-gradient(270deg, #19ad8d 0%, rgba(25, 173, 141, 0) 100%);
                box-shadow: inset 0px 0px 8px 0px rgba(0,255,200,0.6);
                border-radius: 0px 0px 0px 0px;
                border: 1px solid #30CAA9;
            }
        }
    }
src/layout/Header.vue
@@ -38,7 +38,7 @@
      background: url(@/assets/images/header-left.png) no-repeat;
      background-size: 100% 100%;
      margin-right: 3px;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei,serif;
      font-weight: 400;
      font-size: 18px;
      color: #ffffff;
@@ -65,7 +65,7 @@
      background: url(@/assets/images/header-right.png) no-repeat;
      background-size: 100% 100%;
      margin-right: 3px;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei,serif;
      font-weight: 400;
      font-size: 18px;
      color: #ffffff;
src/views/Home/SearchBox.vue
New file
@@ -0,0 +1,13 @@
<script setup>
</script>
<template>
   <div>
   </div>
</template>
<style scoped lang="scss">
</style>
src/views/Home/components/HomeLeft/InspectionRaskDetails.vue
@@ -40,7 +40,7 @@
            left: '3%',
            right: '4%',
            bottom: '3%',
            containLabel: true
      containLabel: true,
        },
        tooltip: {
            trigger: 'axis',
@@ -48,59 +48,91 @@
            borderColor: '#0070FF',
            borderWidth: 1,
            textStyle: {
                color: '#fff'
        color: '#fff',
            },
            formatter: '{b}日: {c}次'
      formatter: '{b}日: {c}次',
        },
        xAxis: {
            type: 'category',
            data: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10',
                   '11', '12', '13', '14', '15', '16', '17', '18', '19',
                   '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30'],
      data: [
        '1',
        '2',
        '3',
        '4',
        '5',
        '6',
        '7',
        '8',
        '9',
        '10',
        '11',
        '12',
        '13',
        '14',
        '15',
        '16',
        '17',
        '18',
        '19',
        '20',
        '21',
        '22',
        '23',
        '24',
        '25',
        '26',
        '27',
        '28',
        '29',
        '30',
      ],
            axisLine: {
                show: false  // 隐藏轴线
        show: false, // 隐藏轴线
            },
            axisTick: {
                show: true,
                length: 2,
                lineStyle: {
                    color: '#ffffff'
                }
          color: '#ffffff',
        },
            },
            axisLabel: {
                color: '#ffffff',
                margin: 8
            }
        margin: 8,
      },
        },
        yAxis: {
            type: 'value',
            axisLine: {
                lineStyle: {
                    color: '#ffffff'
                }
          color: '#ffffff',
        },
            },
            axisLabel: {
                color: '#ffffff'
        color: '#ffffff',
            },
            splitLine: {
                lineStyle: {
                    color: 'rgba(255, 255, 255, 0.1)'
                }
            }
          color: 'rgba(255, 255, 255, 0.1)',
        },
        series: [{
            data: [10, 15, 8, 20, 12, 18, 15, 22, 16, 19,
                   14, 17, 21, 13, 16, 18, 15, 20, 17, 22,
                   19, 16, 14, 18, 21, 15, 17, 20, 16, 18],
      },
    },
    series: [
      {
        data: [
          10, 15, 8, 20, 12, 18, 15, 22, 16, 19, 14, 17, 21, 13, 16, 18, 15, 20, 17, 22, 19, 16, 14,
          18, 21, 15, 17, 20, 16, 18,
        ],
            type: 'bar',
            barWidth: '60%',
            itemStyle: {
                color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
                    { offset: 0, color: '#1EE7E7' },
                    { offset: 1, color: 'rgba(0, 112, 255, 0.1)' }
                ])
            }
        }]
            { offset: 1, color: 'rgba(0, 112, 255, 0.1)' },
          ]),
        },
      },
    ],
    };
    
    chart.setOption(option);
@@ -118,28 +150,37 @@
    padding: 16px 16px;
    width: 390px;
    height: 414px;
    background: linear-gradient( 270deg, rgba(31,62,122,0) 0%, rgba(31,62,122,0.35) 21%, #1F3E7A 100%);
  background: linear-gradient(
    270deg,
    rgba(31, 62, 122, 0) 0%,
    rgba(31, 62, 122, 0.35) 21%,
    #1f3e7a 100%
  );
    border-radius: 0px 0px 0px 0px;
    opacity: 0.85;
    .inspection-num {
        background: url('@/assets/images/inspection-num.png') no-repeat center / 100% 100%;
        width: 360px;
        height: 118px;
        position: relative;
        .total {
            position: absolute;
            left: 34px;
            top: 34px;
            font-weight: 500;
            font-size: 14px;
            color: #FFFFFF;
      color: #ffffff;
            font-family: Source Han Sans CN, Source Han Sans CN;
            .value {
                font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
                margin-left: 8px;
                font-size: 26px;
            }
        }
        .status {
            position: absolute;
            top: 8px;
@@ -151,12 +192,14 @@
            justify-content: flex-start;
            line-height: 22px;
            padding: 0 10px 10px 0;
            .name {
                font-family: Source Han Sans CN, Source Han Sans CN;
                font-weight: 400;
                font-size: 14px;
                color: #FFFFFF;
        color: #ffffff;
            }
            .value {
                font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
                font-weight: 400;
@@ -164,6 +207,7 @@
            }
        }
    }
    .chart-container {
        width: 100%;
        height: 200px;
src/views/Home/components/HomeRight/EventOverview.vue
@@ -8,6 +8,8 @@
import overviewImg5 from '@/assets/images/home/homeRight/overview5.png';
import overviewImg6 from '@/assets/images/home/homeRight/overview6.png';
import completionLeft from '@/assets/images/home/homeRight/completionLeft.png';
import * as echarts from 'echarts';
import CommonDateTime from '@/components/CommonDateTime.vue';
const list = ref([
  { name: '待审核', value: 265, img: overviewImg1, color: '#FF8E8E' },
@@ -18,29 +20,66 @@
  { name: '已完结', value: 262, img: overviewImg6, color: '#8EFFAC' },
]);
const value = ref('');
const echartsRef = ref('');
const options = [
  {
    value: 'Option1',
    label: 'Option1',
  },
  {
    value: 'Option2',
    label: 'Option2',
  },
  {
    value: 'Option3',
    label: 'Option3',
  },
  {
    value: 'Option4',
    label: 'Option4',
  },
  {
    value: 'Option5',
    label: 'Option5',
  },
];
const option = {
  tooltip: {
    trigger: 'axis',
    axisPointer: {
      type: 'shadow',
    },
  },
  legend: {},
  grid: {
    left: '3%',
    right: '4%',
    bottom: '3%',
    containLabel: true,
  },
  xAxis: [
    {
      type: 'category',
      data: ['暴露垃圾', '占道'],
    },
  ],
  yAxis: [
    {
      type: 'value',
    },
  ],
  series: [
    {
      name: '待完成',
      type: 'bar',
      stack: 'Ad',
      emphasis: {
        focus: 'series',
      },
      data: [120, 132],
    },
    {
      name: '已完成',
      type: 'bar',
      stack: 'Ad',
      emphasis: {
        focus: 'series',
      },
      data: [220, 182],
    },
  ],
};
onMounted(() => {
  const chart = echarts.init(echartsRef.value);
  chart.setOption(option);
});
</script>
<template>
@@ -59,6 +98,7 @@
          </div>
        </div>
      </div>
      <CommonDateTime class="dateTime" />
      <el-select class="homeRightSelect" v-model="value" placeholder="请选择" size="large">
        <el-option
@@ -76,9 +116,7 @@
        <img class="completion-left-img" :src="completionLeft" />
      </div>
      <div class="chart">
        <div class="chart-text">echarts柱状图</div>
      </div>
      <div class="chart" ref="echartsRef"></div>
    </div>
  </div>
</template>
@@ -118,6 +156,10 @@
  display: flex;
  flex-direction: column;
  align-items: center;
  .dateTime{
    width: 356px;
  }
  .overviewData {
    width: 360px;
@@ -210,5 +252,10 @@
      opacity: 0.2;
    }
  }
  .chart {
    width: 356px;
    height: 182px;
  }
}
</style>