|
@@ -95,7 +95,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 审核备注 -->
|
|
|
- <div class="layui-layer layui-anim layui-layer-iframe" id="layui-audit" times="4" showtime="0" contype="string" style="display:none;z-index: 19891018; width: 400px; height: 260px; position: absolute; top: 100px; left: 379px;">
|
|
|
+ <div class="layui-layer layui-anim layui-layer-iframe" id="layui-audit" times="4" showtime="0" contype="string" style="display:none;width: 400px; height: 260px; position: absolute; top: 100px; left: 379px;">
|
|
|
<form action="" method="post" class="form form-horizontal" id="form-admin-audit">
|
|
|
<div class="layui-layer-title" id="audit" style="cursor: move;" move="ok">审核备注</div>
|
|
|
<br>
|
|
@@ -530,7 +530,23 @@
|
|
|
function audit_order() {
|
|
|
var salesAuditRemark = $('#salesAuditRemark').val();
|
|
|
if (salesAuditRemark == null || salesAuditRemark == '') {
|
|
|
- layer.msg("请完善审核备注!",{icon: 5,time:2000});
|
|
|
+ layer.msg("请完善审核备注!",{
|
|
|
+ icon: 5,
|
|
|
+ zIndex: 999,
|
|
|
+ time:2000
|
|
|
+ });
|
|
|
+ //通过这种方式弹出的层,每当它被选择,就会置顶。
|
|
|
+ /*layer.open({
|
|
|
+ type: 2,
|
|
|
+ shade: false,
|
|
|
+ area: '500px',
|
|
|
+ maxmin: true,
|
|
|
+ content: '请完善审核备注',
|
|
|
+ zIndex: 999, //重点1
|
|
|
+ success: function(layero){
|
|
|
+ layer.setTop(layero); //重点2
|
|
|
+ }
|
|
|
+ });*/
|
|
|
return false;
|
|
|
}
|
|
|
return true;
|