123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- import { DescItem } from '/@/components/Description/index';
- import { BasicColumn } from '/@/components/Table/src/types/table';
- import { Button } from '/@/components/Button';
- import { Badge } from 'ant-design-vue';
- export const refundData = {
- a1: '1000000000',
- a2: '已取货',
- a3: '1234123421',
- a4: '3214321432',
- };
- export const personData = {
- b1: '付小小',
- b2: '18100000000',
- b3: '菜鸟仓储',
- b4: '浙江省杭州市西湖区万塘路18号',
- b5: '无',
- };
- export const refundSchema: DescItem[] = [
- {
- field: 'a1',
- label: '取货单号',
- },
- {
- field: 'a2',
- label: '状态',
- },
- {
- field: 'a3',
- label: '销售单号',
- },
- {
- field: 'a4',
- label: '子订单',
- },
- ];
- export const personSchema: DescItem[] = [
- {
- field: 'b1',
- label: '用户姓名',
- },
- {
- field: 'b2',
- label: '联系电话',
- },
- {
- field: 'b3',
- label: '常用快递',
- },
- {
- field: 'b4',
- label: '取货地址',
- },
- {
- field: 'b5',
- label: '备注',
- },
- ];
- export const refundTableSchema: BasicColumn[] = [
- {
- title: '商品编号',
- width: 150,
- dataIndex: 't1',
- customRender: ({ record }) => {
- return (
- <Button type="link" size="small">
- {() => record.t1}
- </Button>
- );
- },
- },
- {
- title: '商品名称',
- width: 150,
- dataIndex: 't2',
- },
- {
- title: '商品条码',
- width: 150,
- dataIndex: 't3',
- },
- {
- title: '单价 ',
- width: 150,
- dataIndex: 't4',
- },
- {
- title: '数量(件) ',
- width: 150,
- dataIndex: 't5',
- },
- {
- title: '金额',
- width: 150,
- dataIndex: 't6',
- },
- ];
- export const refundTimeTableSchema: BasicColumn[] = [
- {
- title: '时间',
- width: 150,
- dataIndex: 't1',
- },
- {
- title: '当前进度',
- width: 150,
- dataIndex: 't2',
- },
- {
- title: '状态',
- width: 150,
- dataIndex: 't3',
- customRender: ({ record }) => {
- return <Badge status="success" text={record.t3} />;
- },
- },
- {
- title: '操作员ID ',
- width: 150,
- dataIndex: 't4',
- },
- {
- title: '耗时',
- width: 150,
- dataIndex: 't5',
- },
- ];
- export const refundTableData: any[] = [
- {
- t1: 1234561,
- t2: '矿泉水 550ml',
- t3: '12421432143214321',
- t4: '2.00',
- t5: 1,
- t6: 2.0,
- },
- {
- t1: 1234562,
- t2: '矿泉水 550ml',
- t3: '12421432143214321',
- t4: '2.00',
- t5: 2,
- t6: 2.0,
- },
- {
- t1: 1234562,
- t2: '矿泉水 550ml',
- t3: '12421432143214321',
- t4: '2.00',
- t5: 2,
- t6: 2.0,
- },
- {
- t1: 1234562,
- t2: '矿泉水 550ml',
- t3: '12421432143214321',
- t4: '2.00',
- t5: 2,
- t6: 2.0,
- },
- ];
- export const refundTimeTableData: any[] = [
- {
- t1: '2017-10-01 14:10',
- t2: '联系客户',
- t3: '进行中',
- t4: '取货员 ID1234',
- t5: '5mins',
- },
- {
- t1: '2017-10-01 14:10',
- t2: '取货员出发',
- t3: '成功',
- t4: '取货员 ID1234',
- t5: '5mins',
- },
- {
- t1: '2017-10-01 14:10',
- t2: '取货员接单',
- t3: '成功',
- t4: '系统',
- t5: '5mins',
- },
- {
- t1: '2017-10-01 14:10',
- t2: '申请审批通过',
- t3: '成功',
- t4: '用户',
- t5: '1h',
- },
- ];
|