161 lines
5.2 KiB
Vue
161 lines
5.2 KiB
Vue
<template>
|
|
<div class="edit-popup">
|
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="550px" @confirm="handleSubmit" @close="handleClose">
|
|
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
|
<el-form-item label="标书审查id" prop="bid_document_examination_id" @click="showDialog = true">
|
|
<el-input v-model="formData.bid_document_examination_id" clearable placeholder="点击选择标书评审(可以为空)" />
|
|
</el-form-item>
|
|
<el-form-item label="项目名称" prop="project_id">
|
|
<el-input v-model="project_name" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
<el-form-item label="项目编码" prop="project_id">
|
|
<el-input v-model="project_code" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
<el-form-item label="客户名称" prop="project_id">
|
|
<el-input v-model="project_matername" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
|
|
<el-form-item label="是否中标" prop="is_successful">
|
|
<el-select v-model="formData.is_successful" clearable placeholder="请选择是否中标">
|
|
<el-option v-for="(item, index) in dictData.whether_status" :key="index" :label="item.name" :value="parseInt(item.value)" />
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="中标单位" prop="bidder">
|
|
<el-input v-model="formData.bidder" clearable placeholder="请输入中标单位" />
|
|
</el-form-item>
|
|
<el-form-item label="中标金额" prop="bidder_amount">
|
|
<el-input v-model="formData.bidder_amount" clearable placeholder="请输入中标金额" />
|
|
</el-form-item>
|
|
<el-form-item label="中标金额大写" prop="bidder_amount_daxie">
|
|
<el-input v-model="formData.bidder_amount_daxie" clearable placeholder="请输入中标金额大写" />
|
|
</el-form-item>
|
|
<el-form-item label="投标总结" prop="bid_summary">
|
|
<el-input v-model="formData.bid_summary" clearable placeholder="请输入投标总结" />
|
|
</el-form-item>
|
|
<el-form-item label="附件" prop="annex">
|
|
<el-input v-model="formData.annex" clearable placeholder="请输入附件" />
|
|
</el-form-item>
|
|
</el-form>
|
|
</popup>
|
|
<el-dialog v-model="showDialog" title="选择标书审查" width="70%">
|
|
<biddocumentTable @customEvent="customEvent"></biddocumentTable>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="bidResultEdit">
|
|
import type { FormInstance } from 'element-plus'
|
|
import Popup from '@/components/popup/index.vue'
|
|
import biddocumentTable from "@/components/document_examination/index.vue"
|
|
import { apiBidResultAdd, apiBidResultEdit, apiBidResultDetail } from '@/api/bid_result'
|
|
import { timeFormat } from '@/utils/util'
|
|
import type { PropType } from 'vue'
|
|
defineProps({
|
|
dictData: {
|
|
type: Object as PropType<Record<string, any[]>>,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
const emit = defineEmits(['success', 'close'])
|
|
const formRef = shallowRef<FormInstance>()
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const mode = ref('add')
|
|
const project_matername = ref('')
|
|
const project_name = ref('')
|
|
const project_code = ref('')
|
|
const showDialog = ref(false)
|
|
// 弹窗标题
|
|
const popupTitle = computed(() => {
|
|
return mode.value == 'edit' ? '编辑投标结果' : '新增投标结果'
|
|
})
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
id: '',
|
|
bid_document_examination_id: '',
|
|
project_id: '',
|
|
is_successful: '',
|
|
bidder: '',
|
|
bidder_amount: '',
|
|
bidder_amount_daxie: '',
|
|
bid_summary: '',
|
|
annex: '',
|
|
})
|
|
|
|
|
|
// 表单验证
|
|
const formRules = reactive<any>({
|
|
|
|
})
|
|
|
|
//获取值
|
|
const customEvent = (e: any) => {
|
|
formData.buy_bidding_document_id = e.id;
|
|
|
|
bidding_name.value = e.custom_name
|
|
|
|
|
|
};
|
|
//获取值
|
|
const customEvent1 = (e: any) => {
|
|
formData.buy_bidding_document_id = e.id;
|
|
|
|
bidding_name.value = e.custom_name
|
|
|
|
|
|
};
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
for (const key in formData) {
|
|
if (data[key] != null && data[key] != undefined) {
|
|
//@ts-ignore
|
|
formData[key] = data[key]
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
const getDetail = async (row: Record<string, any>) => {
|
|
const data = await apiBidResultDetail({
|
|
id: row.id
|
|
})
|
|
setFormData(data)
|
|
}
|
|
|
|
|
|
// 提交按钮
|
|
const handleSubmit = async () => {
|
|
await formRef.value?.validate()
|
|
const data = { ...formData, }
|
|
mode.value == 'edit'
|
|
? await apiBidResultEdit(data)
|
|
: await apiBidResultAdd(data)
|
|
popupRef.value?.close()
|
|
emit('success')
|
|
}
|
|
|
|
//打开弹窗
|
|
const open = (type = 'add') => {
|
|
mode.value = type
|
|
popupRef.value?.open()
|
|
}
|
|
|
|
// 关闭回调
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
open,
|
|
setFormData,
|
|
getDetail
|
|
})
|
|
</script>
|