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

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

@ -10,7 +10,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-for="(headerItem, headerIndex) in tableHeader" :label="headerItem.label" show-overflow-tooltip <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 #default="scope">
<template v-if="headerItem.type === 'text'"> <template v-if="headerItem.type === 'text'">
<span>{{ scope.row[headerItem.prop] }}</span> <span>{{ scope.row[headerItem.prop] }}</span>

Loading…
Cancel
Save