123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- //是否定制
- const options1 = [
- { id: "0", name: "否" },
- { id: "1", name: "是" },
- ]
- //专属类型
- const options2 = [
- { id: "0", name: "非泰康" },
- { id: "1", name: "泰康" },
- ]
- //销售权限
- const options3 = [
- { id: "0", name: "无销售权限" },
- { id: "1", name: "有销售权限" },
- ]
- //是否库存品
- const options4 = [
- { id: "0", name: "非库存品" },
- { id: "1", name: "库存品" },
- ]
- //是否启用实时金价
- const options5 = [
- { id: "0", name: "否" },
- { id: "1", name: "是" },
- ]
- //供货区域
- const options6 = [
- { id: "1", name: "全国" },
- { id: "2", name: "全国除偏远" },
- ]
- //是否启用阶梯
- const options7 = [
- { id: "0", name: "否" },
- { id: "1", name: "是" },
- ]
- const listCol = [
- {
- prop: "cgdNo",
- label: "采购单编号",
- width: "160px",
- },
- {
- prop: "apply_name",
- label: "申请人",
- width: "65px",
- },
- {
- prop: "good_code",
- label: "商品编码",
- width: "150px",
- },
- {
- prop: "good_name",
- label: "商品名称",
- },
- {
- prop: "class_cat",
- label: "商品分类",
- },
- {
- prop: "good_weight",
- label: "商品总重量(g)",
- width: "110px",
- },
- {
- prop: "diff_weight",
- label: "工差总重量(g)",
- width: "110px",
- },
- {
- prop: "status",
- label: "状态",
- _slot_: "status",
- width: "120px",
- },
- {
- prop: "addtime",
- label: "创建时间",
- width: "140px",
- sortable: true,
- },
- {
- prop: "",
- label: "操作",
- fixed: "right",
- _noset_: true,
- width: "52px",
- _slot_: "operation",
- },
- ]
- export { options1, options2, options3, options4, options5, options6, options7, listCol }
|