2024-03-25 18:03:23 +08:00

198 lines
7.6 KiB
Vue

<template>
<div class="detail-popup">
<popup ref="popupRef" title="报价单详情" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
<el-form ref="formRef" :model="formData" label-width="120px">
<el-card class="mb-2">
<el-descriptions :column="2" border>
<el-descriptions-item label="客户名称" label-align="left" align="left" label-class-name="my-label">{{
formData.custom_name }}</el-descriptions-item>
<el-descriptions-item label="报价日期" label-align="left" align="left" label-class-name="my-label">
{{
formData.quotation_date }}</el-descriptions-item>
<el-descriptions-item label="联系人" label-align="left" align="left" label-class-name="my-label">
{{
formData.custom_master_name }}</el-descriptions-item>
<el-descriptions-item label="联系电话" label-align="left" align="left" label-class-name="my-label">
{{ formData.custom_master_phone }}
</el-descriptions-item>
<el-descriptions-item label="制单人" label-align="left" align="left" label-class-name="my-label">
{{
formData.create_user
}}
</el-descriptions-item>
<el-descriptions-item label="发票类型" label-align="left" align="left" label-class-name="my-label">
{{
formData.invoice_type_text
}}</el-descriptions-item>
<el-descriptions-item label="订单金额" label-align="left" align="left" label-class-name="my-label">
{{
formData.amount_including_tax
}}</el-descriptions-item>
<el-descriptions-item label="运费" label-align="left" align="left" label-class-name="my-label"> {{
formData.freight
}}</el-descriptions-item>
<el-descriptions-item label="其它费用" label-align="left" align="left" label-class-name="my-label">
{{
formData.other_fee
}}</el-descriptions-item>
<el-descriptions-item label="合计金额" label-align="left" align="left" label-class-name="my-label">
{{
formData.total_amount }}</el-descriptions-item>
<el-descriptions-item label="客户需求" label-align="left" align="left" label-class-name="my-label">
{{
formData.customer_require
}}</el-descriptions-item>
<el-descriptions-item label="备注" label-align="left" align="left" label-class-name="my-label"> {{
formData.remark
}}</el-descriptions-item>
<el-descriptions-item label="附件" label-align="left" align="left" label-class-name="my-label">
<annexLink :annex="formData.annex"></annexLink>
</el-descriptions-item>
</el-descriptions>
<div class="tit">报价明细</div>
<el-row>
<el-table :data="quotationList">
<el-table-column label="产品类别" prop="product_first_level_name" show-overflow-tooltip />
<el-table-column label="产品名称" prop="product_name" show-overflow-tooltip />
<el-table-column label="产品编码" prop="product_code" show-overflow-tooltip />
<el-table-column label="规格型号" prop="product_specs" show-overflow-tooltip />
<el-table-column label="品牌" prop="product_brand" show-overflow-tooltip />
<el-table-column label="参数说明" prop="product_parameter_description" show-overflow-tooltip />
<el-table-column label="单位" prop="product_unit" show-overflow-tooltip />
<el-table-column label="数量" prop="num" show-overflow-tooltip />
<el-table-column label="税率" prop="tax_rate_text" show-overflow-tooltip />
<el-table-column label="含税单价" prop="tax_inclusive_price" show-overflow-tooltip />
<el-table-column label="不含税金额" prop="tax_exclusive_amount" show-overflow-tooltip />
<el-table-column label="含税金额" prop="tax_inclusive_amount" show-overflow-tooltip />
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
</el-table>
<div style="margin: 10px 0;">
<el-pagination v-model:current-page="pager.page_no" v-model:page-size="pager.page_size"
:page-sizes="[10, 20, 30, 40]" layout="total, sizes, prev, pager, next, jumper"
:total="total" @size-change="handleSizeChange" @current-change="handleCurrentChange" />
</div>
</el-row>
</el-card>
</el-form>
</popup>
</div>
</template>
<script lang="ts" setup name="customdetail">
import type { FormInstance } from 'element-plus'
import Popup from '@/components/popup/index.vue'
import { apiCustomDetail } from '@/api/custom'
import { timeFormat } from '@/utils/util'
import { apiQuotationDetailLists } from '@/api/quotation_detail'
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 quotationList = ref([])
const datas = reactive({
provinceOptions: [],
cityOptions: [],
areaOptions: [],
});
const pager = reactive({
page_size: 10,
page_no: 1,
quotation_id: ""
})
//条数
const handleSizeChange = (val: number) => {
pager.page_size = val
quotationlist()
}
//分页
const handleCurrentChange = (val: number) => {
pager.page_no = val
quotationlist()
}
const total = ref(0)
// 表单数据
const formData = reactive({
})
//获取报价明细
const quotationlist = () => {
apiQuotationDetailLists(pager).then((res) => {
quotationList.value = res.lists
total.value = res.count
})
}
// 获取详情
const setFormData = async (data: Record<any, any>) => {
pager.quotation_id = data.id
Object.assign(formData, data)
quotationlist()
}
const getDetail = async (row: Record<string, any>) => {
const data = await apiCustomDetail({
id: row.id
})
setFormData(data)
}
// 提交按钮
const handleSubmit = async () => {
popupRef.value?.close()
}
//打开弹窗
const open = () => {
popupRef.value?.open()
}
// 关闭回调
const handleClose = () => {
emit('close')
}
defineExpose({
open,
setFormData,
getDetail
})
</script>
<style lang="scss" scoped>
.tit {
font-size: 1.2em;
margin: 10px 0;
}
:deep(.my-label) {
width: 150px;
}
</style>