zhoulisen 5 年前
父节点
当前提交
541a4eab94
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3
    2
      src/pages/qrcode/qrcodelist/index.jsx

+ 3
- 2
src/pages/qrcode/qrcodelist/index.jsx 查看文件

@@ -126,6 +126,7 @@ const qrcodelist = props => {
126 126
             dataIndex: 'buildingName',
127 127
             key: 'buildingName',
128 128
             align: 'center',
129
+            render: x => <span >{x || '暂无'}</span>,
129 130
 
130 131
         },
131 132
         {
@@ -133,7 +134,7 @@ const qrcodelist = props => {
133 134
             dataIndex: 'channelName',
134 135
             key: 'channelName',
135 136
             align: 'center',
136
-
137
+            render: x => <span >{x || '暂无'}</span>,
137 138
         },
138 139
         {
139 140
             title: '创建时间',
@@ -154,7 +155,7 @@ const qrcodelist = props => {
154 155
                 <AuthButton name="admin.qrcode.dataRecord" noRight={null}>
155 156
                     <EditIcon type="data" text="数据" onClick={() => toDataRecord(row.qrCodeId)} ></EditIcon>
156 157
                 </AuthButton>,
157
-                
158
+
158 159
 
159 160
             ]),
160 161
         },