2023-11-27 19:05:43 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<el-card class="!border-none mb-4" shadow="never">
|
2023-12-26 18:24:54 +08:00
|
|
|
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
2024-03-12 17:25:47 +08:00
|
|
|
<el-form-item label="报价单" prop="quotation_id">
|
2024-01-05 09:52:03 +08:00
|
|
|
<el-select class="w-[280px]" v-model="queryParams.quotation_id" clearable placeholder="请选择税率">
|
2023-11-27 19:05:43 +08:00
|
|
|
<el-option label="全部" value=""></el-option>
|
2024-03-12 17:25:47 +08:00
|
|
|
<el-option v-for="(item, index) in quotationList" :key="index" :label="item.code"
|
|
|
|
:value="item.id" />
|
2023-11-27 19:05:43 +08:00
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
2024-01-05 09:52:03 +08:00
|
|
|
|
2023-11-27 19:05:43 +08:00
|
|
|
<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">
|
|
|
|
<div class="mt-4">
|
|
|
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" />
|
2023-12-29 10:20:25 +08:00
|
|
|
<el-table-column label="序号" type="index" width="55" />
|
2024-01-05 09:52:03 +08:00
|
|
|
<el-table-column label="报价单号" prop="quotation_code" show-overflow-tooltip />
|
|
|
|
<el-table-column label="客户名称" prop="custom_name" show-overflow-tooltip />
|
|
|
|
<el-table-column label="制单人" prop="quotation_create_user" show-overflow-tooltip />
|
|
|
|
<el-table-column label="报价日期" prop="quotation_date" show-overflow-tooltip />
|
|
|
|
<el-table-column label="产品类别" prop="product_first_level_name" show-overflow-tooltip />
|
|
|
|
<el-table-column label="产品中类" prop="product_second_level_name" show-overflow-tooltip />
|
|
|
|
<el-table-column label="产品小类" prop="product_three_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" 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-column label="添加人" prop="product_num" show-overflow-tooltip /> -->
|
|
|
|
<el-table-column label="创建日期" prop="create_time" show-overflow-tooltip />
|
2023-11-27 19:05:43 +08:00
|
|
|
<el-table-column label="备注" prop="remark" show-overflow-tooltip />
|
|
|
|
</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="quotationDetailLists">
|
|
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
|
|
import { useDictData } from '@/hooks/useDictOptions'
|
2024-01-05 09:52:03 +08:00
|
|
|
import { apiQuotationLists } from '@/api/quotation'
|
|
|
|
import { apiQuotationDetailLists } from '@/api/quotation_detail'
|
2023-11-27 19:05:43 +08:00
|
|
|
import { timeFormat } from '@/utils/util'
|
|
|
|
import feedback from '@/utils/feedback'
|
2024-01-05 09:52:03 +08:00
|
|
|
// import EditPopup from './edit.vue'
|
2023-11-27 19:05:43 +08:00
|
|
|
|
2024-01-05 09:52:03 +08:00
|
|
|
// const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
2023-11-27 19:05:43 +08:00
|
|
|
// 是否显示编辑框
|
|
|
|
const showEdit = ref(false)
|
2024-01-05 09:52:03 +08:00
|
|
|
const quotationList = ref([])
|
2023-11-27 19:05:43 +08:00
|
|
|
|
|
|
|
// 查询条件
|
|
|
|
const queryParams = reactive({
|
|
|
|
quotation_id: '',
|
2024-01-05 09:52:03 +08:00
|
|
|
|
2023-11-27 19:05:43 +08:00
|
|
|
})
|
|
|
|
|
2024-01-05 09:52:03 +08:00
|
|
|
//获取报价单数据
|
|
|
|
const quotationlist = () => {
|
|
|
|
apiQuotationLists({ page_no: 1, page_size: 9995 }).then((res) => {
|
|
|
|
quotationList.value = res.lists
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-11-27 19:05:43 +08:00
|
|
|
// 选中数据
|
|
|
|
const selectData = ref<any[]>([])
|
|
|
|
|
|
|
|
// 表格选择后回调事件
|
|
|
|
const handleSelectionChange = (val: any[]) => {
|
|
|
|
selectData.value = val.map(({ id }) => id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 获取字典数据
|
|
|
|
const { dictData } = useDictData('tax_rate')
|
|
|
|
|
|
|
|
// 分页相关
|
|
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
|
|
fetchFun: apiQuotationDetailLists,
|
|
|
|
params: queryParams
|
|
|
|
})
|
|
|
|
|
2024-01-05 09:52:03 +08:00
|
|
|
// // 添加
|
|
|
|
// const handleAdd = async () => {
|
|
|
|
// showEdit.value = true
|
|
|
|
// await nextTick()
|
|
|
|
// editRef.value?.open('add')
|
|
|
|
// }
|
2023-11-27 19:05:43 +08:00
|
|
|
|
2024-01-05 09:52:03 +08:00
|
|
|
// // 编辑
|
|
|
|
// const handleEdit = async (data: any) => {
|
|
|
|
// showEdit.value = true
|
|
|
|
// await nextTick()
|
|
|
|
// editRef.value?.open('edit')
|
|
|
|
// editRef.value?.setFormData(data)
|
|
|
|
// }
|
2023-11-27 19:05:43 +08:00
|
|
|
|
2024-01-05 09:52:03 +08:00
|
|
|
// // 删除
|
|
|
|
// const handleDelete = async (id: number | any[]) => {
|
|
|
|
// await feedback.confirm('确定要删除?')
|
|
|
|
// await apiQuotationDetailDelete({ id })
|
|
|
|
// getLists()
|
|
|
|
// }
|
|
|
|
quotationlist()
|
2023-11-27 19:05:43 +08:00
|
|
|
getLists()
|
|
|
|
</script>
|