|
@@ -6,7 +6,7 @@
|
|
|
{ item: { key: "billCode", title: "单据编码" }, attr: {} },
|
|
|
|
|
|
{
|
|
|
- item: { key: "createName", title: "申请人",width:150, },
|
|
|
+ item: { key: "proposerName", title: "申请人",width:150, },
|
|
|
attr: { },
|
|
|
},
|
|
|
{ item: { key: "status", title: "单据状态",width:120, },
|
|
@@ -27,7 +27,7 @@
|
|
|
},
|
|
|
{ item: { key: "name", title: "物料名称" }, attr: {} },
|
|
|
{ item: { key: "specification", title: "规格" ,width:150,}, attr: {} },
|
|
|
- { item: { key: "manufacturerName", title: "生产厂商" ,width:150,}, attr: {} },
|
|
|
+ { item: { key: "manufacturerName", title: "生产厂家/代理人" ,width:150,}, attr: {} },
|
|
|
{ item: { key: "registrationNo", title: "注册证号" ,width:150,}, attr: {} },
|
|
|
{ item: { key: "registrant", title: "注册人" ,width:150,}, attr: {} },
|
|
|
{ item: { key: "updateTime", title: "最后修改时间" ,width:150,}, attr: {} },
|
|
@@ -62,6 +62,14 @@
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
+ item: { key: "status", title: "单据状态" },
|
|
|
+ attr: {
|
|
|
+ is: "el-select",
|
|
|
+ dictName: "documents_status",
|
|
|
+ clearable: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
item: { key: "name", title: "物料名称" },
|
|
|
attr: {
|
|
|
is: "el-popover-select-v2",
|
|
@@ -71,13 +79,83 @@
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- item: { key: "status", title: "单据状态" },
|
|
|
+ item: { key: "code", title: "物料编码" },
|
|
|
attr: {
|
|
|
- is: "el-select",
|
|
|
- dictName: "documents_status",
|
|
|
+ is: "el-popover-select-v2",
|
|
|
+ referName: "MATERIAL_PARAM",
|
|
|
+ valueKey: "code",
|
|
|
+ clearable:true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "classifySearchList", title: "品类" },
|
|
|
+ attr: {
|
|
|
+ is: "el-popover-multiple-tree-select",
|
|
|
+ referName: "MATERIALCLASSIFY_PARAM",
|
|
|
+ valueKey: "id",
|
|
|
+ clearable:true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "proposerName", title: "申请人" },
|
|
|
+ attr: {
|
|
|
+ is: "el-popover-select-v2",
|
|
|
+ referName: "CONTACTS_PARAM",
|
|
|
+ valueKey: "name",
|
|
|
+ dataMapping: {
|
|
|
+ proposerId: "code",
|
|
|
+ },
|
|
|
+ clearable: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "createTimeString", title: "申请时间" },
|
|
|
+ attr: {
|
|
|
+ is: "el-date-picker",
|
|
|
+ valueFormat: "yyyy-MM-dd" ,
|
|
|
+ clearable: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "reviewedName", title: "最后审批人" },
|
|
|
+ attr: {
|
|
|
+ is: "el-popover-select-v2",
|
|
|
+ referName: "CONTACTS_PARAM",
|
|
|
+ valueKey: "name",
|
|
|
+ dataMapping: {
|
|
|
+ reviewedBy: "code",
|
|
|
+ },
|
|
|
+ clearable: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "auditTimeString", title: "审批时间" },
|
|
|
+ attr: {
|
|
|
+ is: "el-date-picker",
|
|
|
+ valueFormat: "yyyy-MM-dd" ,
|
|
|
clearable: true,
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ item: { key: "manufacturerName", title: "生产厂家/代理人" },
|
|
|
+ attr: {
|
|
|
+ clearable:true,
|
|
|
+ is: "el-popover-select-v2",
|
|
|
+ valueKey: "name",
|
|
|
+ referName: "MANUFACTURER_PARAM",
|
|
|
+ dataMapping: {
|
|
|
+ manufacturerId: "id",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // item: { key: "registrationNo", title: "注册证号" },
|
|
|
+ // attr: {
|
|
|
+ // clearable:true,
|
|
|
+ // is: "el-input",
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+
|
|
|
|
|
|
].map(({ item, attr }) => ({
|
|
|
attr,
|