perf: 调整
This commit is contained in:
@ -27,7 +27,7 @@
|
||||
|
||||
<div class="filter-row-item flex items-center">
|
||||
<span class="label">运营人员</span>
|
||||
<CommonSelect v-model:value="query.operator_id" class="!w-160px" :multiple="false" :options="operators" />
|
||||
<CommonSelect v-model="query.operator_id" class="!w-160px" :multiple="false" :options="operators" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="filter-row flex">
|
||||
|
||||
@ -103,7 +103,7 @@ const props = defineProps({
|
||||
},
|
||||
});
|
||||
|
||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
||||
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||
|
||||
// const tags = ref([]);
|
||||
const groups = ref([]);
|
||||
|
||||
@ -90,7 +90,7 @@ const props = defineProps({
|
||||
},
|
||||
});
|
||||
|
||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
||||
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||
|
||||
const operators = ref([]);
|
||||
const projects = ref([]);
|
||||
|
||||
@ -65,7 +65,7 @@ const props = defineProps({
|
||||
default: false,
|
||||
},
|
||||
});
|
||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
||||
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||
// 获取最近7天的日期
|
||||
const getLast7Days = () => {
|
||||
const today = new Date();
|
||||
|
||||
Reference in New Issue
Block a user