perf: 调整
This commit is contained in:
@ -114,7 +114,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('search', 'reset', 'update:query');
|
const emits = defineEmits(['search', 'reset', 'update:query']);
|
||||||
const created_at = ref([]);
|
const created_at = ref([]);
|
||||||
const audit_started_at = ref([]);
|
const audit_started_at = ref([]);
|
||||||
|
|
||||||
|
|||||||
@ -93,7 +93,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('search', 'reset', 'update:query');
|
const emits = defineEmits(['search', 'reset', 'update:query']);
|
||||||
|
|
||||||
const created_at = ref([]);
|
const created_at = ref([]);
|
||||||
// const projects = ref([]);
|
// const projects = ref([]);
|
||||||
|
|||||||
@ -64,7 +64,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('search', 'reset', 'update:query');
|
const emits = defineEmits(['search', 'reset', 'update:query']);
|
||||||
|
|
||||||
const created_at = ref([]);
|
const created_at = ref([]);
|
||||||
|
|
||||||
|
|||||||
@ -77,7 +77,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||||
|
|
||||||
const groups = ref([]);
|
const groups = ref([]);
|
||||||
const operators = ref([]);
|
const operators = ref([]);
|
||||||
|
|||||||
@ -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 tags = ref([]);
|
||||||
const groups = ref([]);
|
const groups = ref([]);
|
||||||
|
|||||||
@ -52,7 +52,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||||
|
|
||||||
const handleSearch = () => {
|
const handleSearch = () => {
|
||||||
emits('update:query', props.query);
|
emits('update:query', props.query);
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
<div class="filter-row-item flex items-center">
|
<div class="filter-row-item flex items-center">
|
||||||
<span class="label">运营人员</span>
|
<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>
|
</div>
|
||||||
<div class="filter-row flex">
|
<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 tags = ref([]);
|
||||||
const groups = 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 operators = ref([]);
|
||||||
const projects = ref([]);
|
const projects = ref([]);
|
||||||
|
|||||||
@ -65,7 +65,7 @@ const props = defineProps({
|
|||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const emits = defineEmits('onSearch', 'onReset', 'update:query');
|
const emits = defineEmits(['onSearch', 'onReset', 'update:query']);
|
||||||
// 获取最近7天的日期
|
// 获取最近7天的日期
|
||||||
const getLast7Days = () => {
|
const getLast7Days = () => {
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
|
|||||||
@ -112,7 +112,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('search', 'reset', 'update:query');
|
const emits = defineEmits(['search', 'reset', 'update:query']);
|
||||||
const created_at = ref([]);
|
const created_at = ref([]);
|
||||||
const audit_started_at = ref([]);
|
const audit_started_at = ref([]);
|
||||||
|
|
||||||
|
|||||||
@ -97,7 +97,7 @@ const props = defineProps({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emits = defineEmits('search', 'reset', 'update:query');
|
const emits = defineEmits(['search', 'reset', 'update:query']);
|
||||||
|
|
||||||
const created_at = ref([]);
|
const created_at = ref([]);
|
||||||
// const projects = ref([]);
|
// const projects = ref([]);
|
||||||
|
|||||||
Reference in New Issue
Block a user