123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- const columns = [
-
-
-
-
-
-
- {
- type: 'selection',
- fixed: 'left',
- _noset_: true
- },
- {
- prop: 'cgdNo',
- label: '采购单编号',
- width: '155px'
- },
- {
- prop: 'orderCode',
- 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: '状态',
- _slot_: 'status',
- width: '120px'
- },
- {
- prop: 'order_id',
- label: '采购单来源',
- _slot_: 'order_id',
- width: '110px'
- },
- {
- prop: 'order_source',
- label: '订单来源',
- _slot_: 'order_source',
- width: '110px'
- },
- {
- prop: 'lasttime',
- label: '预计最晚入库时间',
- width: '145px'
- },
- {
- prop: 'supplierNo',
- label: '采购供应商编号',
- width: '145px'
- },
- {
- prop: 'supplier_name',
- label: '采购供应商名称',
- width: '155px'
- },
-
-
-
-
-
- {
- prop: 'supplier_cgder',
- label: '供应商负责人',
- width: '95'
- },
- {
- prop: 'cgder',
- label: '商品创建人',
- width: '85px'
- },
- {
- 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: '已取消订单' }
- ]
- export { columns, statusOptions }
|