|
|
@ -104,7 +104,7 @@ export default { |
|
|
|
'min-width': '20px' |
|
|
|
}, |
|
|
|
{ |
|
|
|
'min-width': '20px' |
|
|
|
'min-width': '50px' |
|
|
|
}, |
|
|
|
{ |
|
|
|
'min-width': '20px' |
|
|
@ -113,7 +113,7 @@ export default { |
|
|
|
'min-width': '210px' |
|
|
|
}, |
|
|
|
{ |
|
|
|
'min-width': '400px', |
|
|
|
'min-width': '280px', |
|
|
|
'white-space':'pre-wrap' |
|
|
|
}, |
|
|
|
{ |
|
|
@ -213,9 +213,17 @@ export default { |
|
|
|
if (item.gender == "0") { |
|
|
|
item.gender = '女' |
|
|
|
} else if (item.gender == "1") { |
|
|
|
item = '男' |
|
|
|
item.gender = '男' |
|
|
|
} else { |
|
|
|
item.gender = '未知' |
|
|
|
} |
|
|
|
|
|
|
|
if (item.type == "0") { |
|
|
|
item.type = '访客' |
|
|
|
} else if (item.type == "1") { |
|
|
|
item.type = '租客' |
|
|
|
} else { |
|
|
|
item = '未知' |
|
|
|
item.type = '未知' |
|
|
|
} |
|
|
|
return { |
|
|
|
...item, |
|
|
|