Browse Source

bug修复

chenrui 4 years ago
parent
commit
7551421474
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/productManagement/priceChangeRecord/list.vue

+ 1 - 1
src/views/productManagement/priceChangeRecord/list.vue

@@ -146,7 +146,7 @@ export default {
       exportLoading: false, // 导出loading
       columns: [
         { title: '序号', dataIndex: 'no', width: 80, align: 'center', fixed: 'left' },
-        { title: '变更时间', dataIndex: 'updateDate', width: 160, align: 'center' },
+        { title: '变更时间', dataIndex: 'updateDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '产品名称', dataIndex: 'productEntity.name', align: 'center', ellipsis: true, customRender: function (text) { return text || '--' } },
         { title: '产品编码', dataIndex: 'productEntity.code', width: 140, align: 'center' },
         { title: '品牌', dataIndex: 'productEntity.productBrandName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },