123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- const columns = [
- {
- type: "selection",
- fixed: "left",
- _noset_: true
- },
- {
- prop: "cgdNo",
- label: "报备单编号",
- width: "155px",
- },
- {
- prop: "spuCode",
- label: "商品分类",
- width: "158px",
- },
- {
- prop: "good_name",
- label: "商品名称",
- _slot_: "good_name",
- 'min-width': "145px",
- },
- {
- prop: "good_price",
- label: "销售数量",
- width: "110px",
- },
- {
- prop: "good_num",
- label: "商品主图",
- width: "110px",
- },
- {
- prop: "total_fee",
- label: "采购价",
- width: "110px",
- },
- {
- prop: "status",
- label: "销售价",
- width: "120px",
- },
- {
- prop: "order_id",
- label: "总服务费",
- width: "110px"
- },
- {
- prop: "lasttime",
- label: "企业客户名称",
- width: "145px",
- },
- {
- prop: "addtime",
- label: "企业客户编号",
- width: "145px",
- },
- {
- prop: "addtime",
- label: "状态",
- width: "145px",
- },
- {
- prop: "",
- label: "操作",
- fixed: "right",
- _noset_: true,
- width: "50px",
- _slot_: "operation",
- },
- ]
- const statusOptions = [
- { value: "0", label: "待确认" },
- { value: "1", label: "待入库" },
- { value: "2", label: "部分入库" },
- { value: "3", label: "入库完成" },
- { value: "4", label: "已取消订单" },
- ];
- const showColumns= [
- {
- prop: "cgdNo",
- label: "销售订单编号",
- span: 6
- },
- {
- prop: "status",
- label: "销售订单状态",
- _slot_: "status",
- span: 6
- },
- {
- prop: "order_type",
- label: "销售订单来源",
- _slot_: "order_type",
- span: 6
- },
- {
- prop: "lasttime",
- label: "要求入库时间",
- span: 6
- },
-
- {
- prop: "supplier_name",
- label: "销售方公司",
- _slot_: "supplier_name",
- },
- {
- prop: "company",
- label: "购买方公司",
- _slot_: "company",
- },
- // {
- // prop: "wsm",
- // label: "仓库信息",
- // _slot_: "wsm",
- // },
-
-
-
- {
- prop: "total_fee",
- label: "采购总成本",
- span: 8
- },
- {
- prop: "good_price",
- label: "销售订单价",
- span: 8
- },
- {
- prop: "good_num",
- label: "采购总数量",
- span: 8
- },
- {
- prop: "send_num",
- label: "已发货数量",
- span: 8
- },
- {
- prop: "wsend_num",
- label: "未发货数量",
- span: 8
- },
- {
- prop: "addtime",
- label: "创建时间",
- span: 8
- },
- // {
- // prop: "gold_price",
- // label: "当前实时金价",
- // _slot_: "gold_price",
- // span: 12
- // },
- // {
- // prop: "customer",
- // label: "订单客户名称",
- // _slot_: "customer",
- // span: 12
- // },
- {
- prop: "addr_info",
- label: "收货信息",
- _slot_: "addr_info",
- span: 24
- },
- ]
- export { columns, statusOptions,showColumns }
|