columns.js 1.76 KB
Newer Older
wuhao's avatar
wuhao committed
1
function getcolumns(setdrawer) {
wuhao's avatar
wuhao committed
2
      return {
wuhao's avatar
wuhao committed
3 4
 "columns": [
  {
wuhao's avatar
wuhao committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
   "title": "操作时间",
   "dataIndex": "operateTime",
   "key": "operateTimeList",
   "valueType": "dateRange"
  },
  {
   "title": "操作人",
   "dataIndex": "operateUserName",
   "key": "operateUserId",
   "valueType": "select",
   "options": {
    "path": "/auth/sysUser/selection",
    "params": {}
   },
   "hideInSearch": false,
   "hideInTable": false
  },
  {
   "title": "备件料号",
   "dataIndex": "sparePartNo",
   "key": "sparePartNo",
   "hideInSearch": false,
   "hideInTable": false
  },
  {
   "title": "备件名",
   "dataIndex": "sparePartName",
   "key": "sparePartName"
  },
  {
   "title": "供应商编号",
   "dataIndex": "supplierNo",
   "key": "supplierNo"
wuhao's avatar
wuhao committed
38 39
  },
  {
wuhao's avatar
wuhao committed
40 41 42
   "title": "供应商名称",
   "dataIndex": "supplierName",
   "key": "supplierName"
wuhao's avatar
wuhao committed
43 44
  },
  {
wuhao's avatar
wuhao committed
45 46 47
   "title": "库存单位",
   "dataIndex": "unit",
   "key": "unit"
wuhao's avatar
wuhao committed
48 49
  },
  {
wuhao's avatar
wuhao committed
50 51 52
   "title": "入库仓库",
   "dataIndex": "inWarehouseName",
   "key": "inWarehouseName"
wuhao's avatar
wuhao committed
53 54
  },
  {
wuhao's avatar
wuhao committed
55 56 57
   "title": "出库仓库",
   "dataIndex": "outWarehouseName",
   "key": "outWarehouseName"
wuhao's avatar
wuhao committed
58 59
  },
  {
wuhao's avatar
wuhao committed
60 61 62
   "title": "出入库类型",
   "dataIndex": "operateTypeName",
   "key": "operateTypeName"
wuhao's avatar
wuhao committed
63 64
  },
  {
wuhao's avatar
wuhao committed
65 66 67
   "title": "操作后的备件库存",
   "dataIndex": "actualStock",
   "key": "actualStock"
wuhao's avatar
wuhao committed
68 69
  },
  {
wuhao's avatar
wuhao committed
70 71 72 73 74 75 76 77
   "title": "操作数量",
   "dataIndex": "operateNum",
   "key": "operateNum"
  },
  {
   "title": "相关单号",
   "dataIndex": "relationNo",
   "key": "relationNo"
wuhao's avatar
wuhao committed
78
  }
wuhao's avatar
wuhao committed
79 80 81 82 83 84 85 86 87 88 89 90
 ],
 "pathconfig": {
  "enableadd": false,
  "enableedit": false,
  "enabledelete": false,
  "enabledetail": false,
  "add": "",
  "edit": "",
  "list": "/sparepart/spareStockAccess/queryList",
  "delete": "",
  "detail": ""
 }
wuhao's avatar
wuhao committed
91
};
wuhao's avatar
wuhao committed
92 93 94
    }
    export default getcolumns;