2024-04-12 16:33:50 +08:00

181 lines
8.0 KiB
Vue

<template>
<div>
<el-card class="!border-none mb-4" shadow="never">
<el-form class="mb-[-16px]" :model="queryParams" inline>
<el-form-item label="单据编号" prop="code">
<el-input class="w-[280px]" v-model="queryParams.code" clearable placeholder="请输入单据编号" />
</el-form-item>
<el-form-item label="审批部门" prop="approve_dept">
<el-select v-model="queryParams.approve_dept" placeholder="请选择部门" class="flex-1">
<el-option :label="item.name" :value="item.id" v-for="item in deptList">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="费用类别" prop="cost_type">
<el-select v-model="queryParams.cost_type" placeholder="请选择费用类别" class="flex-1">
<el-option :label="item.name" :value="parseInt(item.value)" v-for="item in dictData.cost_type">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="支付方式" prop="pay_type">
<el-select v-model="queryParams.pay_type" placeholder="请选择支付方式" class="flex-1">
<el-option :label="item.name" :value="parseInt(item.value)"
v-for="item in dictData.financial_pay_type">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="付往单位" prop="accept_company">
<el-input class="w-[280px]" v-model="queryParams.accept_company" 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">
<el-button v-perms="['financial.financial_using_funds/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<el-button v-perms="['financial.financial_using_funds/delete']" :disabled="!selectData.length"
@click="handleDelete(selectData)">
删除
</el-button>
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange" border>
<el-table-column type="selection" width="55" />
<el-table-column :render-header="pager.calcWidth" label="支出合同" prop="contract_name"
show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="单据编号" prop="code" show-overflow-tooltip />
<el-table-column label="审批部门" prop="approve_dept_name" show-overflow-tooltip />
<el-table-column label="费用类别" prop="cost_type_text" show-overflow-tooltip />
<el-table-column label="支付方式" prop="pay_type_text" show-overflow-tooltip />
<el-table-column label="付款原因" prop="pay_reason" show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="签订金额" prop="contract_money"
show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="已支付金额" prop="has_pay_amount"
show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="本次支付金额" prop="this_pay_amount"
show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="付往单位" prop="accept_company" show-overflow-tooltip />
<el-table-column :render-header="pager.calcWidth" label="收款账号" prop="accept_acount"
show-overflow-tooltip />
<el-table-column label="事由" prop="content" show-overflow-tooltip />
<el-table-column label="申请人" prop="create_user" show-overflow-tooltip />
<el-table-column label="申请日期" prop="create_time" show-overflow-tooltip />
<el-table-column label="操作" width="170" fixed="right">
<template #default="{ row }">
<el-button v-perms="['financial.financial_using_funds/edit']" type="primary" link
@click="handleEdit(row)">
编辑
</el-button>
<el-button v-perms="['financial.financial_using_funds/delete']" type="danger" link
@click="handleDelete(row.id)">
删除
</el-button>
<el-button v-perms="['financial.financial_using_funds/detail']" link
@click="handleDetail(row.id)">
详情
</el-button>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
<detailPage v-if="showDetail" ref="detailRef" @close="showDetail = false" :detailConfig="detailConfig" />
</div>
</template>
<script lang="ts" setup name="financialUsingFundsLists">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiFinancialUsingFundsLists, apiFinancialUsingFundsDelete, apiFinancialUsingFundsDetail } from '@/api/financial_using_funds'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
import detailConfig from './detail'
import { deptLists } from "@/api/org/department"
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const detailRef = ref('')
// 是否显示编辑框
const showEdit = ref(false)
const showDetail = ref(false)
// 查询条件
const queryParams = reactive({
code: '',
approve_dept: '',
cost_type: '',
pay_type: '',
accept_company: '',
create_user: ''
})
// 选中数据
const selectData = ref<any[]>([])
// 表格选择后回调事件
const handleSelectionChange = (val: any[]) => {
selectData.value = val.map(({ id }) => id)
}
// 获取字典数据
const { dictData } = useDictData('cost_type,financial_pay_type,subject_category')
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiFinancialUsingFundsLists,
params: queryParams
})
// 添加
const handleAdd = async () => {
showEdit.value = true
await nextTick()
editRef.value?.open('add')
}
// 编辑
const handleEdit = async (data: any) => {
let res = await apiFinancialUsingFundsDetail({ id: data.id })
showEdit.value = true
await nextTick()
editRef.value?.open('edit')
editRef.value?.setFormData(res)
}
// 删除
const handleDelete = async (id: number | any[]) => {
await feedback.confirm('确定要删除?')
await apiFinancialUsingFundsDelete({ id })
getLists()
}
// 详情
const handleDetail = async (id: any) => {
let res = await apiFinancialUsingFundsDetail({ id })
showDetail.value = true
await nextTick()
detailRef.value?.open()
detailRef.value?.setFormData(res)
}
const deptList = ref([])
const getDeptList = async () => {
let res = await deptLists()
deptList.value = res.lists
}
getDeptList()
getLists()
</script>