174 lines
6.6 KiB
Vue
174 lines
6.6 KiB
Vue
<template>
|
|
<div class="edit-popup">
|
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
|
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
|
|
<el-row>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目名称" prop="bid_document_examination_id" :rules="[{ required: true, message: '不可为空', trigger: 'blur' }]" @click="showDialog = true">
|
|
<el-input v-model="project_name" readonly clearable placeholder="请输入" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目编码" prop="bid_document_examination_id" :rules="[{ required: true, message: '不可为空', trigger: 'blur' }]">
|
|
<el-input v-model="project_code" clearable readonly placeholder="请输入" />
|
|
</el-form-item></el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="客户名称" prop="bid_document_examination_id" :rules="[{ required: true, message: '不可为空', trigger: 'blur' }]">
|
|
<el-input v-model="matsname" clearable readonly placeholder="请输入" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<!-- @click="showDialog1 = true" -->
|
|
<el-form-item label="产品id" prop="product_id">
|
|
<el-input v-model="formData.product_id" readonly clearable placeholder="请输入产品id" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="产品数量" prop="product_num">
|
|
<el-input v-model="formData.product_num" clearable placeholder="请输入产品数量" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="成本单价" prop="cost_unit_price">
|
|
<el-input v-model="formData.cost_unit_price" clearable placeholder="请输入成本单价" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="金额" prop="amount">
|
|
<el-input v-model="formData.amount" clearable placeholder="请输入金额" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="点数" prop="rate">
|
|
<el-input v-model="formData.rate" clearable placeholder="请输入点数" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="报价单价" prop="unit_price">
|
|
<el-input v-model="formData.unit_price" clearable placeholder="请输入报价单价" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="报价金额" prop="total_amount">
|
|
<el-input v-model="formData.total_amount" clearable placeholder="请输入报价金额" />
|
|
</el-form-item></el-col><el-col :span="8">
|
|
<el-form-item label="" prop="create_user">
|
|
<el-input v-model="formData.create_user" clearable placeholder="请输入" />
|
|
</el-form-item></el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</popup>
|
|
<el-dialog v-model="showDialog" title="选择标书" width="70%">
|
|
<biddocumentTable @customEvent="customEvent"></biddocumentTable>
|
|
|
|
</el-dialog>
|
|
<el-dialog v-model="showDialog1" title="选择产品" width="70%">
|
|
<prodctTable @customEvent="customEvent1"></prodctTable>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="bidDocumentExaminationDetailEdit">
|
|
import type { FormInstance } from 'element-plus'
|
|
import Popup from '@/components/popup/index.vue'
|
|
import biddocumentTable from "@/components/biddocument/index.vue"
|
|
import prodctTable from "@/components/product/index.vue"
|
|
import { apiBidDocumentExaminationDetailAdd, apiBidDocumentExaminationDetailEdit, apiBidDocumentExaminationDetailDetail } from '@/api/bid_document_examination_detail'
|
|
import { timeFormat } from '@/utils/util'
|
|
import projectTable from "@/components/project/index.vue"
|
|
import type { PropType } from 'vue'
|
|
defineProps({
|
|
dictData: {
|
|
type: Object as PropType<Record<string, any[]>>,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
const matsname = ref('')
|
|
const project_name = ref('')
|
|
const project_code = ref('')
|
|
const emit = defineEmits(['success', 'close'])
|
|
const formRef = shallowRef<FormInstance>()
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const mode = ref('add')
|
|
const showDialog = ref(false)
|
|
const showDialog1 = ref(false)
|
|
// 弹窗标题
|
|
const popupTitle = computed(() => {
|
|
return mode.value == 'edit' ? '编辑标书审查-报价明细' : '新增标书审查-报价明细'
|
|
})
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
id: '',
|
|
bid_document_examination_id: '',
|
|
product_id: '',
|
|
product_num: '',
|
|
cost_unit_price: '',
|
|
amount: '',
|
|
rate: '',
|
|
unit_price: '',
|
|
total_amount: '',
|
|
create_user: '',
|
|
})
|
|
|
|
|
|
// 表单验证
|
|
const formRules = reactive<any>({
|
|
|
|
})
|
|
|
|
//获取值
|
|
const customEvent = (e: any) => {
|
|
formData.bid_document_examination_id = e.id;
|
|
matsname.value = e.person
|
|
project_name.value = e.custom_name
|
|
project_code.value = e.project_code
|
|
showDialog.value = false;
|
|
|
|
|
|
};
|
|
//获取值
|
|
const customEvent1 = (e: any) => {
|
|
// formData.buy_bidding_document_id = e.id;
|
|
|
|
showDialog1.value = false;
|
|
|
|
|
|
};
|
|
// 获取详情
|
|
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 apiBidDocumentExaminationDetailDetail({
|
|
id: row.id
|
|
})
|
|
setFormData(data)
|
|
}
|
|
|
|
|
|
// 提交按钮
|
|
const handleSubmit = async () => {
|
|
await formRef.value?.validate()
|
|
const data = { ...formData, }
|
|
mode.value == 'edit'
|
|
? await apiBidDocumentExaminationDetailEdit(data)
|
|
: await apiBidDocumentExaminationDetailAdd(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>
|