|
@@ -1,6 +1,6 @@
|
|
|
export default [
|
|
|
{
|
|
|
- item: { key: "code", title: "编码", width: "150" },
|
|
|
+ item: { key: "code", title: "编码", width: "140" },
|
|
|
attr: {},
|
|
|
},
|
|
|
{
|
|
@@ -8,7 +8,11 @@ export default [
|
|
|
attr: {},
|
|
|
},
|
|
|
{
|
|
|
- item: { key: "specification", title: "规格", width: "150" },
|
|
|
+ item: { key: "specification", title: "规格", width: "120" },
|
|
|
+ attr: {},
|
|
|
+ },
|
|
|
+ {
|
|
|
+ item: { key: "remark", title: "物料备注", width: "150" },
|
|
|
attr: {},
|
|
|
},
|
|
|
{
|
|
@@ -30,7 +34,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "registrationNo", title: "注册证号", width: "160" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.registrationNo : null;
|
|
|
},
|
|
@@ -39,7 +43,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "isMedicineYN", title: "医药物料", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.isMedicine == "0" ? "Y" : "N";
|
|
|
},
|
|
@@ -48,7 +52,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "isDrug", title: "物料药品属性", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.isDrug == "0" ? "Y" : "N";
|
|
|
},
|
|
@@ -57,7 +61,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "isDrugNumber", title: "药品", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.isDrug : null;
|
|
|
},
|
|
@@ -78,7 +82,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "dosageFrom", title: "剂型", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.dosageFrom : null;
|
|
|
},
|
|
@@ -87,7 +91,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "dosageFromName", title: "剂型名称", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.dosageFromName : null;
|
|
|
},
|
|
@@ -96,7 +100,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "curingType", title: "养护类型", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.curingType : null;
|
|
|
},
|
|
@@ -105,7 +109,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "medicalInstruments", title: "医疗器械", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.medicalInstruments : null;
|
|
|
},
|
|
@@ -114,7 +118,7 @@ export default [
|
|
|
{
|
|
|
item: { key: "ratifyBatchNo", title: "批准文号", width: "auto" },
|
|
|
attr: {
|
|
|
- type:'ComputedInput',
|
|
|
+ type: 'ComputedInput',
|
|
|
formatter: (prop) => {
|
|
|
return prop.materialMedcine != null ? prop.materialMedcine.ratifyBatchNo : null;
|
|
|
},
|