68 lines
2.7 KiB
Vue
Raw Normal View History

2024-01-18 23:16:50 +08:00
<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="项目id" prop="project_id" show-overflow-tooltip />
<el-table-column label="机具预算单号" prop="equipment_budget_code" show-overflow-tooltip />
<el-table-column label="金额" prop="total_amount" show-overflow-tooltip />
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
<el-table-column label="附件" prop="annex" show-overflow-tooltip align="center">
<template #default="{ row }">
<el-link style="margin-right: 4px;" type="primary" :href="item.uri"
v-for="(item, index) in row.annex">文件{{
index + 1 }}</el-link>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<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 { apiProjectEquipmentBudgetLists } from '@/api/project_equipment_budget'
import { defineEmits } from "vue"
// 查询条件
const queryParams = reactive({
// name: ''
});
const { dictData } = useDictData('supplier_grade,supplier_group,supplier_category,sex')
// 选中数据
const emits = defineEmits(["customEvent"]);
// 选中数据子父传递
const handleCurrentChange = (value: any) => {
emits("customEvent", value);
};
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiProjectEquipmentBudgetLists,
params: queryParams,
});
getLists();
</script>