2024-01-17 18:12:40 +08:00

86 lines
3.4 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.contract_no" 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="supplier_name" show-overflow-tooltip />
<el-table-column label="项目名称" prop="project_name" show-overflow-tooltip />
<el-table-column label="合同编号" prop="contract_no" show-overflow-tooltip />
<el-table-column label="计划付款日期" prop="pay_date" show-overflow-tooltip />
<el-table-column label="金额" prop="amount" show-overflow-tooltip />
<el-table-column label="期次" prop="period" show-overflow-tooltip>
<template #default="{ row }">
<dict-value :options="dictData.pay_period" :value="row.period" />
</template>
</el-table-column>
<el-table-column label="状态" prop="period" show-overflow-tooltip>
<template #default="{ row }">
<dict-value :options="dictData.pay_status" :value="row.status" />
</template>
</el-table-column>
<el-table-column label="已付款" prop="refunder" show-overflow-tooltip />
<el-table-column label="未付款" prop="refunder" show-overflow-tooltip />
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
</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 { paymentplanLists } from '@/api/paymentplan'
import { defineEmits, defineProps } from "vue"
import { timeFormat } from '@/utils/util'
const props = defineProps({
contract_id: Number
})
// 查询条件
const queryParams = reactive({
status: 1,
contract_id: props.contract_id
});
// 获取字典数据
const { dictData } = useDictData('pay_status,pay_period')
// 选中数据
const emits = defineEmits(["customEvent"]);
// 选中数据子父传递
const handleCurrentChange = (value: any) => {
emits("customEvent", value);
};
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: paymentplanLists,
params: queryParams,
});
getLists();
</script>