82 lines
4.1 KiB
Vue
82 lines
4.1 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="报价单号" prop="quotation_id">
|
|
<selectRemote :formData="queryParams" model="quotation_id" :api="apiQuotationSearch" />
|
|
</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">
|
|
<div class="mt-4">
|
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column label="序号" type="index" width="55" />
|
|
<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="create_time" 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'
|
|
import { apiQuotationSearch } from '@/api/quotation'
|
|
import { apiQuotationDetailLists } from '@/api/quotation_detail'
|
|
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false)
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
quotation_id: '',
|
|
})
|
|
|
|
// 选中数据
|
|
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
|
|
})
|
|
|
|
getLists()
|
|
</script>
|