|
|
@@ -76,6 +76,19 @@ function initCheckAppealBtns(){
|
|
|
$("#appeal_time").html($.checkTask.appeal.appeal_time);
|
|
|
$("#appeal_reason").html($.checkTask.appeal.appeal_reason);
|
|
|
$("#appeal_file_list").html(genAppeaFiles($.checkTask.appeal.file_src));
|
|
|
+
|
|
|
+ layer.open({
|
|
|
+ type: 1,
|
|
|
+ title: "申诉详情",
|
|
|
+ closeBtn: 1,
|
|
|
+ shade: false,
|
|
|
+ shadeClose: true,
|
|
|
+ offset:'rb',
|
|
|
+ content: $('#appeal_div'), //捕获的元素,注意:最好该指定的元素要存放在body最外层,否则可能被其它的相对元素所影响
|
|
|
+ yes: function(index){
|
|
|
+ layer.close(index);
|
|
|
+ }
|
|
|
+ });
|
|
|
}else{
|
|
|
$("#appeal_div").hide();
|
|
|
$("#btn_appeal_task").hide();
|
|
|
@@ -231,7 +244,7 @@ function showChangeUser() {
|
|
|
};
|
|
|
|
|
|
post_common_service("/user/getUserList/", param, function (data) {
|
|
|
- changePersonLayer = showPopup4Common('更改人员', null, ['500px','500px'],null,'r');
|
|
|
+ changePersonLayer = showPopup4Common('更改人员', null, ['550px','600px'],null,'r');
|
|
|
$("#user_container").empty();
|
|
|
var userStr = "";
|
|
|
for (var i in data) {
|
|
|
@@ -239,9 +252,9 @@ function showChangeUser() {
|
|
|
if (data[i].workno) name = name+" "+data[i].workno.substr(data[i].workno.length-3);
|
|
|
var pic = "../../images/body-bg.png";
|
|
|
if (data[i].pic) pic = base_image_server_url+data[i].pic;
|
|
|
- str = '<div style="width:100px;float:left;margin:5px;">'
|
|
|
+ str = '<div style="width:90px;float:left;margin:5px;">'
|
|
|
+ '<a class="card" href="javascript:void(0)" onclick="changePerson(\'' + data[i].id + '\')">'
|
|
|
- + '<img src="' + pic + '" alt="" style="height:100px;width:100px;">'
|
|
|
+ + '<img src="' + pic + '" alt="" style="height:100px;width:90px;">'
|
|
|
+ '<div class="card-heading"><strong>' + name + '</strong></div>'
|
|
|
+ '</a>'
|
|
|
+ '</div>';
|