123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- export default {
- serviceOption: [//假数据
- {
- value: "选项1",
- label: "待业务审核",
- },
- {
- value: "选项2",
- label: "待供应商反馈",
- },
- {
- value: "选项3",
- label: "待采购反馈",
- },
- {
- value: "选项4",
- label: "待采购审核",
- },
- {
- value: "选项5",
- label: "处理已结束",
- },
- {
- value: "d",
- label: "业务已驳回",
- },
- {
- value: "d",
- label: "采购已驳回",
- },
- ],
- columns:[
- {
- prop: "returnCode",
- label: "售后申请单",
- width:"160"
- },
- {
- prop:"apply_name",
- label:"申请人",
- },
- {
- prop: "orderCode",
- label: "确认单编号",
- width:"160"
- },
- {
- prop: "outCode",
- label: "发货申请单编号",
- width:"160"
- },
- {
- prop: "total_num",
- label: "出库总数",
- },
- {
- prop: "good_code",
- label: "商品编码",
- width:"140"
- },
- {
- prop:"good_name",
- label:"商品名称",
- width:"150"
- },
- {
- prop:"error_num",
- label:"异常数量",
- },
- {
- prop:"error_msg",
- label:"异常原因",
- },
- // {
- // prop:"error_img",
- // label:"异常图片",
- // },
- {
- prop:"error_remark",
- label:"备注"
- },
- {
- prop:"except_code",
- label:"期望意愿",
- _slot_: "except_code",
- width:100,
- },
-
- {
- prop: "status",
- label: "状态",
- _slot_: "status",
- width: "120px",
- },
- {
- prop:"addtime",
- label:"添加时间",
- width:150,
- },
-
- {
- prop:"return_wsm",
- label:"退回仓库编码",
- width:"120"
- },
- {
- prop:"contactor",
- label:"联系人",
- },
- {
- prop:"mobile",
- label:"联系方式",
- },
- {
- prop:"addr",
- label:"退货地址",
- },
- {
- prop:"post_company",
- label:"快递名称",
- },
- {
- prop:"post_fee",
- label:"物流费",
- },
- {
- prop:"post_own",
- label:"费用承担方",
- width:"100",
- _slot_: "post_own",
- },
- {
- prop:"customer_code",
- label:"客户编码",
- width:"150"
- },
- {
- prop:"customer_name",
- label:"客户名称",
- width:"200"
- },
- {
- prop: "",
- label: "操作",
- fixed: "right",
- _noset_: true,
- _slot_: "operation",
- width:50,
- },
- ]
- }
|