diff --git a/src/views/invest/ilog/index.vue b/src/views/invest/ilog/index.vue index 62ef840..90dd6b2 100644 --- a/src/views/invest/ilog/index.vue +++ b/src/views/invest/ilog/index.vue @@ -6,6 +6,9 @@ + + + @@ -50,15 +53,15 @@ - + @@ -99,7 +102,11 @@ const single = ref(true) const multiple = ref(true) const total = ref(0) const title = ref('') -const operateList = ref([{ id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] }]) +const operateList = ref([ + // { id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] }, + // { id: 'edit', icon: 'Edit', title: '修改', hasPermi: ['invest:heartJourney:edit'] }, + { id: 'delete', icon: 'Delete', title: '删除', hasPermi: ['invest:heartJourney:remove'] } +]) const data = reactive({ form: {}, queryParams: { @@ -169,7 +176,8 @@ function handleQuery() { /** 重置按钮操作 */ function resetQuery() { - proxy.resetForm('queryRef') + queryParams.value.mobile = null + queryParams.value.status = null handleQuery() }