| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- {
- "lazy": true,
- "tip": false,
- "simplePage": true,
- "searchShow": true,
- "addBtn":false,
- "editBtn":false,
- "delBtn":false,
- "addRowBtn":false,
- "cellBtn":false,
- "cancelBtn":false,
- "refreshBtn": false,
- "searchMenuSpan": 6,
- "dialogWidth": "60%",
- "align": "center",
- "tree": true,
- "border": true,
- "index": true,
- "selection": true,
- "menuWidth": 180,
- "dialogClickModal": false,
- "showSummary": true,
- "summaryText": "合计",
- "sumColumnList": [
- {
- "name": "contractAmount",
- "type": "sum"
- },
- {
- "name": "billWeight",
- "type": "sum"
- },
- {
- "name": "invoiceWeight",
- "type": "sum"
- }
- ],
- "column":[
- {
- "label": "提单号",
- "prop": "billNo",
- "index": 1,
- "width":150
- },{
- "label": "合同号",
- "prop": "contractNumber",
- "index": 2,
- "width":150
- },{
- "label": "货物品种",
- "prop": "priceCategory",
- "index": 3,
- "width":200,
- "rules": [
- {
- "required": false,
- "message": " ",
- "trigger": "blur"
- }
- ]
- },
- {
- "label": "箱号",
- "prop": "cntrNo",
- "index": 4,
- "width":120
- },
- {
- "label": "库存件数",
- "prop": "inventoryNumber",
- "index": 5,
- "width":120
- },
- {
- "label": "库存重量",
- "prop": "inWeight",
- "index": 5,
- "width":120
- },
- {
- "label": "件数",
- "prop": "actualQuantity",
- "index": 6,
- "width":120
- },
- {
- "label": "发票重量(吨)",
- "prop": "invoiceWeight",
- "index": 7,
- "width":120,
- "rules": [
- {
- "required": false,
- "message": " ",
- "trigger": "blur"
- }
- ]
- },
- {
- "label": "码单重量(吨)",
- "prop": "billWeight",
- "index": 8,
- "width":120,
- "rules": [
- {
- "required": false,
- "message": " ",
- "trigger": "blur"
- }
- ]
- },
- {
- "label": "单价",
- "prop": "price",
- "index": 9,
- "width":100
- },{
- "label": "发票金额",
- "prop": "contractAmount",
- "index": 10,
- "width":120
- },
- {
- "label": "币别",
- "prop": "currency",
- "type": "select",
- "dicUrl": "/api/blade-system/dict-biz/dictionary?code=currency",
- "props": {
- "label": "dictValue",
- "value": "dictValue"
- },
- "index": 11,
- "width":120
- },
- {
- "label": "汇率",
- "prop": "exRate",
- "cell": true,
- "index": 12,
- "width":120
- },
- {
- "label": "税率",
- "prop": "taxRate",
- "index": 13,
- "width":100,
- "cell": true
- },{
- "label": "备注",
- "prop": "remarks",
- "index": 14,
- "width":120,
- "cell": true,
- "rules": [
- {
- "required": false,
- "message": " ",
- "trigger": "blur"
- }
- ]
- }
- ]
- }
|