From 8e38cc8536cfda9b6bda8548d63778cbf5f4d634 Mon Sep 17 00:00:00 2001 From: web <candymxq888@outlook.com> Date: 星期六, 26 四月 2025 17:27:57 +0800 Subject: [PATCH] fix:添加个人中心和重置密码 --- src/views/screen/flow/report/index.vue | 23 ----------------------- 1 files changed, 0 insertions(+), 23 deletions(-) diff --git a/src/views/screen/flow/report/index.vue b/src/views/screen/flow/report/index.vue index dfdaeb0..23d967a 100644 --- a/src/views/screen/flow/report/index.vue +++ b/src/views/screen/flow/report/index.vue @@ -7,17 +7,9 @@ const cascaderOption = { label: 'pointName', value: 'id', children: 'childrenList', checkStrictly: true, expandTrigger: 'hover', emitPath: false }; //级联选择器配置 const typeOption = ref([]) -const timeOption = ref([ - { label: '小时', value: 1 }, - { label: '日', value: 2 }, - { label: '月', value: 4 }, - { label: '季度', value: 5 }, - { label: '年', value: 6 }, -]) const timeVal = ref([]) const searchData = reactive({ pointId: '', - dateType: 2, createTimeRange: '' }) const tableRef = ref(null); //表格实例 @@ -72,21 +64,6 @@ <div class="report"> <div class="report-tool"> <el-cascader size="large" v-model="searchData.pointId" :options="typeOption" :show-all-levels="false" :props="cascaderOption" clearable /> - <el-select - v-model="searchData.dateType" - class="tool-select" - size="large" - placeholder="请选择" - clearable - style="width: 15rem" - > - <el-option - v-for="item in timeOption" - :key="item.value" - :label="item.label" - :value="item.value" - /> - </el-select> <el-date-picker v-model="timeVal" type="datetimerange" -- Gitblit v1.9.3