123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <title>查看物流</title>
- <meta name="description" content="">
- <meta name="keywords" content="">
- <link href="css/base.css" rel="stylesheet">
- <link href="/css/ims/ims.css" rel="stylesheet">
- <style>
- .red {
- color: red;
- }
- .add-receipt_img span {
- display: inline-block;
- width: 56px;
- line-height: 24px;
- color: #000;
- text-align: center;
- font-weight: normal;
- font-size: 14px;
- border: 1px solid #ccc;
- cursor: pointer;
- }
- .layer-receipt {
- display: none;
- padding-left: 30px;
- padding-right: 30px;
- }
- .layer-receipt>div {
- margin-top: 12px;
- padding-bottom: 12px;
- border-bottom: 3px solid rgba(121, 121, 121, 1);
- }
- .layer-receipt>div>p {
- margin-top: 12px;
- }
- .layer-receipt .number {
- margin-right: 30px;
- }
- .inputNum {
- margin: 0 4px;
- }
- .accountNum {
- margin-top: 12px;
- font-size: 16px;
- font-weight: 600;
- color: #000;
- }
- #imgPreview {
- display: inline-block;
- margin-top: 12px;
- }
- #imgPreview>img {
- max-width: 100px;
- max-height: 100px;
- margin-right: 5px;
- }
- #imgPreview_view {
- display: inline-block;
- margin-top: 12px;
- }
- #imgPreview_view>img {
- max-width: 100px;
- max-height: 100px;
- margin-right: 5px;
- }
- .receiptVoucherText{
- text-align: center;
- }
- .receiptVoucherText>p{
- line-height: 50px;
- }
- .more-show{
- width: 300px;overflow: hidden; text-overflow:ellipsis; white-space: nowrap;cursor: pointer;
- }
- .layui-layer-btn .layui-layer-btn0 {
- border-color: #2977ff !important;
- background-color: #2977ff !important;
- color: #fff;
- }
- .stop-layer-box, .resubmit-layer-box, .delete-layer-box {
- line-height: 140px;
- text-align: center;
- }
- .goods-status{
- position:relative;
- display:inline-block;
- }
- .goods-status span{
- padding-left:30px;
- position:absolute;
- left:50%;
- -webkit-transform:translateX(-50%);
- transform:translateX(-50%);
- top:50%;
- color:red;
- background:url(/images/warn-icon.png) no-repeat left center;
- background-size:30px;
- }
- </style>
- </head>
- <body>
- <div class="goods-status">
- <img src="/images/ims/goods-status.png" alt="">
- <?php if(isset($receiveData) && !$receiveData):?>
- <?php if(isset($logisticsTime) && $logisticsTime):?>
- <span>距离发货日期超过<?php echo $logisticsTime;?>天</span>
- <?php endif;?>
- <?php endif;?>
- </div>
- <p id="viewLog" style="width: 100%;text-align: right;padding-right:30px;color:#619aff;cursor:pointer;">查看日志</p>
- <?php foreach($sendData as $value):?>
- <div class="clearfix goods-info">
- <div class="fl send-goods">
- <ul>
- <li><?php echo isset($value['logisticsTime'])?$value['logisticsTime']:'';?> <?php echo $value['userName'];?> 确认发货</li>
- <li>货物品目:<?php echo $value['itemName'];?></li>
- <li>规格:<?php echo $value['itemSpec'];?></li>
- <li>数量:<?php echo $value['no'];?></li>
- <li>单位:<?php echo $value['unitName'];?></li>
- <?php if (isset($value['storageUnit']) && isset($value['storageUnitName'])) :?>
- <li>存储单位:<?php echo $value['storageUnitName'];?></li>
- <li>存储数量:<?php echo $value['countUnit']*$value['no'];?></li>
- <?php endif;?>
- <?php if (isset($value['fixedCodes']) && $value['fixedCodes']) :?>
- <li title="<?php echo implode(',',$value['fixedCodes']);?>" class="more-show">固定资产编号:<?php echo implode(',',$value['fixedCodes']);?></li>
- <?php endif;?>
- <li>物流公司:<?php echo isset($value['logisticsName'])?$value['logisticsName']:'';?></li>
- <li>物流单号:<?php echo isset($value['logisticsCode'])?$value['logisticsCode']:'';?></li>
- </ul>
- </div>
- <div class="fl deliver-goods">
- <?php if(isset($receiveData[$value['atoId']]) && $receiveData[$value['atoId']]):?>
- <?php $receive = $receiveData[$value['atoId']];?>
- <ul atoId="<?php echo $value['atoId'];?>">
- <li><?php echo $receive['logisticsTime'];?> <?php echo $receive['userName'];?>
- <?php if(isset($receive['images']) && isset($receive['images'][0]) && $receive['images'][0]):?>
- 确认收货
- <?php else:?>
- 自动收货
- <?php endif;?>
- </li>
- <li>货物品目:<?php echo $receive['itemName'];?></li>
- <li>规格:<?php echo $receive['itemSpec'];?></li>
- <li class="arrive-num" arriveNo="<?php echo $receive['arriveNo'];?>">到货数量:<?php echo $receive['arriveNo'];?></li>
- <li class="qualified-num" qualifiedNo="<?php echo $receive['qualifiedNo'];?>">合格数量:<?php echo $receive['qualifiedNo'];?></li>
- <li class="tally-num" tallyNum="<?php echo $receive['tallyNo'];?>">记账数量:<?php echo $receive['tallyNo'];?></li>
- <li class="scrap-num" scrapNum="<?php echo $receive['scrapNo'];?>">报废数量:<?php echo $receive['scrapNo'];?></li>
- <?php if (isset($receive['fixedCodes']) && $receive['fixedCodes']) :?>
- <li title="<?php echo implode(',',$value['fixedCodes']);?>" class="more-show">固定资产编号:<?php echo implode(',',$receive['fixedCodes']);?></li>
- <?php endif;?>
- <?php if(isset($receive['images']) && $receive['images']):?>
- <li>收货凭证:
- <p id="receiveImg">
- <?php foreach($receive['images'] as $url):?>
- <img style="width: 150px;height: 100px;cursor: pointer" src="<?php echo $url;?>" alt="">
- <?php endforeach;?>
- </p>
- </li>
- <?php else:?>
- <li>收货凭证:无收货凭证</li>
- <?php endif;?>
- </ul>
- <?php else:?>
- <?php
- if($value['recVoucher']==1){
- if(isset($value['processInfoBO']['showUrge']) && $value['processInfoBO']['showUrge']){
- ?>
- <a href="javascript:;"
- businessKey="<?php echo $value['processInfoBO']['businessKey']?>"
- class="confim-goods suspended">取消凭据</a>
- <a href="javascript:;"
- atoId="<?php echo $value['atoId']?>"
- itemName="<?php echo $value['itemName']?>"
- allNum="<?php echo $value['no']?>"
- <?php if (isset($value['fixedCodes']) && $value['fixedCodes']) :?>
- has-fixedCode="<?php echo implode(',',$value['fixedCodes']);?>"
- <?php else:?>
- has-fixedCode=""
- <?php endif;?>
- <?php if (isset($value['images']) && $value['images']) :?>
- imgList="<?php echo implode(',',$value['images']);?>"
- <?php else:?>
- imgList=""
- <?php endif;?>
- class="confim-goods view-data">查看凭据</a>
- <?php
- }elseif(isset($value['processInfoBO']['showReset']) && $value['processInfoBO']['showReset']==1 ){
- ?>
- <a href="javascript:;"
- atoId="<?php echo $value['atoId']?>"
- itemId="<?php echo $value['itemId']?>"
- allNum="<?php echo $value['no']?>"
- <?php if (isset($value['fixedCodes']) && $value['fixedCodes']) :?>
- has-fixedCode="<?php echo implode(',',$value['fixedCodes']);?>"
- <?php else:?>
- has-fixedCode=""
- <?php endif;?>
- <?php if (isset($value['images']) && $value['images']) :?>
- imgList="<?php echo implode(',',$value['images']);?>"
- <?php else:?>
- imgList=""
- <?php endif;?>
- class="confim-goods repeat_submit">重新提交凭据</a>
- <a href="javascript:;"
- atoId="<?php echo $value['atoId']?>"
- itemName="<?php echo $value['itemName']?>"
- allNum="<?php echo $value['no']?>"
- <?php if (isset($value['fixedCodes']) && $value['fixedCodes']) :?>
- has-fixedCode="<?php echo implode(',',$value['fixedCodes']);?>"
- <?php else:?>
- has-fixedCode=""
- <?php endif;?>
- <?php if (isset($value['images']) && $value['images']) :?>
- imgList="<?php echo implode(',',$value['images']);?>"
- <?php else:?>
- imgList=""
- <?php endif;?>
- class="confim-goods view-data">查看凭据</a>
- <?php
- }
- }elseif(isset($_GET['showReceive'])){
- ?>
- <a href="javascript:;"
- atoId="<?php echo $value['atoId']?>"
- itemId="<?php echo $value['itemId']?>"
- allNum="<?php echo $value['no']?>"
- <?php if (isset($value['fixedCodes']) && $value['fixedCodes']) :?>
- has-fixedCode="<?php echo implode(',',$value['fixedCodes']);?>"
- <?php else:?>
- has-fixedCode=""
- <?php endif;?>
- class="confim-goods receipt">确认收货</a>
- <?php
- }
- endif;?>
- </div>
- </div>
- <?php endforeach;?>
- </div>
- <!-- 确认收货弹窗 -->
- <div class="layer-receipt edit-form">
- <div>
- <span class="number">
- 到货数量<span class="layer-tally-num"></span>册
- </span>
- <span>
- 合格数量<input type="number" class="inputNum" name="hege_num">册
- </span>
- </div>
- <div class="fixedCodes">
- </div>
- <div>
- <p>不合格数量:<span class="layer-scrap-num">0</span></spn>册</p>
- <p>收货凭证:
- <label class="add-receipt_img">
- <span>浏览</span>
- <input type="file" id="uploadImg" accept="image/*" style="display: none;" />
- </label>
- <span class="red">请拍照上传收货照片</span>
- <div id="imgPreview"></div>
- </p>
- </div>
- <p class="fr accountNum">记账数量:<span class="red hege_num"></span> 册</p>
- </div>
- <!-- 查看收货弹窗 -->
- <div class="layer-receipt view-form">
- <div>
- <span class="number">
- 到货数量<span class="layer-tally-num-view"></span>册
- </span>
- <span>
- 合格数量<span class="hege_num_view"></span>册
- </span>
- </div>
- <div class="fixedCodes-view">
- </div>
- <div>
- <p>不合格数量:<span class="layer-scrap-num">0</span></spn>册</p>
- <p>收货凭证:
- <span class="itemName"></span>
- <div id="imgPreview_view"></div>
- </p>
- </div>
- <p class="fr accountNum">记账数量:<span class="red hege_num_view"></span> 册</p>
- </div>
- <!--日志弹层-->
- <link rel="stylesheet" href="/css/cylet.css" />
- <style>
- .class-modal-body-1{overflow: auto;height:400px;}
- .class-modal-body-1 td{font-size:14px;line-height:200%;}
- </style>
- <div class="confirmbox-mask" style="display: none" id="classModal-1">
- <form name="table_set">
- <div class="class-modal-1">
- <i class="icon icon-close-1"></i><div class="class-modal-head-1">日志</div>
- <div class="class-modal-body-1">
- <table>
- <?php
- if($logList){
- foreach ($logList as $val){
- echo '<tr>';
- echo '<td><img src="/images/right_head.png"></td>';
- echo '<td width="40%">'.$val['createTime'].'</td>';
- echo '<td width="50%">【'.$val['userName'].'】'.$val['info'].'</td>';
- echo '</tr>';
- }
- }
- ?>
- </table>
- </div>
- </div>
- </form>
- </div>
- <script src="/js/productset/jquery.min.js"></script>
- <script src="/js/ims/xsgl.js"></script>
- <script src="/js/layer/layer.js"></script>
- <script>
- $('.icon-close-1').click(function(){
- $('#classModal-1').hide();
- });
- $('#viewLog').click(function(){
- $('#classModal-1').show();
- });
- //查看所有内容
- $('body').on('click','.more-show', function () {
- layer.open({
- type: 1,
- title: '查看全部固定资产编号',
- btn: ['关闭'],
- area: ['400px', '200px'], //宽高
- btnAlign: 'c',
- content: $(this).attr('title'),
- yes: function (index, layero) {
- layer.closeAll();
- }
- });
- })
- function showMsg(msg){
- layer.msg(msg);
- }
- //查看凭据
- $('.view-data').click(function(){
- var atoId=$(this).attr('atoId'),
- itemName=$(this).attr('itemName'),
- allNum=$(this).attr('allNum'),
- hasFixedCode=$(this).attr('has-fixedCode'),
- imgList=$(this).attr('imgList');
- $('.layer-tally-num-view').html(allNum);
- $('.hege_num_view').html(allNum);
- if(hasFixedCode!=''){
- $('.fixedCodes-view').html(hasFixedCode);
- }
- if(imgList!=''){
- imgArr=imgList.split(',');
- var htmlImg='';
- for(var i=0;i<imgArr.length;i++){
- htmlImg+='<img src="'+imgArr[i]+'">';
- }
- $('#imgPreview_view').html(htmlImg);
- console.log(htmlImg);
- }
- $('.itemName').html(itemName);
- layer.open({
- type: 1,
- title: '查看凭据',
- btn: ['确认'],
- area: ['450px', '350px'],
- btnAlign: 'c',
- content: $('.view-form'),
- yes: function(index, layero) {
- layer.closeAll();
- }
- });
- });
- //重新提交
- $('.repeat_submit').click(function(){
- var atoId=$(this).attr('atoId'),
- itemName=$(this).attr('itemName'),
- allNum=$(this).attr('allNum'),
- hasFixedCode=$(this).attr('has-fixedCode'),
- imgList=$(this).attr('imgList');
- $('.layer-tally-num').html(allNum);
- $('.hege_num').html(allNum);
- $("input[name=hege_num]").val(allNum);
- $("input[name=hege_num]").attr('readonly',true);
- if(imgList!=''){
- imgArr=imgList.split(',');
- var htmlImg='';
- for(var i=0;i<imgArr.length;i++){
- htmlImg+='<img src="'+imgArr[i]+'">';
- }
- $('#imgPreview').html(htmlImg);
- }
- var flag = true;
- var atoId = $(this).attr('atoId');
- if(hasFixedCode.length>0){
- var html = '<span>选择合格固定资产:</span>';
- var fixedCodes = hasFixedCode.split(',');
- for (var i=0;i<fixedCodes.length;i++){
- html+='<lable style="margin-right: 10px;display:inline-block;"><input name="fixedCodes" readonly type="checkbox" checked value="'+fixedCodes[i]+'"> '+fixedCodes[i]+'</lable>';
- }
- $('.fixedCodes').html(html);
- var hasFixed = true;
- }else {
- var hasFixed = false;
- }
- layer.open({
- type: 1,
- title: '确认收货',
- btn: ['确认'],
- area: ['680px', '350px'], //宽高
- btnAlign: 'c',
- content: $('.edit-form'),
- yes: function(index, layero) {
- //提交确认收货
- var imgArr = [];
- $('#imgPreview img').each(function () {
- imgArr.push($(this).attr('src'));
- });
- if(imgArr.length <= 0){
- showMsg('请上传收货凭证!');
- return false;
- }
- var data = {
- imgArr:imgArr,
- atoId:atoId,
- }
- //确认
- layer.open({
- type: 1,
- title: '确认收货',
- btn: ['确认收货', '取消'],
- area: ['400px', '250px'],
- btnAlign: 'c',
- content: '<div class="receiptVoucherText"><p>申明:确认后,收货人有责任保证物品安全。</p><p class="red">此操作不可撤销,确认收货吗?</p></div>',
- yes: function(index, layero) {
- if (flag){
- flag=false;
- $.ajax({
- type: 'POST',
- url: "<?php echo $this->createUrl('imsStore/repeatReceipt');?>",
- data: data,
- async: false,
- dataType: 'json',
- success: function(result){
- console.log(result);
- if(result.status == 1){
- layer.alert("确认成功",{icon:1,closeBtn:0},function () {
- window.location.href = "<?php echo $this->createUrl('imsStore/allocation');?>";
- })
- }else{
- showMsg(result.error);
- flag = true;
- }
- },
- error: function (jqXHR, textStatus, errorThrown) {
- /*错误信息处理*/
- showMsg('增加失败!');
- flag = true;
- }
- });
- }else{
- layer.msg("稍安勿躁,正在处理中...");
- }
- }
- });
- }
- });
- });
- //查看图片
- $('body').on('click', '#receiveImg img', function () {
- var src = $(this).attr('src');
- layer.open({
- type: 1,
- title: '查看图片',
- btn: ['关闭'],
- area: ['800px', '500px'], //宽高
- btnAlign: 'c',
- content: '<img src="'+src+'" alt="" style="margin-top:5px;width: 100%;height: 100%">',
- yes: function (index, layero) {
- layer.closeAll();
- }
- });
- })
- // 添加图片
- $("#uploadImg").on("change", function() {
- //限制图片数量
- var imgObj = $('#imgPreview img');
- if(imgObj.length>=3){
- layer.msg("最多可上传三张图片");
- return false;
- }
- var formData = new FormData();
- formData.append('uploadFile',document.getElementById('uploadImg').files[0]);
- if(document.getElementById('uploadImg').files[0]==undefined){
- return false;
- }
- var basic = "<?php echo $basic;?>";
- $.ajax({
- url: "<?php echo $uploadUrl;?>",
- type: "post",
- data: formData,
- processData: false,
- contentType: false,
- beforeSend: function(req){
- req.setRequestHeader("Authorization", basic);
- },
- success: function (data) {
- console.log(data);
- if(data.errCode=='00'){
- var html = "<img src='"+data.data.url+"'>";
- $('#imgPreview').append(html);
- $('#uploadImg').val('');
- }else{
- layer.msg(data.errMsg);
- }
- }
- });
- });
- //删除图片
- $("body").on("click","#imgPreview img",function () {
- var obj = $(this);
- var imgUrl = $(this).attr('src');
- var flag= layer.confirm('您确定删除此图片吗?', {
- btn: ['确定', '取消'] //按钮
- }, function () {
- obj.remove();
- layer.close(flag);
- });
- })
- //报废数量
- $('.inputNum').on('input', function () {
- var input = parseInt($(this).val());
- var all = parseInt($('.layer-tally-num').html());
- $('.layer-scrap-num').html(all-input);
- $('.hege_num').html(input);
- });
- $('body').on('click', 'input[name="fixedCodes"]',function () {
- return false;
- });
- //取消凭证
- $('.suspended').on("click",function(){
- var businessKey=$(this).attr('businessKey');
- var flag = true;
- //确认
- layer.open({
- type: 1,
- title: '取消凭据',
- btn: ['确认', '取消'],
- area: ['400px', '250px'],
- btnAlign: 'c',
- content: '<div class="receiptVoucherText"><p>确认取消吗?</p><p class="red">确认取消后,可重新提交</p></div>',
- yes: function(index, layero) {
- if (flag){
- flag=false;
- $.ajax({
- type: 'POST',
- url: "<?php echo $this->createUrl('imsStore/suspended');?>",
- data: {businessKey:businessKey},
- async: false,
- dataType: 'json',
- success: function(result){
- console.log(result);
- if(result.status == 1){
- layer.alert("取消成功",{icon:1,closeBtn:0},function () {
- window.location.href = "<?php echo $this->createUrl('imsStore/allocation');?>";
- })
- }else{
- showMsg(result.error);
- flag = true;
- }
- },
- error: function (jqXHR, textStatus, errorThrown) {
- /*错误信息处理*/
- showMsg('操作失败!');
- flag = true;
- }
- });
- }else{
- layer.msg("稍安勿躁,正在处理中...");
- }
- }
- });
- });
- //确认收货
- $(".receipt").on("click", function() {
- $('#imgPreview').empty();
- $('.fixedCodes').empty();
- var totalNum = $(this).attr('allNum');
- $(".layer-tally-num").html(totalNum);
- var flag = true;
- var atId = "<?php echo $atId;?>";
- var atoId = $(this).attr('atoId');
- var itemId = $(this).attr('itemId');
-
- var hasFixed = $(this).attr('has-fixedCode');
- if(hasFixed.length>0){
- var html = '<span>选择合格固定资产:</span>';
- var fixedCodes = hasFixed.split(',');
- for (var i=0;i<fixedCodes.length;i++){
- html+='<lable style="margin-right: 10px;display:inline-block;"><input name="fixedCodes" type="checkbox" checked value="'+fixedCodes[i]+'"> '+fixedCodes[i]+'</lable>';
- }
- $('.fixedCodes').html(html);
- var hasFixed = true;
- }else {
- var hasFixed = false;
- }
- layer.open({
- type: 1,
- title: '确认收货',
- btn: ['确认'],
- area: ['680px', '350px'], //宽高
- btnAlign: 'c',
- content: $('.edit-form'),
- yes: function(index, layero) {
- //提交确认收货
- var hegeNum = $("input[name='hege_num']").val(); //合格
- var badNum = $(".layer-scrap-num").html(); //报废
- var allNum = $(".layer-tally-num").html(); //到货
- if($.trim(hegeNum)==''){
- showMsg('合格数量必填!');
- return false;
- }
- var imgArr = [];
- $('#imgPreview img').each(function () {
- imgArr.push($(this).attr('src'));
- });
- if(imgArr.length <= 0){
- showMsg('请上传收货凭证!');
- return false;
- }
- //固定资产
- var fixedCodesArr = [];
- if (hasFixed){
- var fixedObj = $('input[name="fixedCodes"]:checked');
- fixedObj.each(function () {
- fixedCodesArr.push($(this).val());
- });
- }
- var data = {
- itemId:itemId,
- imgArr:imgArr,
- atoId:atoId,
- atId:atId,
- qualifiedNo:hegeNum,
- scrapNo:badNum,
- tallyNo:allNum,
- fixedCodes:fixedCodesArr
- }
- //确认
- layer.open({
- type: 1,
- title: '确认收货',
- btn: ['确认收货', '取消'],
- area: ['400px', '250px'],
- btnAlign: 'c',
- content: '<div class="receiptVoucherText"><p>申明:确认后,收货人有责任保证物品安全。</p><p class="red">此操作不可撤销,确认收货吗?</p></div>',
- yes: function(index, layero) {
- if (flag){
- flag=false;
- $.ajax({
- type: 'POST',
- url: "<?php echo $this->createUrl('imsStore/ajaxReceipt');?>",
- data: data,
- async: false,
- dataType: 'json',
- success: function(result){
- console.log(result);
- if(result.status == 1){
- layer.alert("确认成功",{icon:1,closeBtn:0},function () {
- window.location.href = "<?php echo $this->createUrl('imsStore/allocation');?>";
- })
- }else{
- showMsg(result.error);
- flag = true;
- }
- },
- error: function (jqXHR, textStatus, errorThrown) {
- /*错误信息处理*/
- showMsg('增加失败!');
- flag = true;
- }
- });
- }else{
- layer.msg("稍安勿躁,正在处理中...");
- }
- }
- });
- }
- });
- return false;
- });
- </script>
- </body>
- </html>
|