Explorar el Código

申诉原因样式大小修改

温红权 hace 8 años
padre
commit
9872d94406

+ 1 - 0
VisualInspection/css/common/foot.css

@@ -4,6 +4,7 @@ footer {
     position: absolute;
     width: 100%;
     z-index: 0;
+    position: absolute;
 }
 
 footer p {

+ 2 - 1
VisualInspection/js/mytask/check.js

@@ -298,6 +298,7 @@ function initCheckAppealBtns() {
 function showAppealLayer() {
     layer.open({
         type: 1,
+        area: ['400px', "400px"],
         title: "申诉详情",
         closeBtn: 1,
         shade: false,
@@ -567,7 +568,7 @@ function showChangeUser() {
     };
 
     post_common_service("/user/getUserList/", param, function(data) {
-        changePersonLayer = showPopup4Common('更改人员', null, ['550px', '600px'], null, 'r','确定');
+        changePersonLayer = showPopup4Common('更改人员', null, ['550px', '600px'], null, 'r', '确定');
         $("#user_container").empty();
         var userStr = "";
         for (var i in data) {

+ 3 - 3
VisualInspection/js/util/util.js

@@ -161,7 +161,7 @@ function deleteItem4Common(id, url, okCb, offset) {
     });
 }
 
-function deleteItem4CallBack(cb){
+function deleteItem4CallBack(cb) {
     layer.confirm('确定删除记录?', {
         shade: 0,
         btn: ['确定', '取消'] //按钮
@@ -652,8 +652,8 @@ function settime() {
     nowStr = moment(nowStr).format('YYYY-MM-DD HH:mm:ss');
     $("#time_p").html(nowStr);
     $("#main").css("min-height", window.innerHeight);
-    var height = window.innerHeight - $("#main").height();
-    $("#foot").css("bottom", height > 0 ? 0 : height);
+    var height = window.innerHeight - $("body").height();
+    $("#foot").css("bottom", height > 0 ? 0 : height - $("#foot").height() - 20);
     setTimeout(gettime, 1000);
 }
 

+ 2 - 2
VisualInspection/view/mytask/appealDetail.html

@@ -12,8 +12,8 @@
             </td>
         </tr>
         <tr>
-            <td width="80%"><textarea id="recheck_result" style="height:50px;"></textarea></td>
+            <td width="80%"><textarea id="recheck_result" style="height: 150px;width:90%;"></textarea></td>
             <td width="20%"><button class="btn btn-primary" type="button" onclick="saveRecheckResult()">保存</button></td>
         </tr>
     </table>
-</div>
+</div>

+ 2 - 2
VisualInspection/view/mytask/applyDetail.html

@@ -16,8 +16,8 @@
         <div class="form-group">
             <label class="col-md-4 col-sm-2">原因</label>
             <div class="col-md-6 col-sm-10">
-                <input type="text" class="form-control" id="apply_reason" disabled="disabled" placeholder="">
+                <textarea class="form-control" id="apply_reason" disabled="disabled" placeholder="" rows="10"></textarea>
             </div>
         </div>
     </form>
-</div>
+</div>