zoukankan      html  css  js  c++  java
  • layui 相关知识

    function resultConsultation(index, layero) {
    let body = layer.getChildFrame("body", index);
    let data = {};
    var resultConsultation;
    var _objs = [];
    var code;
    var url;
    body.find("#changefileform").serializeArray().forEach(function(item, index) {
    if (item.name == "resultConsultation") {
    resultConsultation = item.value;
    }
    if (item.name == "code") {
    code = item.value;
    }
    if (item.name == "url") {
    url = item.value;
    }
    if (item.name == "img") {
    _objs.push({
    code: code,
    name: item.value,
    url: url
    });
    }
    });
    if (resultConsultation == "") {
    layer.msg('请输入会诊结果', {
    zIndex: layer.zIndex + 100
    });
    return;
    }
    var isCheck = false;
    $(_objs).each(function(i, element) {
    if (element.name == "") {
    isCheck = true;
    }

    })
    if (isCheck) {
    layer.msg('请输入图片名称!', {
    zIndex: layer.zIndex + 100
    });

    return;
    }
    var parameter = {
    resultConsultation: resultConsultation,
    img: _objs
    };
    var acceptConsultation = [];
    var applyConsultation = [];

    if (apply == "request") {
    applyConsultation = parameter;
    } else {
    acceptConsultation = parameter;
    }
    console.log(acceptConsultation);
    console.log(applyConsultation);


    }

    $(document).on("click", "#reuslt", function() {
    layer.open({
    title: '会诊结果',
    type: 2,
    shade: false,
    area: ['700px', '550px'],
    btn: ['确定', '关闭'],
    yes: function(index, layero) {
    resultConsultation(index, layero);
    },
    maxmin: false,
    content: 'consultationResults.html?',
    zIndex: layer.zIndex, //重点1
    success: function(layero) {
    layer.setTop(layero); //重点2
    }
    });

    })

  • 相关阅读:
    Interesting Finds: 2008.06.12
    8月19号
    8月22号
    8月20号
    8月21号
    第七章 Nginx配置虚拟主机
    第六章 Nginx配置文件详解
    第五章 Nginx搭建上传作业平台
    sqlserver2005提供的xml数据类型操作xml串
    事必躬亲利与弊
  • 原文地址:https://www.cnblogs.com/zzl0916/p/11809965.html
Copyright © 2011-2022 走看看