2024-01-19 18:43:37 +08:00

71 lines
2.8 KiB
Vue

<template>
<div>
<el-card class="!border-none" shadow="never">
<el-form class="mb-[-16px]" :model="queryParams" inline>
<el-form-item label="查询" prop="name">
<el-input class="w-[280px]" v-model="queryParams.name" clearable placeholder="请输入内容" />
</el-form-item>
<el-form-item>
<el-button type="primary" @click="resetPage">查询</el-button>
<el-button @click="resetParams">重置</el-button>
</el-form-item>
</el-form>
</el-card>
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
<div class="mt-4">
<el-table :data="pager.lists" @cell-click="handleCurrentChange">
<el-table-column type="selection" width="55" />
<el-table-column label="序号" type="index" width="55" />
<el-table-column label="项目类型" prop="project_type_name" show-overflow-tooltip />
<el-table-column label="科目编码" prop="subject_code" show-overflow-tooltip />
<el-table-column label="一级科目" prop="first_level_subject" show-overflow-tooltip />
<el-table-column label="二级科目" prop="second_level_subject" show-overflow-tooltip />
<el-table-column label="三级科目" prop="third_level_subject" show-overflow-tooltip />
<el-table-column label="单位" prop="unit" show-overflow-tooltip />
<el-table-column label="差旅科目" show-overflow-tooltip>
<template #default="{ row }">
{{ row.is_travel == 1 ? '是' : '否' }}
</template>
</el-table-column>
</el-table>
</div>
<div class="flex justify-end mt-4">
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
</div>
</template>
<script lang="ts" setup>
import { usePaging } from "@/hooks/usePaging"
import { useDictData } from "@/hooks/useDictOptions"
import { apiProjectcostLists } from '@/api/project_cost_temp_set.ts'
import { defineEmits } from "vue"
import { timeFormat } from '@/utils/util'
// 查询条件
const queryParams = reactive({
// custom_name: '',
// project_type: ""
});
const { dictData } = useDictData('contract_type,contract_pricing_method')
// 选中数据
const emits = defineEmits(["customEvent"]);
// 选中数据子父传递
const handleCurrentChange = (value: any) => {
emits("customEvent", value);
};
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiProjectcostLists,
params: queryParams,
});
getLists();
</script>