This commit is contained in:
weipengfei 2023-09-12 09:32:31 +08:00
parent a545531195
commit 23a0ef26bd
2 changed files with 13 additions and 13 deletions

@ -8,6 +8,7 @@
<people />
</el-col>
</el-row>
<el-card class="!border-none mt-4" shadow="never">
<el-alert
type="warning"
@ -50,6 +51,12 @@
<el-form-item>
<el-button type="primary" @click="resetPage">查询</el-button>
<el-button @click="resetParams">重置</el-button>
<export-data
class="ml-2.5"
:fetch-fun="accountLog"
:params="queryParams"
:page-size="pager.size"
/>
</el-form-item>
</el-form>
</el-card>
@ -142,11 +149,9 @@ const queryParams = reactive({
end_time: "",
company_id: "",
});
if (route.query?.company_id) {
queryParams.company_id = route.query?.company_id;
queryParams.start_time = route.query?.s_date;
queryParams.end_time = route.query?.e_date;
}
if (route.query?.company_id) queryParams.company_id = route.query?.company_id;
if (route.query?.s_date) queryParams.start_time = route.query?.s_date;
if (route.query?.e_date) queryParams.end_time = route.query?.e_date;
const { pager, getLists, resetPage, resetParams } = usePaging({
fetchFun: accountLog,
@ -186,7 +191,9 @@ const getTypeColor = (type: number) => {
return color;
};
getLists();
onMounted(() => {
getLists();
});
</script>

@ -57,12 +57,6 @@
<el-form-item>
<el-button type="primary" @click="resetPage">查询</el-button>
<el-button @click="resetParams">重置</el-button>
<export-data
class="ml-2.5"
:fetch-fun="accountLog"
:params="queryParams"
:page-size="pager.size"
/>
</el-form-item>
</el-form>
</el-card>
@ -152,7 +146,6 @@ import { timeFormat } from "@/utils/util";
import { dictDataLists } from "@/api/setting/dict";
import { getRoutePath } from "@/router";
import { dictContractTypeList } from "@/utils/dict.ts";
import { accountLog } from "@/api/finance";
const userStore = useUserStore();
// console.log(userStore.userInfo.company_id);