fangmingyue 1 year ago
parent
commit
74725a5e46
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      src/pages/invoiceDetail/index.jsx

+ 17
- 0
src/pages/invoiceDetail/index.jsx View File

@@ -106,6 +106,23 @@ export default (props) => {
106 106
       key: 'mailAddress',
107 107
       search: false,
108 108
     },
109
+    {
110
+      title: '房号',
111
+      dataIndex: 'roomCode',
112
+      key: 'roomCode',
113
+      search: false,
114
+    },
115
+    {
116
+      title: '是否需要住宿清单',
117
+      dataIndex: 'isNeedLodging',
118
+      key: 'isNeedLodging',
119
+      valueType: 'select',
120
+      valueEnum: {
121
+        0: '不需要',
122
+        1: '需要'
123
+      },
124
+      search: false,
125
+    },
109 126
     {
110 127
       title: '提交时间',
111 128
       dataIndex: 'createDate',