fix:修复了不能按处理时间搜索的bug

This commit is contained in:
KindSeven
2024-09-16 21:46:25 +08:00
parent 371c332f3c
commit 595e9216ec
5 changed files with 11 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ const searchConfig = reactive([
component: 'el-date-picker',
}, {
label: '处理时间',
prop: 'te',
prop: 'processedTime',
props: {
placeholder: '请选择',
clearable: true,
@@ -258,6 +258,8 @@ const headBtnClick = (key) => {
}
const handleDetail = (row) => {
// console.log(row);
workDialogRef.value.open(row)
rowData.value = row
}