123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- export default [
- {
- prop: "good_name",
- label: "商品名称",
- _slot_: "good_name",
- span: 24,
- },
- // {
- // prop: "speclist",
- // label: "规格",
- // _slot_: "speclist",
- // span: 24,
- // },
- {
- prop: "good_info_img",
- _slot_: "good_info_img",
- label: "详情图",
- span: 24,
- },
- {
- prop: "cat",
- label: "分类",
- _slot_: "cat",
- span: 24,
- },
- {
- prop: "brand_name",
- label: "品牌",
- span: 24,
- },
- {
- prop: "is_stock",
- label: "是否库存品",
- _slot_: "is_stock",
- span: 8,
- },
- {
- prop: "unit",
- label: "单位",
- span: 8,
- },
- {
- prop: "tax",
- label: "税点",
- append: '%',
- span: 8,
- },
- // {
- // prop: "delivery_day",
- // label: "物流时间",
- // append: '天',
- // span: 12,
- // },
- // {
- // prop: "lead_time",
- // label: "供货周期",
- // append: '天',
- // span: 12,
- // },
- {
- prop: "exclusive",
- label: "专属类型",
- _slot_: "exclusive",
- span: 24,
- },
- // {
- // prop: "sample_day",
- // label: "调样周期",
- // append: '天',
- // span: 12,
- // },
- {
- prop: "weight",
- label: "商品总克重",
- _slot_: "weight",
- span: 24,
- },
- {
- prop: "after_sales",
- label: "售后说明",
- span: 24,
- },
- // {
- // prop: "craft_desc",
- // label: "工艺说明",
- // span: 24,
- // },
- ]
|