163 lines
7.3 KiB
Vue
163 lines
7.3 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="购买标书id" prop="buy_bidding_document_id">
|
||
|
<el-input class="w-[280px]" v-model="queryParams.buy_bidding_document_id" clearable placeholder="请输入购买标书id" />
|
||
|
</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="['bid.bid_document_examination/add']" type="primary" @click="handleAdd">
|
||
|
<template #icon>
|
||
|
<icon name="el-icon-Plus" />
|
||
|
</template>
|
||
|
新增
|
||
|
</el-button>
|
||
|
<el-button
|
||
|
v-perms="['bid.bid_document_examination/delete']"
|
||
|
:disabled="!selectData.length"
|
||
|
@click="handleDelete(selectData)"
|
||
|
>
|
||
|
删除
|
||
|
</el-button>
|
||
|
<div class="mt-4">
|
||
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
||
|
<el-table-column type="selection" width="55" />
|
||
|
<el-table-column label="审批id" prop="approve_id" show-overflow-tooltip />
|
||
|
<el-table-column label="购买标书id" prop="buy_bidding_document_id" show-overflow-tooltip />
|
||
|
<el-table-column label="是否需要保证金" prop="is_need_deposit">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.whether_status" :value="row.is_need_deposit" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="开标日期" prop="bid_opening_date">
|
||
|
<template #default="{ row }">
|
||
|
<span>{{ row.bid_opening_date ? timeFormat(row.bid_opening_date, 'yyyy-mm-dd hh:MM:ss') : '' }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="保证金退还时间" prop="deposit_refund_time">
|
||
|
<template #default="{ row }">
|
||
|
<span>{{ row.deposit_refund_time ? timeFormat(row.deposit_refund_time, 'yyyy-mm-dd hh:MM:ss') : '' }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="招标项目概况" prop="bidding_project_overview" show-overflow-tooltip />
|
||
|
<el-table-column label="项目简介" prop="project_introduction" show-overflow-tooltip />
|
||
|
<el-table-column label="附件" prop="annex" show-overflow-tooltip />
|
||
|
<el-table-column label="技术协议偏差" prop="technical_protocol_deviation" show-overflow-tooltip />
|
||
|
<el-table-column label="协议偏差处理方案" prop="protocol_deviation_handling_plan" show-overflow-tooltip />
|
||
|
<el-table-column label="技术审查附件" prop="technical_review_annex" show-overflow-tooltip />
|
||
|
<el-table-column label="总金额" prop="business_review_total_amount" show-overflow-tooltip />
|
||
|
<el-table-column label="税率" prop="tax_rate">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.tax_rate" :value="row.tax_rate" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="付款方式" prop="pay_type">
|
||
|
<template #default="{ row }">
|
||
|
<dict-value :options="dictData.pay_type" :value="row.pay_type" />
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="付款比例" prop="pay_rate" show-overflow-tooltip />
|
||
|
<el-table-column label="商务合同偏差" prop="business_contract_deviation" show-overflow-tooltip />
|
||
|
<el-table-column label="偏差处理方案" prop="business_contract_deviation_handling_plan" show-overflow-tooltip />
|
||
|
<el-table-column label="商务审查附件" prop="business_contract_deviation_annex" show-overflow-tooltip />
|
||
|
<el-table-column label="操作" width="120" fixed="right">
|
||
|
<template #default="{ row }">
|
||
|
<el-button
|
||
|
v-perms="['bid.bid_document_examination/edit']"
|
||
|
type="primary"
|
||
|
link
|
||
|
@click="handleEdit(row)"
|
||
|
>
|
||
|
编辑
|
||
|
</el-button>
|
||
|
<el-button
|
||
|
v-perms="['bid.bid_document_examination/delete']"
|
||
|
type="danger"
|
||
|
link
|
||
|
@click="handleDelete(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" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup name="bidDocumentExaminationLists">
|
||
|
import { usePaging } from '@/hooks/usePaging'
|
||
|
import { useDictData } from '@/hooks/useDictOptions'
|
||
|
import { apiBidDocumentExaminationLists, apiBidDocumentExaminationDelete } from '@/api/bid_document_examination'
|
||
|
import { timeFormat } from '@/utils/util'
|
||
|
import feedback from '@/utils/feedback'
|
||
|
import EditPopup from './edit.vue'
|
||
|
|
||
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||
|
// 是否显示编辑框
|
||
|
const showEdit = ref(false)
|
||
|
|
||
|
|
||
|
// 查询条件
|
||
|
const queryParams = reactive({
|
||
|
buy_bidding_document_id: ''
|
||
|
})
|
||
|
|
||
|
// 选中数据
|
||
|
const selectData = ref<any[]>([])
|
||
|
|
||
|
// 表格选择后回调事件
|
||
|
const handleSelectionChange = (val: any[]) => {
|
||
|
selectData.value = val.map(({ id }) => id)
|
||
|
}
|
||
|
|
||
|
// 获取字典数据
|
||
|
const { dictData } = useDictData('whether_status,tax_rate,pay_type')
|
||
|
|
||
|
// 分页相关
|
||
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
||
|
fetchFun: apiBidDocumentExaminationLists,
|
||
|
params: queryParams
|
||
|
})
|
||
|
|
||
|
// 添加
|
||
|
const handleAdd = async () => {
|
||
|
showEdit.value = true
|
||
|
await nextTick()
|
||
|
editRef.value?.open('add')
|
||
|
}
|
||
|
|
||
|
// 编辑
|
||
|
const handleEdit = async (data: any) => {
|
||
|
showEdit.value = true
|
||
|
await nextTick()
|
||
|
editRef.value?.open('edit')
|
||
|
editRef.value?.setFormData(data)
|
||
|
}
|
||
|
|
||
|
// 删除
|
||
|
const handleDelete = async (id: number | any[]) => {
|
||
|
await feedback.confirm('确定要删除?')
|
||
|
await apiBidDocumentExaminationDelete({ id })
|
||
|
getLists()
|
||
|
}
|
||
|
|
||
|
getLists()
|
||
|
</script>
|
||
|
|