123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- module.exports = [
- {
- name: '是否使用',
- code: 'use',
- status: '0',
- children: [
- {
- label: '使用中',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '已禁用',
- value: '1',
- sort: 2,
- status: '0',
- },
- ],
- },
- {
- name: '店铺状态',
- code: 'shop_status',
- status: '0',
- children: [
- {
- label: '审核中',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '审核通过',
- value: '1',
- sort: 2,
- status: '0',
- },
- {
- label: '审核拒绝',
- value: '-1',
- sort: 3,
- status: '0',
- },
- {
- label: '冻结中',
- value: '-2',
- sort: 4,
- status: '0',
- },
- ],
- },
- {
- name: '广告图类型',
- code: 'banner_type',
- status: '0',
- children: [
- {
- label: '无事件',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '跳转',
- value: '1',
- sort: 2,
- status: '0',
- },
- ],
- },
- {
- name: '跳转类型',
- code: 'to_type',
- status: '0',
- children: [
- {
- label: '商品跳转',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '自定义跳转',
- value: '1',
- sort: 2,
- status: '0',
- },
- ],
- },
- {
- name: '售后类型',
- code: 'afterSale_type',
- status: '0',
- children: [
- {
- label: '退款',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '换货',
- value: '1',
- sort: 2,
- status: '0',
- },
- {
- label: '维修',
- value: '2',
- sort: 3,
- status: '0',
- },
- ],
- },
- {
- name: '售后状态',
- code: 'afterSale_status',
- status: '0',
- children: [
- {
- label: '申请售后',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '正在审核',
- value: '1',
- sort: 2,
- status: '0',
- },
- {
- label: '已退款',
- value: '-1',
- sort: 3,
- status: '0',
- },
- {
- label: '已换货',
- value: '-2',
- sort: 4,
- status: '0',
- },
- {
- label: '正在维修',
- value: '2',
- sort: 5,
- status: '0',
- },
- {
- label: '已维修',
- value: '-2',
- sort: 6,
- status: '0',
- },
- ],
- },
- {
- name: '订单状态',
- code: 'order_process',
- status: '0',
- children: [
- {
- label: '已下单',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '邮寄中',
- value: '1',
- sort: 2,
- status: '0',
- },
- {
- label: '已收货',
- value: '2',
- sort: 3,
- status: '0',
- },
- {
- label: '取消订单',
- value: '-1',
- sort: 4,
- status: '0',
- },
- {
- label: '已退款',
- value: '-2',
- sort: 5,
- status: '0',
- },
- {
- label: '申请售后',
- value: '-3',
- sort: 6,
- status: '0',
- },
- {
- label: '正在售后中',
- value: '-4',
- sort: 7,
- status: '0',
- },
- {
- label: '售后已结束',
- value: '-5',
- sort: 8,
- status: '0',
- },
- ],
- },
- {
- name: '商品状态',
- code: 'goods_status',
- status: '0',
- children: [
- {
- label: '未上架',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '已上架',
- value: '1',
- sort: 2,
- status: '0',
- },
- ],
- },
- {
- name: '性别',
- code: 'gender',
- status: '0',
- children: [
- {
- label: '女',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '男',
- value: '1',
- sort: 2,
- status: '0',
- },
- {
- label: '未知',
- value: '2',
- sort: 3,
- status: '0',
- },
- ],
- },
- {
- name: '用户状态',
- code: 'user_status',
- status: '0',
- children: [
- {
- label: '正常',
- value: '0',
- sort: 1,
- status: '0',
- },
- {
- label: '冻结',
- value: '1',
- sort: 2,
- status: '0',
- },
- ],
- },
- ];
|