lichong 9 months ago
parent
commit
74595cceee
  1. 33
      front/src/renderer/src/assets/json/dingdan.json
  2. 2
      front/src/renderer/src/components/dingdantablecomponent.vue

33
front/src/renderer/src/assets/json/dingdan.json

@ -29,7 +29,7 @@
"label": "客户名称",
"prop": "kehumingcheng",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportxiaoshou": true
},
@ -45,7 +45,7 @@
"label": "厂编",
"prop": "changbian",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportS6": true
},
@ -53,7 +53,7 @@
"label": "货号",
"prop": "huohao",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportS6": true
},
@ -76,10 +76,19 @@
"label": "最小单位条码",
"prop": "zuixiaodanweitiaoma",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportxiaoshou": true
},
{
"label": "品名",
"prop": "pinming",
"type": "select",
"minWidth": 150,
"formShow": true,
"tableShow": true,
"exportxiaoshou": true
},
{
"label": "修改后销售数量",
"prop": "xiugaihouxiaoshoushuliang",
@ -108,7 +117,7 @@
"label": "最大箱装量",
"prop": "zuidaxiangzhuangliang",
"type": "number",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportxiaoshou": true
},
@ -116,7 +125,7 @@
"label": "规格型号",
"prop": "guigexinghao",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportxiaoshou": true
},
@ -124,7 +133,7 @@
"label": "计量单位",
"prop": "jiliangdanwei",
"type": "text",
"tableShow": true,
"tableShow": false,
"formShow": true,
"exportxiaoshou": true
},
@ -144,14 +153,6 @@
"formShow": true,
"exportxiaoshou": true
},
{
"label": "品名",
"prop": "pinming",
"type": "select",
"formShow": true,
"tableShow": true,
"exportxiaoshou": true
},
{
"label": "品名选项",
"prop": "pinmingxuanxiang",
@ -171,7 +172,7 @@
"prop": "guige",
"type": "text",
"formShow": true,
"tableShow": true
"tableShow": false
},
{
"label": "销售数量",

2
front/src/renderer/src/components/dingdantablecomponent.vue

@ -10,7 +10,7 @@
</template>
</el-table-column>
<el-table-column v-for="(headerItem, headerIndex) in tableHeader" :label="headerItem.label" show-overflow-tooltip
:key="headerIndex" :min-width="`${headerItem.label.length * 15 + 8}px`">
:key="headerIndex" :min-width="`${headerItem.minWidth?headerItem.minWidth:headerItem.label.length * 15 + 8}px`">
<template #default="scope">
<template v-if="headerItem.type === 'text'">
<span>{{ scope.row[headerItem.prop] }}</span>

Loading…
Cancel
Save