|
@@ -18,21 +18,21 @@ export default {
|
|
|
label: '序号',
|
|
|
index: true
|
|
|
},
|
|
|
- {
|
|
|
- label: '用户ID',
|
|
|
- prop: 'id',
|
|
|
- showTooltip: true,
|
|
|
- width: 70
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // label: '用户ID',
|
|
|
+ // prop: 'id',
|
|
|
+ // showTooltip: true,
|
|
|
+ // width: 70
|
|
|
+ // },
|
|
|
{
|
|
|
label: '用户名称',
|
|
|
showTooltip: true,
|
|
|
- width: '100',
|
|
|
+ // width: '100',
|
|
|
prop: 'loginName'
|
|
|
},
|
|
|
{
|
|
|
label: '登录手机号码',
|
|
|
- width: '110',
|
|
|
+ // width: '110',
|
|
|
prop: 'phone',
|
|
|
render: (h, row) => {
|
|
|
if (sessionStorage.getItem('showFlag') === 'true') {
|
|
@@ -44,14 +44,14 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
label: '注册时间',
|
|
|
- width: '100',
|
|
|
+ // width: '100',
|
|
|
prop: 'gmtCreate',
|
|
|
showTooltip: true
|
|
|
},
|
|
|
{
|
|
|
label: '企业地址',
|
|
|
prop: 'enterpriseAddress',
|
|
|
- width: '100',
|
|
|
+ // width: '100',
|
|
|
showTooltip: true
|
|
|
},
|
|
|
{
|
|
@@ -80,7 +80,7 @@ export default {
|
|
|
{
|
|
|
label: '是否有在途支用',
|
|
|
prop: 'useMoney',
|
|
|
- width: '80',
|
|
|
+ width: '120',
|
|
|
render: (h, row) => {
|
|
|
return <span>{ row.useMoney ? '是' : '否' }</span>
|
|
|
}
|