| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import { number } from "echarts"
- export const optionTwo = {
- searchShow: true,
- searchMenuSpan: 8,
- align: "center",
- searchSpan: 8,
- tip: false,
- border: true,
- index: true,
- addBtn: false,
- viewBtn: false,
- editBtn: false,
- delBtn: false,
- menuWidth: 70,
- searchIcon: true,
- searchIndex: 2,
- selection:true,
- column: [
- {
- label: "商品名称",
- prop: "cname",
- // type: "select",
- // dicUrl:"/api/blade-client/goodsdesc/descListByCname?cname={{key}}",
- // filterable:true,
- // remote:true,
- // props: {
- // label: "cname",
- // value: "cname"
- // },
- search: true,
- overHidden: true,
- index: 1
- },
- {
- label: "产品分类",
- prop: "goodsTypeName",
- overHidden: true,
- index: 2
- },
- {
- label: "单位",
- prop: "unit",
- type: "select",
- filterable:true,
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- dicData:[],
- search: true,
- overHidden: true,
- index: 4
- },
- {
- label: "参考售价",
- prop: "standardPrice",
- overHidden: true,
- index: 5
- },
- {
- label: "厂家",
- prop: "corpId",
- type: "select",
- props: {
- label: "cname",
- value: "id"
- },
- dicData: [],
- span: 6,
- index: 13
- },
- {
- label: "规格",
- prop: "specs",
- span: 6,
- index: 15
- },
- {
- label: "品牌",
- prop: "brand",
- span: 6,
- index: 16
- },
- {
- label: "备注",
- prop: "remarks",
- search: true,
- overHidden: true,
- index: 17
- }
- ]
- }
|