修改问题
This commit is contained in:
parent
a28b5c801e
commit
8696e58898
|
|
@ -213,6 +213,9 @@ namespace CoreCms.Net.Repository
|
|||
join_time = p.join_time,
|
||||
quit_time = p.quit_time,
|
||||
status = p.status,
|
||||
important_data = p.important_data,
|
||||
is_refund = p.is_refund,
|
||||
remarks = p.remarks,
|
||||
|
||||
}).With(SqlWith.NoLock).ToPageListAsync(pageIndex, pageSize, totalCount);
|
||||
}
|
||||
|
|
@ -229,7 +232,9 @@ namespace CoreCms.Net.Repository
|
|||
join_time = p.join_time,
|
||||
quit_time = p.quit_time,
|
||||
status = p.status,
|
||||
|
||||
important_data = p.important_data,
|
||||
is_refund = p.is_refund,
|
||||
remarks = p.remarks,
|
||||
}).ToPageListAsync(pageIndex, pageSize, totalCount);
|
||||
}
|
||||
var list = new PageList<SQReservationParticipants>(page, pageIndex, pageSize, totalCount);
|
||||
|
|
|
|||
|
|
@ -239,7 +239,7 @@ namespace CoreCms.Net.Repository
|
|||
status = p.status,
|
||||
created_at = p.created_at,
|
||||
updated_at = p.updated_at,
|
||||
|
||||
remarks = p.remarks,
|
||||
}).With(SqlWith.NoLock).ToPageListAsync(pageIndex, pageSize, totalCount);
|
||||
}
|
||||
else
|
||||
|
|
@ -268,7 +268,7 @@ namespace CoreCms.Net.Repository
|
|||
status = p.status,
|
||||
created_at = p.created_at,
|
||||
updated_at = p.updated_at,
|
||||
|
||||
remarks = p.remarks,
|
||||
}).ToPageListAsync(pageIndex, pageSize, totalCount);
|
||||
}
|
||||
var list = new PageList<SQReservations>(page, pageIndex, pageSize, totalCount);
|
||||
|
|
|
|||
|
|
@ -160,6 +160,14 @@
|
|||
if(d.role == 0) return '<span class="layui-badge layui-bg-blue">参与者</span>';
|
||||
if(d.role == 1) return '<span class="layui-badge layui-bg-orange">发起者</span>';
|
||||
return d.role;
|
||||
}},
|
||||
{ field: 'is_refund', title: '鸽子费状态', width: 130, sort: false, templet: function(d){
|
||||
if(d.is_refund == 0) return '<span class="layui-badge layui-bg-green">未付鸽子费</span>';
|
||||
if(d.is_refund == 1) return '<span class="layui-badge layui-bg-gray">已付鸽子费</span>';
|
||||
if(d.is_refund == 2) return '<span class="layui-badge layui-bg-gray">退款中</span>';
|
||||
if(d.is_refund == 3) return '<span class="layui-badge layui-bg-gray">退款成功</span>';
|
||||
if(d.is_refund == 9) return '<span class="layui-badge layui-bg-gray">退款失败</span>';
|
||||
return d.is_refund;
|
||||
}},
|
||||
{ field: 'join_time', title: '加入时间', width: 130, sort: false},
|
||||
{ field: 'quit_time', title: '退出时间', width: 130, sort: false},
|
||||
|
|
@ -168,6 +176,8 @@
|
|||
if(d.status == 1) return '<span class="layui-badge layui-bg-gray">已退出</span>';
|
||||
return d.status;
|
||||
}},
|
||||
{ field: 'remarks', title: '备注', width: 230, sort: false},
|
||||
|
||||
// { width: 162, align: 'center', title:'操作', fixed: 'right', toolbar: '#LAY-app-SQReservationParticipants-tableBox-bar' }
|
||||
]
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user