222
schangxiang@126.com
2025-05-09 13f8c1efe9aaf7b7d1e4e77107de61a56d6f9646
Weben_CMSרÓôúÂëÉú³ÉÆ÷/Weben_CMS_TemplateDemo/templatedemo_web/src/widgets/WmsMaterial/Views/Pages/WmsMaterial/WmsMaterial.tsx
@@ -207,7 +207,28 @@
            isHidePagination={isHidePagination} 
            pageSize={20} 
            v-slots={{ 
              creationTime: ({ row }: any) => {
              isValid: ({ row }: any) => {
 return (
   <div>
     {row.isValid != null ? (row.isValid ? '是' : '否') : '-'}
   </div>
  )
},
isSelfMade: ({ row }: any) => {
 return (
   <div>
     {row.isSelfMade != null ? (row.isSelfMade ? '是' : '否') : '-'}
   </div>
  )
},
isDisabled: ({ row }: any) => {
 return (
   <div>
     {row.isDisabled != null ? (row.isDisabled ? '是' : '否') : '-'}
   </div>
  )
},
creationTime: ({ row }: any) => {
 return ( 
   <div>  
     {row.creationTime != null 
@@ -238,13 +259,6 @@
     {row.deletionTime != null 
     ? dayjs(row.deletionTime).format('YYYY-MM-DD HH:mm:ss') 
      : '-'} 
   </div>
  )
},
isDisabled: ({ row }: any) => {
 return (
   <div>
     {row.isDisabled != null ? (row.isDisabled ? '是' : '否') : '-'}
   </div>  
  ) 
},