123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import { ContentConfig } from "/@/components/PageContent";
- import { httpList } from "/@/api/invoiceInOut/productManager";
- import { cg_order_type_options, statusList } from "/@/utils/status";
- import { ElTag } from "element-plus";
- import { h } from "vue";
- const columns = [
- {
- width: 40,
- type: 'selection',
- fixed: 'left'
- },
- {
- label: '商品ID',
- prop: 'id',
- width: 60
- },
- {
- label: "商品编码",
- prop: "skuCode",
- width: 150
- },
- {
- label: "销售方公司",
- prop: "seller_name",
- width: 160
- },
- {
- label: "购买方公司",
- prop: "buyer_name",
- width: 160
- },
- {
- label: '商品类型',
- width: 100,
- cellRenderer({ row }){
- return h(ElTag, { size: 'small' }, {
- default: () => cg_order_type_options.find(item => item.value == row.good_type)?.label || '--'
- })
- }
- },
- {
- label: '商品名称',
- prop: 'goodName',
- width: 150
- },
- {
- label: "规格",
- prop: "spec",
- width: 80
- },
- {
- label: "单位",
- prop: "unit",
- width: 80
- },
- {
- label: '结存数',
- prop: 'residue_stock',
- width: 100
- },
- {
- label: "状态",
- prop: "status",
- width: 80,
- cellRenderer({ row }){
- return h(
- ElTag,
- { size: 'small', type: statusList.find(item => item.value == row.status)?.type || 'warning' },
- { default: () => statusList.find(item => item.value == row.status)?.label || '--' }
- )
- }
- },
- {
- label: '税前单价',
- prop: 'subunit_price',
- width: 100
- },
- {
- label: '税后单价',
- prop: 'unit_price',
- width: 100
- },
- {
- label: '重量',
- prop: 'unit_weight',
- width: 80
- },
- {
- label: '分光',
- prop: 'spectral',
- width: 80
- },
- {
- label: '创建人',
- prop: 'apply_name',
- width: 80
- },
- {
- label:'创建时间',
- prop: 'create_time',
- width: 140
- }
- ];
- const contentConfig: ContentConfig = {
- columns,
- companyProp: 'buyer_code',
- apis: {
- httpList: (parameter = {}) => httpList({ ...parameter, status: '1' })
- }
- };
- export default contentConfig;
|